
    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_9029b6b842b1ad0262e44092.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_4cc57cc41540ec9751c0c107.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_675ebdd72197969847604c64.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.964861;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_985510748fb3a0acae5156e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.022461;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_b99d8785a9c4bf825b913662.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.031738;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_26894a10fc97709202668c01.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.032715;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_0eca46eb056914c19a522975.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.026855;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_a411ea845b7b334def1122a4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.011230;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_e69392cfa514f254987e65ad.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.102051;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_8bd2f8dfac18dd68d3956dce.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.976118;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_b2eb91f8a483ccb6215a532a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.710938;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_a0715dd38ee7aa64e392b6de.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.964852;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_0af8328be4c9487bc7aa82eb.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.026855;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_d6f0fcfee5b497598ff53708.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.964844;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_b7162ba7fc55dd1f431adc79.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_578443566cb9bf9bbf3021a1.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_7de463935a6b507373e8e9e0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.906738;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:ff12;src:url('chunks/assets/font_b23dea0bcc045746a94b30fb.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.700000;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:ff13;src:url('chunks/assets/font_47eff743c457e2876b5e305b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.893066;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:ff14;src:url('chunks/assets/font_c10baa7351fcff45f18724d5.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.891113;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:ff15;src:url('chunks/assets/font_1ecb45d387b59d2e746950a3.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_c049227a73bbefa4df214564.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.678711;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:ff17;src:url('chunks/assets/font_072b855c1a04ab14c5114417.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_010d48e557937df104cf3596.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_85d75321eb3cb192a4d97b85.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.906738;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:ff1a;src:url('chunks/assets/font_b23dea0bcc045746a94b30fb.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.700000;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:ff1b;src:url('chunks/assets/font_831abd419fa1c23d5aaed6d7.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.770020;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.v2{vertical-align:25.289400px;}
.ls1c{letter-spacing:-7.236000px;}
.ls8{letter-spacing:-4.374000px;}
.ls16{letter-spacing:-3.240000px;}
.ls2a{letter-spacing:-2.760000px;}
.ls9{letter-spacing:-0.918000px;}
.ls20{letter-spacing:-0.780000px;}
.ls13{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.691200px;}
.ls23{letter-spacing:-0.600000px;}
.ls27{letter-spacing:-0.540000px;}
.ls28{letter-spacing:-0.486000px;}
.ls29{letter-spacing:-0.432000px;}
.ls25{letter-spacing:-0.420000px;}
.ls6{letter-spacing:-0.408000px;}
.ls26{letter-spacing:-0.180000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012000px;}
.ls21{letter-spacing:0.013200px;}
.ls14{letter-spacing:0.013800px;}
.ls17{letter-spacing:0.015600px;}
.ls4{letter-spacing:0.025800px;}
.ls24{letter-spacing:0.240000px;}
.ls1b{letter-spacing:0.420000px;}
.ls3{letter-spacing:0.482400px;}
.ls22{letter-spacing:1.102200px;}
.ls15{letter-spacing:1.335000px;}
.ls1e{letter-spacing:1.392362px;}
.ls12{letter-spacing:1.453800px;}
.ls1f{letter-spacing:1.455652px;}
.ls11{letter-spacing:1.585200px;}
.lsa{letter-spacing:2.701800px;}
.ls10{letter-spacing:2.908800px;}
.lsf{letter-spacing:2.909400px;}
.lse{letter-spacing:3.285000px;}
.lsd{letter-spacing:3.285600px;}
.lsb{letter-spacing:3.592800px;}
.lsc{letter-spacing:3.593400px;}
.ls2{letter-spacing:5.032200px;}
.ls1d{letter-spacing:31.554680px;}
.ls0{letter-spacing:43.181364px;}
.ls18{letter-spacing:238.991400px;}
.ls1a{letter-spacing:246.029400px;}
.ls19{letter-spacing:246.065400px;}
.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;}
}
.ws8{word-spacing:-17.928000px;}
.ws43{word-spacing:-16.434000px;}
.ws7f{word-spacing:-15.822300px;}
.ws6a{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.940000px;}
.ws23{word-spacing:-14.880000px;}
.ws9{word-spacing:-14.700000px;}
.ws7c{word-spacing:-14.581500px;}
.ws39{word-spacing:-14.160000px;}
.ws38{word-spacing:-13.980000px;}
.ws24{word-spacing:-13.446000px;}
.ws91{word-spacing:-13.392000px;}
.ws6{word-spacing:-13.230000px;}
.wsbc{word-spacing:-12.960000px;}
.wsbb{word-spacing:-12.906000px;}
.wse{word-spacing:-12.150000px;}
.ws63{word-spacing:-11.904000px;}
.wsa{word-spacing:-11.772000px;}
.wsc{word-spacing:-11.232000px;}
.ws3{word-spacing:-10.896000px;}
.wsb{word-spacing:-10.854000px;}
.ws22{word-spacing:-10.800000px;}
.wsf{word-spacing:-10.464000px;}
.ws4{word-spacing:-9.417600px;}
.ws7{word-spacing:-9.072000px;}
.ws1b{word-spacing:-8.340000px;}
.wsa2{word-spacing:-2.940000px;}
.ws84{word-spacing:-2.700000px;}
.wsb9{word-spacing:-2.592000px;}
.ws8d{word-spacing:-2.280000px;}
.wsbe{word-spacing:-2.268000px;}
.ws3c{word-spacing:-2.220000px;}
.ws1a{word-spacing:-2.160000px;}
.ws96{word-spacing:-1.920000px;}
.ws77{word-spacing:-1.740000px;}
.ws85{word-spacing:-1.680000px;}
.ws30{word-spacing:-1.620000px;}
.ws3e{word-spacing:-1.500000px;}
.wsc3{word-spacing:-1.026000px;}
.wsb7{word-spacing:-0.972000px;}
.wsa0{word-spacing:-0.960000px;}
.wsb4{word-spacing:-0.756000px;}
.wsaa{word-spacing:-0.660000px;}
.ws32{word-spacing:-0.486000px;}
.ws16{word-spacing:-0.432000px;}
.ws73{word-spacing:-0.420000px;}
.ws69{word-spacing:-0.324000px;}
.wsbd{word-spacing:-0.300000px;}
.wsa4{word-spacing:-0.240000px;}
.ws12{word-spacing:-0.216000px;}
.ws2b{word-spacing:-0.120000px;}
.ws44{word-spacing:-0.066000px;}
.ws45{word-spacing:-0.060000px;}
.wsd{word-spacing:-0.054000px;}
.ws10{word-spacing:0.000000px;}
.wsb2{word-spacing:0.180000px;}
.wsb0{word-spacing:0.300000px;}
.ws0{word-spacing:0.306000px;}
.ws11{word-spacing:0.408000px;}
.ws9d{word-spacing:0.420000px;}
.wsc2{word-spacing:0.432000px;}
.ws17{word-spacing:0.486000px;}
.ws8f{word-spacing:0.540000px;}
.ws9f{word-spacing:0.600000px;}
.ws13{word-spacing:0.691200px;}
.ws19{word-spacing:0.702000px;}
.ws40{word-spacing:0.720000px;}
.ws8c{word-spacing:0.780000px;}
.ws75{word-spacing:0.900000px;}
.ws21{word-spacing:0.918000px;}
.ws90{word-spacing:1.134000px;}
.ws76{word-spacing:1.320000px;}
.ws4a{word-spacing:1.350000px;}
.ws14{word-spacing:1.404000px;}
.ws37{word-spacing:1.458000px;}
.ws42{word-spacing:1.500000px;}
.ws36{word-spacing:1.620000px;}
.wsac{word-spacing:1.800000px;}
.ws49{word-spacing:1.860000px;}
.ws92{word-spacing:1.998000px;}
.wsad{word-spacing:2.040000px;}
.ws93{word-spacing:2.052000px;}
.ws48{word-spacing:2.160000px;}
.ws2e{word-spacing:2.220000px;}
.ws18{word-spacing:2.268000px;}
.wsa8{word-spacing:2.280000px;}
.ws3b{word-spacing:2.340000px;}
.ws9b{word-spacing:2.400000px;}
.ws71{word-spacing:2.640000px;}
.wsb6{word-spacing:2.646000px;}
.ws31{word-spacing:2.754000px;}
.wsc7{word-spacing:2.760000px;}
.ws35{word-spacing:2.916000px;}
.ws2a{word-spacing:2.940000px;}
.ws72{word-spacing:3.060000px;}
.wsb1{word-spacing:3.120000px;}
.wsb3{word-spacing:3.132000px;}
.ws8e{word-spacing:3.180000px;}
.ws4b{word-spacing:3.240000px;}
.ws34{word-spacing:3.294000px;}
.wsaf{word-spacing:3.600000px;}
.ws33{word-spacing:3.618000px;}
.ws86{word-spacing:3.720000px;}
.wsc6{word-spacing:3.780000px;}
.ws83{word-spacing:3.840000px;}
.ws8a{word-spacing:4.080000px;}
.ws8b{word-spacing:4.200000px;}
.wsa1{word-spacing:4.260000px;}
.ws47{word-spacing:4.380000px;}
.wsae{word-spacing:4.440000px;}
.wsab{word-spacing:4.740000px;}
.wsc5{word-spacing:4.860000px;}
.ws15{word-spacing:5.076000px;}
.ws3a{word-spacing:5.160000px;}
.ws2f{word-spacing:5.280000px;}
.ws6c{word-spacing:5.292000px;}
.ws97{word-spacing:5.340000px;}
.ws6b{word-spacing:5.346000px;}
.ws6d{word-spacing:5.400000px;}
.ws29{word-spacing:5.580000px;}
.ws9c{word-spacing:5.640000px;}
.wsa9{word-spacing:5.760000px;}
.ws41{word-spacing:6.060000px;}
.wsbf{word-spacing:6.156000px;}
.ws9a{word-spacing:6.180000px;}
.wsb8{word-spacing:6.210000px;}
.ws9e{word-spacing:6.540000px;}
.ws95{word-spacing:6.600000px;}
.ws2d{word-spacing:6.660000px;}
.ws89{word-spacing:6.840000px;}
.ws82{word-spacing:7.380000px;}
.ws28{word-spacing:7.680000px;}
.ws99{word-spacing:7.740000px;}
.ws98{word-spacing:7.800000px;}
.ws1c{word-spacing:8.040000px;}
.wsb5{word-spacing:8.262000px;}
.ws87{word-spacing:8.340000px;}
.ws6e{word-spacing:8.640000px;}
.wsa5{word-spacing:8.700000px;}
.ws94{word-spacing:9.288000px;}
.ws74{word-spacing:9.660000px;}
.ws2c{word-spacing:9.780000px;}
.ws3d{word-spacing:9.960000px;}
.wsc1{word-spacing:10.044000px;}
.wsba{word-spacing:10.206000px;}
.wsc4{word-spacing:10.260000px;}
.ws3f{word-spacing:11.280000px;}
.ws26{word-spacing:11.340000px;}
.ws1e{word-spacing:11.400000px;}
.ws1d{word-spacing:11.460000px;}
.ws27{word-spacing:11.580000px;}
.ws88{word-spacing:11.880000px;}
.ws6f{word-spacing:12.636000px;}
.ws81{word-spacing:13.108428px;}
.wsa3{word-spacing:13.140000px;}
.wsa7{word-spacing:13.740000px;}
.wsa6{word-spacing:13.980000px;}
.ws1f{word-spacing:14.460000px;}
.ws70{word-spacing:14.520000px;}
.ws20{word-spacing:15.180000px;}
.wsc0{word-spacing:18.306000px;}
.ws7a{word-spacing:22.469994px;}
.ws7e{word-spacing:22.481394px;}
.ws7b{word-spacing:22.523095px;}
.ws79{word-spacing:22.528493px;}
.ws80{word-spacing:22.530288px;}
.ws78{word-spacing:22.530888px;}
.ws46{word-spacing:27.600000px;}
.ws25{word-spacing:28.500000px;}
.ws1{word-spacing:33.651135px;}
.ws2{word-spacing:33.662850px;}
.ws7d{word-spacing:116.533374px;}
.ws5c{word-spacing:126.244800px;}
.ws5d{word-spacing:139.641600px;}
.ws62{word-spacing:153.141600px;}
.ws61{word-spacing:153.220200px;}
.ws64{word-spacing:166.652400px;}
.ws4e{word-spacing:166.696800px;}
.ws55{word-spacing:180.117600px;}
.ws60{word-spacing:180.190200px;}
.ws58{word-spacing:180.196800px;}
.ws4c{word-spacing:182.756400px;}
.ws67{word-spacing:207.116400px;}
.ws65{word-spacing:207.129000px;}
.ws52{word-spacing:207.149400px;}
.ws68{word-spacing:207.152400px;}
.ws53{word-spacing:220.592400px;}
.ws5f{word-spacing:220.615800px;}
.ws5b{word-spacing:222.899400px;}
.ws57{word-spacing:227.798400px;}
.ws56{word-spacing:227.834400px;}
.ws50{word-spacing:234.091800px;}
.ws4d{word-spacing:236.376000px;}
.ws59{word-spacing:247.591200px;}
.ws51{word-spacing:249.852600px;}
.ws66{word-spacing:249.864600px;}
.ws4f{word-spacing:263.329200px;}
.ws54{word-spacing:263.341200px;}
.ws5a{word-spacing:709.443000px;}
.ws5e{word-spacing:725.187000px;}
._f{margin-left:-9.991800px;}
._0{margin-left:-8.904600px;}
._c{margin-left:-6.762000px;}
._e{margin-left:-5.614200px;}
._3{margin-left:-3.774000px;}
._14{margin-left:-2.736000px;}
._1{margin-left:-1.734000px;}
._2{width:1.831800px;}
._7{width:3.174000px;}
._5{width:4.185000px;}
._6{width:5.428200px;}
._12{width:7.345200px;}
._a{width:8.355600px;}
._13{width:9.371400px;}
._b{width:11.311800px;}
._d{width:12.768000px;}
._8{width:16.200000px;}
._9{width:17.532000px;}
._2d{width:24.021000px;}
._2e{width:25.443000px;}
._15{width:26.795400px;}
._11{width:27.846000px;}
._10{width:28.905000px;}
._4{width:36.624000px;}
._2c{width:43.140000px;}
._21{width:178.612800px;}
._18{width:192.021600px;}
._1e{width:205.593600px;}
._16{width:214.727400px;}
._24{width:219.053400px;}
._1d{width:232.508400px;}
._25{width:248.280000px;}
._1c{width:259.518000px;}
._20{width:261.779400px;}
._23{width:275.256000px;}
._28{width:288.732600px;}
._1a{width:421.929000px;}
._1f{width:435.405600px;}
._1b{width:437.673000px;}
._22{width:451.149600px;}
._17{width:488.697000px;}
._19{width:504.441000px;}
._2b{width:519.891000px;}
._2a{width:565.011000px;}
._29{width:721.347000px;}
._26{width:734.823600px;}
._27{width:750.567600px;}
.fc10{color:transparent;}
.fcf{color:rgb(72,73,74);}
.fce{color:rgb(95,194,50);}
.fc0{color:rgb(35,31,32);}
.fcd{color:rgb(129,79,173);}
.fcc{color:rgb(237,29,36);}
.fc2{color:rgb(75,119,196);}
.fc5{color:rgb(35,82,38);}
.fc4{color:rgb(38,64,138);}
.fc6{color:rgb(197,80,175);}
.fc3{color:rgb(255,255,255);}
.fcb{color:rgb(16,15,13);}
.fc1{color:rgb(65,102,168);}
.fc8{color:rgb(165,20,129);}
.fc7{color:rgb(248,160,14);}
.fc9{color:rgb(59,75,167);}
.fca{color:rgb(79,77,129);}
.fs3{font-size:38.478000px;}
.fsd{font-size:39.370200px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:42.192600px;}
.fs5{font-size:43.200000px;}
.fse{font-size:46.660800px;}
.fs0{font-size:48.000000px;}
.fsc{font-size:48.118800px;}
.fs6{font-size:54.000000px;}
.fsa{font-size:58.326000px;}
.fs7{font-size:60.000000px;}
.fs9{font-size:63.289200px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.fsf{font-size:116.651400px;}
.y0{bottom:0.000000px;}
.yf7{bottom:3.818400px;}
.y101{bottom:20.257800px;}
.ye3{bottom:23.309700px;}
.y100{bottom:39.942900px;}
.ye4{bottom:47.041500px;}
.yff{bottom:59.628000px;}
.y1{bottom:68.124750px;}
.y108{bottom:68.557791px;}
.y3c{bottom:71.212050px;}
.yf6{bottom:72.883650px;}
.y3d{bottom:75.036150px;}
.yfe{bottom:79.312950px;}
.y10d{bottom:83.337180px;}
.y107{bottom:95.591892px;}
.yf5{bottom:97.143900px;}
.yfd{bottom:98.997750px;}
.yac{bottom:113.078700px;}
.y8c{bottom:113.078850px;}
.y10c{bottom:113.637381px;}
.y2b{bottom:117.212550px;}
.ye{bottom:117.875550px;}
.yf4{bottom:118.240050px;}
.yfc{bottom:118.682850px;}
.y5d{bottom:120.500700px;}
.yae{bottom:120.500850px;}
.y106{bottom:123.282161px;}
.yd{bottom:132.275550px;}
.yab{bottom:134.078700px;}
.y8b{bottom:134.078850px;}
.y2a{bottom:138.212550px;}
.yfb{bottom:138.367800px;}
.y5c{bottom:140.300700px;}
.yad{bottom:140.300850px;}
.ye5{bottom:141.973200px;}
.y10b{bottom:142.275300px;}
.yc{bottom:146.675550px;}
.yaa{bottom:155.078700px;}
.y8a{bottom:155.078850px;}
.yfa{bottom:158.052600px;}
.y29{bottom:159.212550px;}
.y5b{bottom:160.100700px;}
.yb{bottom:161.075550px;}
.ye8{bottom:161.756550px;}
.ydc{bottom:170.470950px;}
.ya9{bottom:176.078700px;}
.y89{bottom:176.078850px;}
.yf9{bottom:177.737700px;}
.y5a{bottom:179.900700px;}
.y28{bottom:180.212550px;}
.y105{bottom:187.921950px;}
.ye7{bottom:190.762800px;}
.ydb{bottom:191.376450px;}
.yf8{bottom:196.368900px;}
.ya8{bottom:197.078700px;}
.y88{bottom:197.078850px;}
.y104{bottom:198.037950px;}
.y39{bottom:199.392600px;}
.y59{bottom:199.700700px;}
.y27{bottom:201.212550px;}
.y103{bottom:205.048122px;}
.yf3{bottom:212.268979px;}
.yda{bottom:212.281950px;}
.y38{bottom:217.392600px;}
.ya7{bottom:218.078700px;}
.y87{bottom:218.078850px;}
.y58{bottom:219.500700px;}
.y26{bottom:222.212550px;}
.yd9{bottom:233.187450px;}
.y37{bottom:235.392600px;}
.yf2{bottom:236.904300px;}
.ya6{bottom:239.078700px;}
.y86{bottom:239.078850px;}
.y57{bottom:239.300700px;}
.y25{bottom:243.212550px;}
.y113{bottom:246.817950px;}
.y109{bottom:248.901783px;}
.y102{bottom:251.883900px;}
.y36{bottom:253.392600px;}
.yd8{bottom:254.092950px;}
.yef{bottom:257.035650px;}
.y56{bottom:259.100850px;}
.ya5{bottom:260.078700px;}
.y85{bottom:260.078850px;}
.y24{bottom:264.212550px;}
.y35{bottom:271.392600px;}
.yd7{bottom:274.998450px;}
.y55{bottom:278.900850px;}
.ya4{bottom:281.078700px;}
.y84{bottom:281.078850px;}
.yee{bottom:281.182050px;}
.y23{bottom:285.212550px;}
.y34{bottom:289.392600px;}
.y125{bottom:294.513600px;}
.yd6{bottom:295.903950px;}
.yf1{bottom:298.933207px;}
.ya3{bottom:302.078700px;}
.y83{bottom:302.078850px;}
.y22{bottom:306.212550px;}
.y33{bottom:307.392600px;}
.yed{bottom:308.140500px;}
.yd5{bottom:317.508150px;}
.ya2{bottom:323.078700px;}
.y82{bottom:323.078850px;}
.y124{bottom:326.811000px;}
.y21{bottom:327.212550px;}
.yec{bottom:330.825150px;}
.yd4{bottom:338.413650px;}
.y32{bottom:342.400500px;}
.ya1{bottom:344.078700px;}
.y81{bottom:344.078850px;}
.y20{bottom:348.212550px;}
.yeb{bottom:355.566600px;}
.yd3{bottom:359.319150px;}
.y31{bottom:360.400500px;}
.ya0{bottom:365.078700px;}
.y80{bottom:365.078850px;}
.yf0{bottom:365.935200px;}
.y1f{bottom:369.212550px;}
.yea{bottom:370.750350px;}
.y30{bottom:378.400500px;}
.ye9{bottom:379.299150px;}
.y118{bottom:379.441050px;}
.yd2{bottom:380.224650px;}
.y9f{bottom:386.078700px;}
.y7f{bottom:386.078850px;}
.y1e{bottom:390.212550px;}
.yd1{bottom:401.130150px;}
.ye6{bottom:403.032450px;}
.y9e{bottom:407.078700px;}
.y7e{bottom:407.078850px;}
.y2f{bottom:413.408400px;}
.yd0{bottom:422.035650px;}
.y1d{bottom:424.500300px;}
.y9d{bottom:428.078700px;}
.y7d{bottom:428.078850px;}
.ydf{bottom:431.293200px;}
.y2e{bottom:431.408400px;}
.y10a{bottom:432.490050px;}
.y121{bottom:442.441050px;}
.ycf{bottom:442.941300px;}
.y9c{bottom:449.078700px;}
.y7c{bottom:449.078850px;}
.y2d{bottom:449.408400px;}
.yde{bottom:451.093200px;}
.yce{bottom:463.846800px;}
.y2c{bottom:467.408400px;}
.y9b{bottom:470.078700px;}
.y7b{bottom:470.078850px;}
.ydd{bottom:470.893200px;}
.ycd{bottom:484.752300px;}
.y9a{bottom:491.078700px;}
.y7a{bottom:491.078850px;}
.y1c{bottom:505.027950px;}
.ycc{bottom:505.657800px;}
.y99{bottom:512.078700px;}
.y79{bottom:512.078850px;}
.y1b{bottom:524.827950px;}
.ycb{bottom:526.563300px;}
.y98{bottom:533.078700px;}
.y78{bottom:533.078850px;}
.y120{bottom:538.529400px;}
.yca{bottom:547.468800px;}
.y97{bottom:554.078700px;}
.y77{bottom:554.078850px;}
.y1a{bottom:565.887750px;}
.y123{bottom:567.513600px;}
.yc9{bottom:568.374300px;}
.y96{bottom:575.078700px;}
.y76{bottom:575.078850px;}
.y19{bottom:585.687750px;}
.yc8{bottom:589.279800px;}
.y116{bottom:594.691200px;}
.y95{bottom:596.078700px;}
.y75{bottom:596.078850px;}
.y122{bottom:599.811150px;}
.y18{bottom:605.487750px;}
.yc7{bottom:610.185300px;}
.y115{bottom:614.491200px;}
.y94{bottom:617.078700px;}
.y74{bottom:617.078850px;}
.y17{bottom:625.287750px;}
.yc6{bottom:631.090800px;}
.y114{bottom:634.291200px;}
.y93{bottom:638.078700px;}
.y73{bottom:638.078850px;}
.y112{bottom:643.783650px;}
.y16{bottom:645.087750px;}
.yc5{bottom:651.996300px;}
.y92{bottom:659.078700px;}
.y72{bottom:659.078850px;}
.ye1{bottom:659.339100px;}
.y111{bottom:663.583800px;}
.y11f{bottom:664.529400px;}
.y15{bottom:664.887750px;}
.yc4{bottom:672.901950px;}
.ye0{bottom:679.139250px;}
.y54{bottom:680.078700px;}
.y71{bottom:680.078850px;}
.y14{bottom:684.687750px;}
.yc3{bottom:693.807450px;}
.ye2{bottom:699.894000px;}
.y53{bottom:701.078700px;}
.y70{bottom:701.078850px;}
.y13{bottom:704.487750px;}
.yc2{bottom:714.712950px;}
.y52{bottom:722.078700px;}
.y6f{bottom:722.078850px;}
.y12{bottom:724.287750px;}
.yc1{bottom:735.618450px;}
.y51{bottom:743.078700px;}
.y6e{bottom:743.078850px;}
.y11{bottom:744.087750px;}
.yc0{bottom:756.523950px;}
.y117{bottom:757.441050px;}
.y50{bottom:764.078700px;}
.y6d{bottom:764.078850px;}
.y10{bottom:775.185300px;}
.ybf{bottom:777.429450px;}
.y4f{bottom:785.078700px;}
.y6c{bottom:785.078850px;}
.y11e{bottom:790.529250px;}
.ybe{bottom:798.334950px;}
.y12a{bottom:798.513600px;}
.y4e{bottom:806.078700px;}
.y6b{bottom:806.078850px;}
.ybd{bottom:819.240450px;}
.y129{bottom:819.513600px;}
.y4d{bottom:827.078700px;}
.y6a{bottom:827.078850px;}
.ybc{bottom:840.145950px;}
.y4c{bottom:848.078700px;}
.y110{bottom:848.078850px;}
.y128{bottom:851.811150px;}
.ya{bottom:854.466750px;}
.ybb{bottom:861.051450px;}
.y69{bottom:862.441050px;}
.y4b{bottom:869.078700px;}
.y10f{bottom:869.078850px;}
.y9{bottom:872.466750px;}
.yba{bottom:881.956950px;}
.y4a{bottom:890.078700px;}
.y10e{bottom:890.078850px;}
.y8{bottom:890.466750px;}
.y11d{bottom:895.529250px;}
.yb9{bottom:902.862450px;}
.y7{bottom:908.466750px;}
.y49{bottom:911.078700px;}
.y68{bottom:911.078850px;}
.yb8{bottom:923.767950px;}
.y6{bottom:926.466750px;}
.y48{bottom:932.078700px;}
.y67{bottom:932.078850px;}
.y5{bottom:944.466750px;}
.yb7{bottom:944.673450px;}
.y47{bottom:953.078700px;}
.y66{bottom:953.078850px;}
.y11c{bottom:958.529250px;}
.yb6{bottom:965.579100px;}
.y46{bottom:974.078700px;}
.y65{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.yb5{bottom:986.484600px;}
.y45{bottom:995.078700px;}
.y64{bottom:995.078850px;}
.yb4{bottom:1007.390100px;}
.y44{bottom:1016.078700px;}
.y63{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.y11b{bottom:1021.529250px;}
.yb3{bottom:1028.295600px;}
.y91{bottom:1029.029250px;}
.y43{bottom:1037.078700px;}
.y62{bottom:1037.078850px;}
.yb2{bottom:1049.201100px;}
.y2{bottom:1049.282550px;}
.y90{bottom:1050.029250px;}
.y42{bottom:1058.078700px;}
.y61{bottom:1058.078850px;}
.y8f{bottom:1071.029250px;}
.y41{bottom:1079.078700px;}
.y60{bottom:1079.078850px;}
.yb1{bottom:1079.682900px;}
.y11a{bottom:1084.192950px;}
.y127{bottom:1089.903300px;}
.y8e{bottom:1092.029250px;}
.yb0{bottom:1099.482900px;}
.y40{bottom:1100.078700px;}
.y5f{bottom:1100.078850px;}
.yf{bottom:1109.815500px;}
.y119{bottom:1113.696900px;}
.yaf{bottom:1119.282900px;}
.y3f{bottom:1121.078700px;}
.y5e{bottom:1121.078850px;}
.y126{bottom:1122.200850px;}
.y8d{bottom:1124.326650px;}
.y3b{bottom:1155.615300px;}
.y3a{bottom:1175.115300px;}
.y3e{bottom:1178.691750px;}
.h1b{height:26.240392px;}
.h1c{height:27.336145px;}
.h1d{height:27.336745px;}
.h1e{height:27.354145px;}
.h1f{height:29.534820px;}
.h20{height:32.398270px;}
.h1a{height:32.588269px;}
.h6{height:34.446094px;}
.h2{height:38.039062px;}
.h12{height:38.226562px;}
.h10{height:38.273438px;}
.h13{height:38.507812px;}
.h5{height:38.531250px;}
.h17{height:40.497838px;}
.h14{height:41.882812px;}
.hf{height:42.793945px;}
.h7{height:43.004883px;}
.he{height:43.057617px;}
.h9{height:43.321289px;}
.h16{height:43.943966px;}
.ha{height:47.118164px;}
.h8{height:47.343750px;}
.hc{height:48.134766px;}
.h22{height:50.176758px;}
.h11{height:52.078125px;}
.hd{height:52.353516px;}
.h4{height:52.948242px;}
.h19{height:55.694496px;}
.hb{height:56.812500px;}
.h18{height:69.233366px;}
.h21{height:80.995259px;}
.h3{height:81.231445px;}
.h15{height:442.183500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:710.929500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:11.546550px;}
.x1b{left:14.135250px;}
.x1f{left:41.921688px;}
.x22{left:51.406200px;}
.x20{left:53.791029px;}
.x1e{left:57.344850px;}
.x23{left:64.879437px;}
.x15{left:71.548350px;}
.x2{left:73.984200px;}
.x24{left:83.893615px;}
.x12{left:85.192050px;}
.x13{left:89.215500px;}
.xa{left:107.068950px;}
.xc{left:108.286950px;}
.x11{left:110.184750px;}
.x18{left:116.278650px;}
.x5{left:119.576400px;}
.x6{left:121.047600px;}
.x7{left:123.420750px;}
.x16{left:159.877050px;}
.x19{left:163.677000px;}
.x1a{left:168.611100px;}
.x14{left:172.558200px;}
.x17{left:174.379500px;}
.x4{left:300.189000px;}
.xe{left:304.441050px;}
.xb{left:317.196600px;}
.xf{left:322.441050px;}
.x10{left:354.538050px;}
.x3{left:396.050700px;}
.x1c{left:531.827850px;}
.xd{left:538.523850px;}
.x1d{left:551.512800px;}
.x9{left:652.471650px;}
.x8{left:683.848650px;}
.x1{left:807.210300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.v2{vertical-align:22.479467pt;}
.ls1c{letter-spacing:-6.432000pt;}
.ls8{letter-spacing:-3.888000pt;}
.ls16{letter-spacing:-2.880000pt;}
.ls2a{letter-spacing:-2.453333pt;}
.ls9{letter-spacing:-0.816000pt;}
.ls20{letter-spacing:-0.693333pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.614400pt;}
.ls23{letter-spacing:-0.533333pt;}
.ls27{letter-spacing:-0.480000pt;}
.ls28{letter-spacing:-0.432000pt;}
.ls29{letter-spacing:-0.384000pt;}
.ls25{letter-spacing:-0.373333pt;}
.ls6{letter-spacing:-0.362667pt;}
.ls26{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010667pt;}
.ls21{letter-spacing:0.011733pt;}
.ls14{letter-spacing:0.012267pt;}
.ls17{letter-spacing:0.013867pt;}
.ls4{letter-spacing:0.022933pt;}
.ls24{letter-spacing:0.213333pt;}
.ls1b{letter-spacing:0.373333pt;}
.ls3{letter-spacing:0.428800pt;}
.ls22{letter-spacing:0.979733pt;}
.ls15{letter-spacing:1.186667pt;}
.ls1e{letter-spacing:1.237655pt;}
.ls12{letter-spacing:1.292267pt;}
.ls1f{letter-spacing:1.293913pt;}
.ls11{letter-spacing:1.409067pt;}
.lsa{letter-spacing:2.401600pt;}
.ls10{letter-spacing:2.585600pt;}
.lsf{letter-spacing:2.586133pt;}
.lse{letter-spacing:2.920000pt;}
.lsd{letter-spacing:2.920533pt;}
.lsb{letter-spacing:3.193600pt;}
.lsc{letter-spacing:3.194133pt;}
.ls2{letter-spacing:4.473067pt;}
.ls1d{letter-spacing:28.048604pt;}
.ls0{letter-spacing:38.383435pt;}
.ls18{letter-spacing:212.436800pt;}
.ls1a{letter-spacing:218.692800pt;}
.ls19{letter-spacing:218.724800pt;}
.ws8{word-spacing:-15.936000pt;}
.ws43{word-spacing:-14.608000pt;}
.ws7f{word-spacing:-14.064267pt;}
.ws6a{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws23{word-spacing:-13.226667pt;}
.ws9{word-spacing:-13.066667pt;}
.ws7c{word-spacing:-12.961333pt;}
.ws39{word-spacing:-12.586667pt;}
.ws38{word-spacing:-12.426667pt;}
.ws24{word-spacing:-11.952000pt;}
.ws91{word-spacing:-11.904000pt;}
.ws6{word-spacing:-11.760000pt;}
.wsbc{word-spacing:-11.520000pt;}
.wsbb{word-spacing:-11.472000pt;}
.wse{word-spacing:-10.800000pt;}
.ws63{word-spacing:-10.581333pt;}
.wsa{word-spacing:-10.464000pt;}
.wsc{word-spacing:-9.984000pt;}
.ws3{word-spacing:-9.685333pt;}
.wsb{word-spacing:-9.648000pt;}
.ws22{word-spacing:-9.600000pt;}
.wsf{word-spacing:-9.301333pt;}
.ws4{word-spacing:-8.371200pt;}
.ws7{word-spacing:-8.064000pt;}
.ws1b{word-spacing:-7.413333pt;}
.wsa2{word-spacing:-2.613333pt;}
.ws84{word-spacing:-2.400000pt;}
.wsb9{word-spacing:-2.304000pt;}
.ws8d{word-spacing:-2.026667pt;}
.wsbe{word-spacing:-2.016000pt;}
.ws3c{word-spacing:-1.973333pt;}
.ws1a{word-spacing:-1.920000pt;}
.ws96{word-spacing:-1.706667pt;}
.ws77{word-spacing:-1.546667pt;}
.ws85{word-spacing:-1.493333pt;}
.ws30{word-spacing:-1.440000pt;}
.ws3e{word-spacing:-1.333333pt;}
.wsc3{word-spacing:-0.912000pt;}
.wsb7{word-spacing:-0.864000pt;}
.wsa0{word-spacing:-0.853333pt;}
.wsb4{word-spacing:-0.672000pt;}
.wsaa{word-spacing:-0.586667pt;}
.ws32{word-spacing:-0.432000pt;}
.ws16{word-spacing:-0.384000pt;}
.ws73{word-spacing:-0.373333pt;}
.ws69{word-spacing:-0.288000pt;}
.wsbd{word-spacing:-0.266667pt;}
.wsa4{word-spacing:-0.213333pt;}
.ws12{word-spacing:-0.192000pt;}
.ws2b{word-spacing:-0.106667pt;}
.ws44{word-spacing:-0.058667pt;}
.ws45{word-spacing:-0.053333pt;}
.wsd{word-spacing:-0.048000pt;}
.ws10{word-spacing:0.000000pt;}
.wsb2{word-spacing:0.160000pt;}
.wsb0{word-spacing:0.266667pt;}
.ws0{word-spacing:0.272000pt;}
.ws11{word-spacing:0.362667pt;}
.ws9d{word-spacing:0.373333pt;}
.wsc2{word-spacing:0.384000pt;}
.ws17{word-spacing:0.432000pt;}
.ws8f{word-spacing:0.480000pt;}
.ws9f{word-spacing:0.533333pt;}
.ws13{word-spacing:0.614400pt;}
.ws19{word-spacing:0.624000pt;}
.ws40{word-spacing:0.640000pt;}
.ws8c{word-spacing:0.693333pt;}
.ws75{word-spacing:0.800000pt;}
.ws21{word-spacing:0.816000pt;}
.ws90{word-spacing:1.008000pt;}
.ws76{word-spacing:1.173333pt;}
.ws4a{word-spacing:1.200000pt;}
.ws14{word-spacing:1.248000pt;}
.ws37{word-spacing:1.296000pt;}
.ws42{word-spacing:1.333333pt;}
.ws36{word-spacing:1.440000pt;}
.wsac{word-spacing:1.600000pt;}
.ws49{word-spacing:1.653333pt;}
.ws92{word-spacing:1.776000pt;}
.wsad{word-spacing:1.813333pt;}
.ws93{word-spacing:1.824000pt;}
.ws48{word-spacing:1.920000pt;}
.ws2e{word-spacing:1.973333pt;}
.ws18{word-spacing:2.016000pt;}
.wsa8{word-spacing:2.026667pt;}
.ws3b{word-spacing:2.080000pt;}
.ws9b{word-spacing:2.133333pt;}
.ws71{word-spacing:2.346667pt;}
.wsb6{word-spacing:2.352000pt;}
.ws31{word-spacing:2.448000pt;}
.wsc7{word-spacing:2.453333pt;}
.ws35{word-spacing:2.592000pt;}
.ws2a{word-spacing:2.613333pt;}
.ws72{word-spacing:2.720000pt;}
.wsb1{word-spacing:2.773333pt;}
.wsb3{word-spacing:2.784000pt;}
.ws8e{word-spacing:2.826667pt;}
.ws4b{word-spacing:2.880000pt;}
.ws34{word-spacing:2.928000pt;}
.wsaf{word-spacing:3.200000pt;}
.ws33{word-spacing:3.216000pt;}
.ws86{word-spacing:3.306667pt;}
.wsc6{word-spacing:3.360000pt;}
.ws83{word-spacing:3.413333pt;}
.ws8a{word-spacing:3.626667pt;}
.ws8b{word-spacing:3.733333pt;}
.wsa1{word-spacing:3.786667pt;}
.ws47{word-spacing:3.893333pt;}
.wsae{word-spacing:3.946667pt;}
.wsab{word-spacing:4.213333pt;}
.wsc5{word-spacing:4.320000pt;}
.ws15{word-spacing:4.512000pt;}
.ws3a{word-spacing:4.586667pt;}
.ws2f{word-spacing:4.693333pt;}
.ws6c{word-spacing:4.704000pt;}
.ws97{word-spacing:4.746667pt;}
.ws6b{word-spacing:4.752000pt;}
.ws6d{word-spacing:4.800000pt;}
.ws29{word-spacing:4.960000pt;}
.ws9c{word-spacing:5.013333pt;}
.wsa9{word-spacing:5.120000pt;}
.ws41{word-spacing:5.386667pt;}
.wsbf{word-spacing:5.472000pt;}
.ws9a{word-spacing:5.493333pt;}
.wsb8{word-spacing:5.520000pt;}
.ws9e{word-spacing:5.813333pt;}
.ws95{word-spacing:5.866667pt;}
.ws2d{word-spacing:5.920000pt;}
.ws89{word-spacing:6.080000pt;}
.ws82{word-spacing:6.560000pt;}
.ws28{word-spacing:6.826667pt;}
.ws99{word-spacing:6.880000pt;}
.ws98{word-spacing:6.933333pt;}
.ws1c{word-spacing:7.146667pt;}
.wsb5{word-spacing:7.344000pt;}
.ws87{word-spacing:7.413333pt;}
.ws6e{word-spacing:7.680000pt;}
.wsa5{word-spacing:7.733333pt;}
.ws94{word-spacing:8.256000pt;}
.ws74{word-spacing:8.586667pt;}
.ws2c{word-spacing:8.693333pt;}
.ws3d{word-spacing:8.853333pt;}
.wsc1{word-spacing:8.928000pt;}
.wsba{word-spacing:9.072000pt;}
.wsc4{word-spacing:9.120000pt;}
.ws3f{word-spacing:10.026667pt;}
.ws26{word-spacing:10.080000pt;}
.ws1e{word-spacing:10.133333pt;}
.ws1d{word-spacing:10.186667pt;}
.ws27{word-spacing:10.293333pt;}
.ws88{word-spacing:10.560000pt;}
.ws6f{word-spacing:11.232000pt;}
.ws81{word-spacing:11.651936pt;}
.wsa3{word-spacing:11.680000pt;}
.wsa7{word-spacing:12.213333pt;}
.wsa6{word-spacing:12.426667pt;}
.ws1f{word-spacing:12.853333pt;}
.ws70{word-spacing:12.906667pt;}
.ws20{word-spacing:13.493333pt;}
.wsc0{word-spacing:16.272000pt;}
.ws7a{word-spacing:19.973328pt;}
.ws7e{word-spacing:19.983461pt;}
.ws7b{word-spacing:20.020529pt;}
.ws79{word-spacing:20.025327pt;}
.ws80{word-spacing:20.026923pt;}
.ws78{word-spacing:20.027456pt;}
.ws46{word-spacing:24.533333pt;}
.ws25{word-spacing:25.333333pt;}
.ws1{word-spacing:29.912120pt;}
.ws2{word-spacing:29.922533pt;}
.ws7d{word-spacing:103.585221pt;}
.ws5c{word-spacing:112.217600pt;}
.ws5d{word-spacing:124.125867pt;}
.ws62{word-spacing:136.125867pt;}
.ws61{word-spacing:136.195733pt;}
.ws64{word-spacing:148.135467pt;}
.ws4e{word-spacing:148.174933pt;}
.ws55{word-spacing:160.104533pt;}
.ws60{word-spacing:160.169067pt;}
.ws58{word-spacing:160.174933pt;}
.ws4c{word-spacing:162.450133pt;}
.ws67{word-spacing:184.103467pt;}
.ws65{word-spacing:184.114667pt;}
.ws52{word-spacing:184.132800pt;}
.ws68{word-spacing:184.135467pt;}
.ws53{word-spacing:196.082133pt;}
.ws5f{word-spacing:196.102933pt;}
.ws5b{word-spacing:198.132800pt;}
.ws57{word-spacing:202.487467pt;}
.ws56{word-spacing:202.519467pt;}
.ws50{word-spacing:208.081600pt;}
.ws4d{word-spacing:210.112000pt;}
.ws59{word-spacing:220.081067pt;}
.ws51{word-spacing:222.091200pt;}
.ws66{word-spacing:222.101867pt;}
.ws4f{word-spacing:234.070400pt;}
.ws54{word-spacing:234.081067pt;}
.ws5a{word-spacing:630.616000pt;}
.ws5e{word-spacing:644.610667pt;}
._f{margin-left:-8.881600pt;}
._0{margin-left:-7.915200pt;}
._c{margin-left:-6.010667pt;}
._e{margin-left:-4.990400pt;}
._3{margin-left:-3.354667pt;}
._14{margin-left:-2.432000pt;}
._1{margin-left:-1.541333pt;}
._2{width:1.628267pt;}
._7{width:2.821333pt;}
._5{width:3.720000pt;}
._6{width:4.825067pt;}
._12{width:6.529067pt;}
._a{width:7.427200pt;}
._13{width:8.330133pt;}
._b{width:10.054933pt;}
._d{width:11.349333pt;}
._8{width:14.400000pt;}
._9{width:15.584000pt;}
._2d{width:21.352000pt;}
._2e{width:22.616000pt;}
._15{width:23.818133pt;}
._11{width:24.752000pt;}
._10{width:25.693333pt;}
._4{width:32.554667pt;}
._2c{width:38.346667pt;}
._21{width:158.766933pt;}
._18{width:170.685867pt;}
._1e{width:182.749867pt;}
._16{width:190.868800pt;}
._24{width:194.714133pt;}
._1d{width:206.674133pt;}
._25{width:220.693333pt;}
._1c{width:230.682667pt;}
._20{width:232.692800pt;}
._23{width:244.672000pt;}
._28{width:256.651200pt;}
._1a{width:375.048000pt;}
._1f{width:387.027200pt;}
._1b{width:389.042667pt;}
._22{width:401.021867pt;}
._17{width:434.397333pt;}
._19{width:448.392000pt;}
._2b{width:462.125333pt;}
._2a{width:502.232000pt;}
._29{width:641.197333pt;}
._26{width:653.176533pt;}
._27{width:667.171200pt;}
.fs3{font-size:34.202667pt;}
.fsd{font-size:34.995733pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:37.504533pt;}
.fs5{font-size:38.400000pt;}
.fse{font-size:41.476267pt;}
.fs0{font-size:42.666667pt;}
.fsc{font-size:42.772267pt;}
.fs6{font-size:48.000000pt;}
.fsa{font-size:51.845333pt;}
.fs7{font-size:53.333333pt;}
.fs9{font-size:56.257067pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.fsf{font-size:103.690133pt;}
.y0{bottom:0.000000pt;}
.yf7{bottom:3.394133pt;}
.y101{bottom:18.006933pt;}
.ye3{bottom:20.719733pt;}
.y100{bottom:35.504800pt;}
.ye4{bottom:41.814667pt;}
.yff{bottom:53.002667pt;}
.y1{bottom:60.555333pt;}
.y108{bottom:60.940259pt;}
.y3c{bottom:63.299600pt;}
.yf6{bottom:64.785467pt;}
.y3d{bottom:66.698800pt;}
.yfe{bottom:70.500400pt;}
.y10d{bottom:74.077493pt;}
.y107{bottom:84.970571pt;}
.yf5{bottom:86.350133pt;}
.yfd{bottom:87.998000pt;}
.yac{bottom:100.514400pt;}
.y8c{bottom:100.514533pt;}
.y10c{bottom:101.011006pt;}
.y2b{bottom:104.188933pt;}
.ye{bottom:104.778267pt;}
.yf4{bottom:105.102267pt;}
.yfc{bottom:105.495867pt;}
.y5d{bottom:107.111733pt;}
.yae{bottom:107.111867pt;}
.y106{bottom:109.584143pt;}
.yd{bottom:117.578267pt;}
.yab{bottom:119.181067pt;}
.y8b{bottom:119.181200pt;}
.y2a{bottom:122.855600pt;}
.yfb{bottom:122.993600pt;}
.y5c{bottom:124.711733pt;}
.yad{bottom:124.711867pt;}
.ye5{bottom:126.198400pt;}
.y10b{bottom:126.466933pt;}
.yc{bottom:130.378267pt;}
.yaa{bottom:137.847733pt;}
.y8a{bottom:137.847867pt;}
.yfa{bottom:140.491200pt;}
.y29{bottom:141.522267pt;}
.y5b{bottom:142.311733pt;}
.yb{bottom:143.178267pt;}
.ye8{bottom:143.783600pt;}
.ydc{bottom:151.529733pt;}
.ya9{bottom:156.514400pt;}
.y89{bottom:156.514533pt;}
.yf9{bottom:157.989067pt;}
.y5a{bottom:159.911733pt;}
.y28{bottom:160.188933pt;}
.y105{bottom:167.041733pt;}
.ye7{bottom:169.566933pt;}
.ydb{bottom:170.112400pt;}
.yf8{bottom:174.550133pt;}
.ya8{bottom:175.181067pt;}
.y88{bottom:175.181200pt;}
.y104{bottom:176.033733pt;}
.y39{bottom:177.237867pt;}
.y59{bottom:177.511733pt;}
.y27{bottom:178.855600pt;}
.y103{bottom:182.264997pt;}
.yf3{bottom:188.683537pt;}
.yda{bottom:188.695067pt;}
.y38{bottom:193.237867pt;}
.ya7{bottom:193.847733pt;}
.y87{bottom:193.847867pt;}
.y58{bottom:195.111733pt;}
.y26{bottom:197.522267pt;}
.yd9{bottom:207.277733pt;}
.y37{bottom:209.237867pt;}
.yf2{bottom:210.581600pt;}
.ya6{bottom:212.514400pt;}
.y86{bottom:212.514533pt;}
.y57{bottom:212.711733pt;}
.y25{bottom:216.188933pt;}
.y113{bottom:219.393733pt;}
.y109{bottom:221.246029pt;}
.y102{bottom:223.896800pt;}
.y36{bottom:225.237867pt;}
.yd8{bottom:225.860400pt;}
.yef{bottom:228.476133pt;}
.y56{bottom:230.311867pt;}
.ya5{bottom:231.181067pt;}
.y85{bottom:231.181200pt;}
.y24{bottom:234.855600pt;}
.y35{bottom:241.237867pt;}
.yd7{bottom:244.443067pt;}
.y55{bottom:247.911867pt;}
.ya4{bottom:249.847733pt;}
.y84{bottom:249.847867pt;}
.yee{bottom:249.939600pt;}
.y23{bottom:253.522267pt;}
.y34{bottom:257.237867pt;}
.y125{bottom:261.789867pt;}
.yd6{bottom:263.025733pt;}
.yf1{bottom:265.718407pt;}
.ya3{bottom:268.514400pt;}
.y83{bottom:268.514533pt;}
.y22{bottom:272.188933pt;}
.y33{bottom:273.237867pt;}
.yed{bottom:273.902667pt;}
.yd5{bottom:282.229467pt;}
.ya2{bottom:287.181067pt;}
.y82{bottom:287.181200pt;}
.y124{bottom:290.498667pt;}
.y21{bottom:290.855600pt;}
.yec{bottom:294.066800pt;}
.yd4{bottom:300.812133pt;}
.y32{bottom:304.356000pt;}
.ya1{bottom:305.847733pt;}
.y81{bottom:305.847867pt;}
.y20{bottom:309.522267pt;}
.yeb{bottom:316.059200pt;}
.yd3{bottom:319.394800pt;}
.y31{bottom:320.356000pt;}
.ya0{bottom:324.514400pt;}
.y80{bottom:324.514533pt;}
.yf0{bottom:325.275733pt;}
.y1f{bottom:328.188933pt;}
.yea{bottom:329.555867pt;}
.y30{bottom:336.356000pt;}
.ye9{bottom:337.154800pt;}
.y118{bottom:337.280933pt;}
.yd2{bottom:337.977467pt;}
.y9f{bottom:343.181067pt;}
.y7f{bottom:343.181200pt;}
.y1e{bottom:346.855600pt;}
.yd1{bottom:356.560133pt;}
.ye6{bottom:358.251067pt;}
.y9e{bottom:361.847733pt;}
.y7e{bottom:361.847867pt;}
.y2f{bottom:367.474133pt;}
.yd0{bottom:375.142800pt;}
.y1d{bottom:377.333600pt;}
.y9d{bottom:380.514400pt;}
.y7d{bottom:380.514533pt;}
.ydf{bottom:383.371733pt;}
.y2e{bottom:383.474133pt;}
.y10a{bottom:384.435600pt;}
.y121{bottom:393.280933pt;}
.ycf{bottom:393.725600pt;}
.y9c{bottom:399.181067pt;}
.y7c{bottom:399.181200pt;}
.y2d{bottom:399.474133pt;}
.yde{bottom:400.971733pt;}
.yce{bottom:412.308267pt;}
.y2c{bottom:415.474133pt;}
.y9b{bottom:417.847733pt;}
.y7b{bottom:417.847867pt;}
.ydd{bottom:418.571733pt;}
.ycd{bottom:430.890933pt;}
.y9a{bottom:436.514400pt;}
.y7a{bottom:436.514533pt;}
.y1c{bottom:448.913733pt;}
.ycc{bottom:449.473600pt;}
.y99{bottom:455.181067pt;}
.y79{bottom:455.181200pt;}
.y1b{bottom:466.513733pt;}
.ycb{bottom:468.056267pt;}
.y98{bottom:473.847733pt;}
.y78{bottom:473.847867pt;}
.y120{bottom:478.692800pt;}
.yca{bottom:486.638933pt;}
.y97{bottom:492.514400pt;}
.y77{bottom:492.514533pt;}
.y1a{bottom:503.011333pt;}
.y123{bottom:504.456533pt;}
.yc9{bottom:505.221600pt;}
.y96{bottom:511.181067pt;}
.y76{bottom:511.181200pt;}
.y19{bottom:520.611333pt;}
.yc8{bottom:523.804267pt;}
.y116{bottom:528.614400pt;}
.y95{bottom:529.847733pt;}
.y75{bottom:529.847867pt;}
.y122{bottom:533.165467pt;}
.y18{bottom:538.211333pt;}
.yc7{bottom:542.386933pt;}
.y115{bottom:546.214400pt;}
.y94{bottom:548.514400pt;}
.y74{bottom:548.514533pt;}
.y17{bottom:555.811333pt;}
.yc6{bottom:560.969600pt;}
.y114{bottom:563.814400pt;}
.y93{bottom:567.181067pt;}
.y73{bottom:567.181200pt;}
.y112{bottom:572.252133pt;}
.y16{bottom:573.411333pt;}
.yc5{bottom:579.552267pt;}
.y92{bottom:585.847733pt;}
.y72{bottom:585.847867pt;}
.ye1{bottom:586.079200pt;}
.y111{bottom:589.852267pt;}
.y11f{bottom:590.692800pt;}
.y15{bottom:591.011333pt;}
.yc4{bottom:598.135067pt;}
.ye0{bottom:603.679333pt;}
.y54{bottom:604.514400pt;}
.y71{bottom:604.514533pt;}
.y14{bottom:608.611333pt;}
.yc3{bottom:616.717733pt;}
.ye2{bottom:622.128000pt;}
.y53{bottom:623.181067pt;}
.y70{bottom:623.181200pt;}
.y13{bottom:626.211333pt;}
.yc2{bottom:635.300400pt;}
.y52{bottom:641.847733pt;}
.y6f{bottom:641.847867pt;}
.y12{bottom:643.811333pt;}
.yc1{bottom:653.883067pt;}
.y51{bottom:660.514400pt;}
.y6e{bottom:660.514533pt;}
.y11{bottom:661.411333pt;}
.yc0{bottom:672.465733pt;}
.y117{bottom:673.280933pt;}
.y50{bottom:679.181067pt;}
.y6d{bottom:679.181200pt;}
.y10{bottom:689.053600pt;}
.ybf{bottom:691.048400pt;}
.y4f{bottom:697.847733pt;}
.y6c{bottom:697.847867pt;}
.y11e{bottom:702.692667pt;}
.ybe{bottom:709.631067pt;}
.y12a{bottom:709.789867pt;}
.y4e{bottom:716.514400pt;}
.y6b{bottom:716.514533pt;}
.ybd{bottom:728.213733pt;}
.y129{bottom:728.456533pt;}
.y4d{bottom:735.181067pt;}
.y6a{bottom:735.181200pt;}
.ybc{bottom:746.796400pt;}
.y4c{bottom:753.847733pt;}
.y110{bottom:753.847867pt;}
.y128{bottom:757.165467pt;}
.ya{bottom:759.526000pt;}
.ybb{bottom:765.379067pt;}
.y69{bottom:766.614267pt;}
.y4b{bottom:772.514400pt;}
.y10f{bottom:772.514533pt;}
.y9{bottom:775.526000pt;}
.yba{bottom:783.961733pt;}
.y4a{bottom:791.181067pt;}
.y10e{bottom:791.181200pt;}
.y8{bottom:791.526000pt;}
.y11d{bottom:796.026000pt;}
.yb9{bottom:802.544400pt;}
.y7{bottom:807.526000pt;}
.y49{bottom:809.847733pt;}
.y68{bottom:809.847867pt;}
.yb8{bottom:821.127067pt;}
.y6{bottom:823.526000pt;}
.y48{bottom:828.514400pt;}
.y67{bottom:828.514533pt;}
.y5{bottom:839.526000pt;}
.yb7{bottom:839.709733pt;}
.y47{bottom:847.181067pt;}
.y66{bottom:847.181200pt;}
.y11c{bottom:852.026000pt;}
.yb6{bottom:858.292533pt;}
.y46{bottom:865.847733pt;}
.y65{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.yb5{bottom:876.875200pt;}
.y45{bottom:884.514400pt;}
.y64{bottom:884.514533pt;}
.yb4{bottom:895.457867pt;}
.y44{bottom:903.181067pt;}
.y63{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.y11b{bottom:908.026000pt;}
.yb3{bottom:914.040533pt;}
.y91{bottom:914.692667pt;}
.y43{bottom:921.847733pt;}
.y62{bottom:921.847867pt;}
.yb2{bottom:932.623200pt;}
.y2{bottom:932.695600pt;}
.y90{bottom:933.359333pt;}
.y42{bottom:940.514400pt;}
.y61{bottom:940.514533pt;}
.y8f{bottom:952.026000pt;}
.y41{bottom:959.181067pt;}
.y60{bottom:959.181200pt;}
.yb1{bottom:959.718133pt;}
.y11a{bottom:963.727067pt;}
.y127{bottom:968.802933pt;}
.y8e{bottom:970.692667pt;}
.yb0{bottom:977.318133pt;}
.y40{bottom:977.847733pt;}
.y5f{bottom:977.847867pt;}
.yf{bottom:986.502667pt;}
.y119{bottom:989.952800pt;}
.yaf{bottom:994.918133pt;}
.y3f{bottom:996.514400pt;}
.y5e{bottom:996.514533pt;}
.y126{bottom:997.511867pt;}
.y8d{bottom:999.401467pt;}
.y3b{bottom:1027.213600pt;}
.y3a{bottom:1044.546933pt;}
.y3e{bottom:1047.726000pt;}
.h1b{height:23.324793pt;}
.h1c{height:24.298795pt;}
.h1d{height:24.299329pt;}
.h1e{height:24.314795pt;}
.h1f{height:26.253173pt;}
.h20{height:28.798462pt;}
.h1a{height:28.967351pt;}
.h6{height:30.618750pt;}
.h2{height:33.812500pt;}
.h12{height:33.979167pt;}
.h10{height:34.020833pt;}
.h13{height:34.229167pt;}
.h5{height:34.250000pt;}
.h17{height:35.998078pt;}
.h14{height:37.229167pt;}
.hf{height:38.039062pt;}
.h7{height:38.226562pt;}
.he{height:38.273438pt;}
.h9{height:38.507812pt;}
.h16{height:39.061303pt;}
.ha{height:41.882812pt;}
.h8{height:42.083333pt;}
.hc{height:42.786458pt;}
.h22{height:44.601562pt;}
.h11{height:46.291667pt;}
.hd{height:46.536458pt;}
.h4{height:47.065104pt;}
.h19{height:49.506219pt;}
.hb{height:50.500000pt;}
.h18{height:61.540770pt;}
.h21{height:71.995786pt;}
.h3{height:72.205729pt;}
.h15{height:393.052000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:631.937333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:10.263600pt;}
.x1b{left:12.564667pt;}
.x1f{left:37.263723pt;}
.x22{left:45.694400pt;}
.x20{left:47.814248pt;}
.x1e{left:50.973200pt;}
.x23{left:57.670610pt;}
.x15{left:63.598533pt;}
.x2{left:65.763733pt;}
.x24{left:74.572102pt;}
.x12{left:75.726267pt;}
.x13{left:79.302667pt;}
.xa{left:95.172400pt;}
.xc{left:96.255067pt;}
.x11{left:97.942000pt;}
.x18{left:103.358800pt;}
.x5{left:106.290133pt;}
.x6{left:107.597867pt;}
.x7{left:109.707333pt;}
.x16{left:142.112933pt;}
.x19{left:145.490667pt;}
.x1a{left:149.876533pt;}
.x14{left:153.385067pt;}
.x17{left:155.004000pt;}
.x4{left:266.834667pt;}
.xe{left:270.614267pt;}
.xb{left:281.952533pt;}
.xf{left:286.614267pt;}
.x10{left:315.144933pt;}
.x3{left:352.045067pt;}
.x1c{left:472.735867pt;}
.xd{left:478.687867pt;}
.x1d{left:490.233600pt;}
.x9{left:579.974800pt;}
.x8{left:607.865467pt;}
.x1{left:717.520267pt;}
}




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