
    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_711d33cb566574b0bb6e98b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.968750;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_d339e9165cd24445bba16629.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.981934;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_945d4208ddb2daa3a2373708.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966309;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_b2b8aa2f32f137c4e9fbb9aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_c65334ca4d5c08c70b60e3e9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_eba503df61ef5b42aa3dbdaa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_4e38f4e7006520a4f9d470cf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.783691;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_9fc2da199895e890319b5b78.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_99b8bae4dafacbaae1ff8a66.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_65368b916195ce485df27122.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.983398;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_5f3e6b139c660dfea1283b5f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8e00990d17d27703ed5641c0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.311035;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_46057ef31d01756cbd39f626.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.941406;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_d74c1d40105d483425b7de4c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;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_0140c0873661137fe25eeb51.woff2')format("woff");}.fff{font-family:fff;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5de3aa69cfb1ffd1323bb214.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.061035;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_9081663ad6f3e8f2824ff93c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.968750;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_f8429e6e585cdd41cd03076c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.834473;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_9f1e2b13c617a350097e3f5a.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.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);}
.v6{vertical-align:-47.520000px;}
.v1{vertical-align:-26.640000px;}
.v4{vertical-align:-22.320000px;}
.v13{vertical-align:-20.304000px;}
.v11{vertical-align:-17.280000px;}
.vb{vertical-align:-15.840000px;}
.v3{vertical-align:-14.400000px;}
.v15{vertical-align:-11.520000px;}
.v17{vertical-align:-10.080000px;}
.v0{vertical-align:0.000000px;}
.v18{vertical-align:10.080000px;}
.v16{vertical-align:14.400000px;}
.v12{vertical-align:17.280000px;}
.v14{vertical-align:20.304000px;}
.v8{vertical-align:22.320000px;}
.v2{vertical-align:26.640000px;}
.vd{vertical-align:54.000000px;}
.vc{vertical-align:68.400000px;}
.v5{vertical-align:69.840000px;}
.v9{vertical-align:72.000000px;}
.v7{vertical-align:82.080000px;}
.va{vertical-align:84.960000px;}
.vf{vertical-align:87.120000px;}
.ve{vertical-align:126.000000px;}
.v10{vertical-align:159.120000px;}
.ls5d{letter-spacing:-14.640000px;}
.ls67{letter-spacing:-8.940000px;}
.ls70{letter-spacing:-0.738000px;}
.ls5c{letter-spacing:-0.720000px;}
.ls72{letter-spacing:-0.341400px;}
.ls6{letter-spacing:-0.301800px;}
.ls38{letter-spacing:-0.288000px;}
.ls53{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.214800px;}
.ls51{letter-spacing:-0.198000px;}
.ls59{letter-spacing:-0.118800px;}
.ls55{letter-spacing:-0.078000px;}
.ls39{letter-spacing:-0.072000px;}
.ls58{letter-spacing:-0.058320px;}
.ls57{letter-spacing:-0.040320px;}
.ls71{letter-spacing:-0.037440px;}
.ls8{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.001152px;}
.ls56{letter-spacing:0.015120px;}
.ls52{letter-spacing:0.024480px;}
.ls5b{letter-spacing:0.036000px;}
.ls6f{letter-spacing:0.037440px;}
.ls2e{letter-spacing:0.043200px;}
.ls35{letter-spacing:0.043920px;}
.ls49{letter-spacing:0.052560px;}
.ls65{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.093000px;}
.ls61{letter-spacing:0.136800px;}
.ls4{letter-spacing:0.143280px;}
.ls10{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.147024px;}
.ls68{letter-spacing:0.175800px;}
.ls44{letter-spacing:0.180000px;}
.ls31{letter-spacing:0.201600px;}
.ls3e{letter-spacing:0.204480px;}
.lsf{letter-spacing:0.213120px;}
.ls5{letter-spacing:0.216000px;}
.ls62{letter-spacing:0.223200px;}
.ls4c{letter-spacing:0.280800px;}
.ls9{letter-spacing:0.288000px;}
.ls4a{letter-spacing:0.295800px;}
.ls54{letter-spacing:0.312000px;}
.ls48{letter-spacing:0.336240px;}
.ls45{letter-spacing:0.336960px;}
.ls2{letter-spacing:0.360000px;}
.ls3c{letter-spacing:0.422640px;}
.ls41{letter-spacing:0.431280px;}
.ls6c{letter-spacing:0.432000px;}
.ls4d{letter-spacing:0.717120px;}
.ls5f{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.864000px;}
.ls46{letter-spacing:1.892880px;}
.ls37{letter-spacing:4.939200px;}
.ls36{letter-spacing:4.993200px;}
.ls34{letter-spacing:5.608800px;}
.ls26{letter-spacing:5.826384px;}
.ls15{letter-spacing:7.963200px;}
.ls50{letter-spacing:11.458080px;}
.ls6d{letter-spacing:18.540000px;}
.ls25{letter-spacing:20.508192px;}
.ls6e{letter-spacing:20.700000px;}
.ls2d{letter-spacing:23.724000px;}
.ls30{letter-spacing:24.444000px;}
.ls1c{letter-spacing:24.840000px;}
.ls60{letter-spacing:26.820000px;}
.ls6b{letter-spacing:27.360000px;}
.ls1a{letter-spacing:28.219824px;}
.ls27{letter-spacing:29.671200px;}
.ls33{letter-spacing:30.204000px;}
.ls20{letter-spacing:30.306384px;}
.ls2c{letter-spacing:30.744000px;}
.ls19{letter-spacing:31.303200px;}
.ls16{letter-spacing:33.746400px;}
.ls2b{letter-spacing:35.431200px;}
.ls18{letter-spacing:35.827200px;}
.ls1d{letter-spacing:36.151200px;}
.ls32{letter-spacing:36.820800px;}
.ls21{letter-spacing:37.519200px;}
.ls14{letter-spacing:39.132000px;}
.ls1{letter-spacing:39.156000px;}
.lsa{letter-spacing:39.276000px;}
.lsb{letter-spacing:50.358816px;}
.lse{letter-spacing:50.472000px;}
.ls64{letter-spacing:50.551200px;}
.ls66{letter-spacing:51.271200px;}
.ls1f{letter-spacing:52.668000px;}
.ls28{letter-spacing:53.726400px;}
.ls22{letter-spacing:62.641008px;}
.ls29{letter-spacing:62.733600px;}
.ls17{letter-spacing:70.500000px;}
.ls2f{letter-spacing:75.528000px;}
.ls24{letter-spacing:85.764000px;}
.ls74{letter-spacing:85.927824px;}
.ls5a{letter-spacing:86.030400px;}
.ls5e{letter-spacing:86.054400px;}
.ls63{letter-spacing:86.198400px;}
.ls69{letter-spacing:86.234400px;}
.ls3a{letter-spacing:90.484560px;}
.ls1e{letter-spacing:95.868000px;}
.ls6a{letter-spacing:97.560000px;}
.ls73{letter-spacing:110.534400px;}
.lsc{letter-spacing:119.865600px;}
.lsd{letter-spacing:119.916000px;}
.ls23{letter-spacing:206.045280px;}
.ls2a{letter-spacing:239.256000px;}
.ls1b{letter-spacing:269.928000px;}
.ls40{letter-spacing:552.551520px;}
.ls3f{letter-spacing:603.042240px;}
.ls3d{letter-spacing:607.955520px;}
.ls3b{letter-spacing:619.947840px;}
.ls4e{letter-spacing:630.351840px;}
.ls43{letter-spacing:655.551840px;}
.ls42{letter-spacing:677.817120px;}
.ls47{letter-spacing:679.312560px;}
.ls4b{letter-spacing:687.513360px;}
.ls4f{letter-spacing:887.140560px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa1{word-spacing:-108.144000px;}
.ws19{word-spacing:-108.000000px;}
.ws22{word-spacing:-90.072000px;}
.ws39{word-spacing:-84.384000px;}
.ws1c{word-spacing:-84.276000px;}
.ws33{word-spacing:-84.240000px;}
.ws1f{word-spacing:-83.556000px;}
.ws2e{word-spacing:-81.840000px;}
.ws2c{word-spacing:-81.828000px;}
.ws31{word-spacing:-81.756000px;}
.ws95{word-spacing:-79.423200px;}
.ws27{word-spacing:-79.344000px;}
.ws1a{word-spacing:-79.200000px;}
.ws2b{word-spacing:-77.796000px;}
.ws1d{word-spacing:-77.652000px;}
.ws26{word-spacing:-64.800000px;}
.ws34{word-spacing:-61.200000px;}
.ws1{word-spacing:-57.864240px;}
.ws21{word-spacing:-49.507200px;}
.ws1b{word-spacing:-49.132800px;}
.wsb5{word-spacing:-48.816000px;}
.ws5a{word-spacing:-48.240000px;}
.ws97{word-spacing:-45.612000px;}
.ws1e{word-spacing:-44.136000px;}
.ws23{word-spacing:-43.586496px;}
.ws96{word-spacing:-43.473600px;}
.ws29{word-spacing:-43.372800px;}
.ws76{word-spacing:-35.315280px;}
.ws77{word-spacing:-35.280000px;}
.ws5c{word-spacing:-35.195280px;}
.ws25{word-spacing:-34.776000px;}
.ws2a{word-spacing:-34.308000px;}
.ws2f{word-spacing:-33.876000px;}
.ws2{word-spacing:-32.508000px;}
.ws79{word-spacing:-30.024000px;}
.ws8c{word-spacing:-27.000000px;}
.ws8f{word-spacing:-26.964000px;}
.ws7d{word-spacing:-26.784000px;}
.ws82{word-spacing:-26.280000px;}
.ws36{word-spacing:-25.399584px;}
.ws3{word-spacing:-25.356240px;}
.ws5d{word-spacing:-24.960240px;}
.wsd{word-spacing:-24.440544px;}
.ws4{word-spacing:-24.408000px;}
.ws35{word-spacing:-21.672000px;}
.wsb2{word-spacing:-21.420000px;}
.wsb4{word-spacing:-21.060000px;}
.wsb3{word-spacing:-20.718600px;}
.ws5b{word-spacing:-19.249920px;}
.ws37{word-spacing:-19.070784px;}
.ws11{word-spacing:-18.000000px;}
.ws16{word-spacing:-16.488000px;}
.wsc{word-spacing:-16.272000px;}
.ws3d{word-spacing:-16.254000px;}
.ws47{word-spacing:-16.038000px;}
.ws66{word-spacing:-14.816040px;}
.ws64{word-spacing:-14.572800px;}
.ws42{word-spacing:-14.520240px;}
.ws53{word-spacing:-14.442240px;}
.ws67{word-spacing:-14.401440px;}
.ws18{word-spacing:-13.598760px;}
.ws8{word-spacing:-13.539456px;}
.wsa{word-spacing:-13.505760px;}
.ws17{word-spacing:-13.290960px;}
.ws7{word-spacing:-13.236504px;}
.ws38{word-spacing:-12.692160px;}
.ws4a{word-spacing:-10.836000px;}
.ws28{word-spacing:-9.648000px;}
.ws54{word-spacing:-9.535680px;}
.ws9{word-spacing:-9.144864px;}
.wsb{word-spacing:-9.112320px;}
.ws32{word-spacing:-4.788000px;}
.ws69{word-spacing:-2.628720px;}
.ws6f{word-spacing:-2.366160px;}
.ws60{word-spacing:-2.214720px;}
.ws89{word-spacing:-2.155968px;}
.ws57{word-spacing:-2.072880px;}
.ws50{word-spacing:-1.722240px;}
.ws98{word-spacing:-1.713600px;}
.ws2d{word-spacing:-1.656000px;}
.ws68{word-spacing:-1.510080px;}
.ws40{word-spacing:-1.481760px;}
.wsb1{word-spacing:-1.464480px;}
.ws4d{word-spacing:-1.350720px;}
.ws74{word-spacing:-1.289520px;}
.ws46{word-spacing:-1.218960px;}
.ws92{word-spacing:-1.080000px;}
.ws91{word-spacing:-0.792000px;}
.ws73{word-spacing:-0.727200px;}
.ws51{word-spacing:-0.719280px;}
.ws6a{word-spacing:-0.569520px;}
.ws41{word-spacing:-0.550800px;}
.ws72{word-spacing:-0.405360px;}
.ws87{word-spacing:-0.351792px;}
.ws8e{word-spacing:-0.316032px;}
.ws13{word-spacing:-0.288000px;}
.ws88{word-spacing:-0.263952px;}
.ws90{word-spacing:-0.223632px;}
.ws43{word-spacing:-0.072000px;}
.ws62{word-spacing:-0.041760px;}
.wsa6{word-spacing:-0.012000px;}
.ws61{word-spacing:-0.007200px;}
.ws0{word-spacing:0.000000px;}
.ws15{word-spacing:0.144000px;}
.ws8b{word-spacing:0.288000px;}
.ws10{word-spacing:0.432000px;}
.ws99{word-spacing:0.436752px;}
.ws14{word-spacing:0.576000px;}
.ws45{word-spacing:0.642000px;}
.ws48{word-spacing:0.648000px;}
.ws6d{word-spacing:0.678240px;}
.ws5f{word-spacing:0.858240px;}
.ws4e{word-spacing:0.858480px;}
.ws8a{word-spacing:0.864000px;}
.ws6c{word-spacing:0.895680px;}
.ws3f{word-spacing:0.900000px;}
.ws12{word-spacing:1.080000px;}
.ws49{word-spacing:1.962000px;}
.ws24{word-spacing:2.100000px;}
.ws4c{word-spacing:2.142000px;}
.wsf{word-spacing:2.160000px;}
.ws9c{word-spacing:3.888000px;}
.ws65{word-spacing:4.904640px;}
.ws9d{word-spacing:5.004000px;}
.ws86{word-spacing:5.184000px;}
.ws9b{word-spacing:5.400000px;}
.ws55{word-spacing:6.344640px;}
.ws85{word-spacing:6.516000px;}
.ws84{word-spacing:6.768000px;}
.wsac{word-spacing:7.560000px;}
.ws83{word-spacing:7.884000px;}
.ws5{word-spacing:8.136000px;}
.wsab{word-spacing:8.151840px;}
.wsb0{word-spacing:8.161200px;}
.wsa8{word-spacing:8.280000px;}
.ws3a{word-spacing:8.568000px;}
.wse{word-spacing:8.700192px;}
.wsa9{word-spacing:8.726400px;}
.wsaf{word-spacing:8.876160px;}
.wsad{word-spacing:8.904240px;}
.wsae{word-spacing:9.196560px;}
.ws20{word-spacing:9.792000px;}
.wsaa{word-spacing:10.036560px;}
.ws8d{word-spacing:18.360000px;}
.ws7e{word-spacing:20.016000px;}
.ws7b{word-spacing:20.088000px;}
.ws7c{word-spacing:20.304000px;}
.ws7a{word-spacing:20.340000px;}
.ws3e{word-spacing:21.222000px;}
.ws9f{word-spacing:21.500568px;}
.wsa0{word-spacing:22.172688px;}
.ws9e{word-spacing:22.708800px;}
.wsa2{word-spacing:22.968000px;}
.ws9a{word-spacing:23.568000px;}
.ws6{word-spacing:25.488000px;}
.ws81{word-spacing:26.460000px;}
.ws80{word-spacing:26.928000px;}
.ws7f{word-spacing:27.036000px;}
.wsa3{word-spacing:32.280000px;}
.wsa5{word-spacing:32.724000px;}
.wsa4{word-spacing:36.172800px;}
.ws94{word-spacing:50.760000px;}
.ws93{word-spacing:51.408000px;}
.ws30{word-spacing:69.192000px;}
.wsa7{word-spacing:76.680000px;}
.ws3c{word-spacing:99.144000px;}
.ws6b{word-spacing:370.051440px;}
.ws6e{word-spacing:425.093520px;}
.ws78{word-spacing:425.213520px;}
.ws3b{word-spacing:471.615168px;}
.ws75{word-spacing:472.291440px;}
.ws70{word-spacing:515.212800px;}
.ws5e{word-spacing:519.730080px;}
.ws52{word-spacing:556.972800px;}
.ws71{word-spacing:581.708640px;}
.ws4f{word-spacing:587.468640px;}
.ws63{word-spacing:603.471360px;}
.ws44{word-spacing:622.316640px;}
.ws58{word-spacing:634.418400px;}
.ws56{word-spacing:636.578400px;}
.ws4b{word-spacing:888.732000px;}
.ws59{word-spacing:930.338400px;}
._2a{margin-left:-17.280000px;}
._7{margin-left:-13.632000px;}
._16{margin-left:-12.393504px;}
._2{margin-left:-11.124000px;}
._9{margin-left:-9.732144px;}
._4{margin-left:-7.884000px;}
._26{margin-left:-6.773328px;}
._8{margin-left:-5.292000px;}
._1{margin-left:-4.104000px;}
._5{margin-left:-2.854368px;}
._3{margin-left:-1.080000px;}
._0{width:1.080000px;}
._b{width:2.196000px;}
._a{width:3.925680px;}
._11{width:5.849568px;}
._29{width:7.552800px;}
._1d{width:14.322240px;}
._10{width:19.704000px;}
._e{width:21.348000px;}
._12{width:24.444000px;}
._d{width:25.726368px;}
._24{width:27.351504px;}
._c{width:28.376736px;}
._2b{width:30.476064px;}
._25{width:33.168000px;}
._f{width:34.956000px;}
._17{width:39.384000px;}
._6{width:40.619280px;}
._27{width:46.848000px;}
._22{width:48.288000px;}
._23{width:54.478368px;}
._15{width:71.078112px;}
._14{width:78.048000px;}
._13{width:80.004000px;}
._28{width:99.396000px;}
._20{width:358.972848px;}
._18{width:545.880720px;}
._21{width:563.589120px;}
._1e{width:579.597120px;}
._1f{width:687.629520px;}
._1a{width:776.592000px;}
._1c{width:819.370080px;}
._1b{width:869.735520px;}
._19{width:997.878240px;}
.fcb{color:transparent;}
.fc8{color:rgb(144,194,38);}
.fc6{color:rgb(111,145,160);}
.fc5{color:rgb(196,47,26);}
.fc4{color:rgb(175,140,19);}
.fc3{color:rgb(84,160,33);}
.fc9{color:rgb(64,64,64);}
.fc7{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(72,97,19);}
.fca{color:rgb(108,145,29);}
.fc0{color:rgb(63,120,25);}
.fs1f{font-size:31.680000px;}
.fs21{font-size:35.280000px;}
.fs20{font-size:36.000000px;}
.fsc{font-size:40.320000px;}
.fsa{font-size:40.464000px;}
.fs1d{font-size:48.240000px;}
.fs1c{font-size:48.384000px;}
.fs1e{font-size:54.000000px;}
.fs17{font-size:56.160000px;}
.fsb{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs15{font-size:61.200000px;}
.fs13{font-size:64.800000px;}
.fs14{font-size:64.944000px;}
.fs7{font-size:72.000000px;}
.fs10{font-size:72.144000px;}
.fs11{font-size:79.200000px;}
.fs12{font-size:79.344000px;}
.fs19{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.fs16{font-size:84.384000px;}
.fs22{font-size:86.400000px;}
.fs23{font-size:86.544000px;}
.fs1a{font-size:102.240000px;}
.fs1b{font-size:102.384000px;}
.fs0{font-size:108.000000px;}
.fs4{font-size:108.144000px;}
.fs8{font-size:113.840857px;}
.fsf{font-size:120.240000px;}
.fse{font-size:120.384000px;}
.fs3{font-size:144.000000px;}
.fsd{font-size:144.144000px;}
.fs2{font-size:167.760000px;}
.fs1{font-size:167.904000px;}
.fs5{font-size:192.240000px;}
.fs18{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:24.156000px;}
.y67{bottom:36.396000px;}
.y8{bottom:53.676000px;}
.ye0{bottom:53.892000px;}
.y66{bottom:54.396000px;}
.y1a{bottom:54.540000px;}
.ybd{bottom:56.160000px;}
.ycf{bottom:57.024000px;}
.y69{bottom:57.816000px;}
.y36{bottom:62.568000px;}
.yd4{bottom:67.680000px;}
.y1d{bottom:68.472000px;}
.y44{bottom:71.424000px;}
.y68{bottom:79.236000px;}
.y19{bottom:82.620000px;}
.ye4{bottom:84.420000px;}
.ydf{bottom:86.328000px;}
.ybc{bottom:88.596000px;}
.y18{bottom:89.280000px;}
.yc2{bottom:92.016000px;}
.yce{bottom:92.304000px;}
.yb7{bottom:92.880000px;}
.yef{bottom:93.060000px;}
.y43{bottom:94.644000px;}
.y35{bottom:95.004000px;}
.y8e{bottom:98.925000px;}
.y91{bottom:99.000000px;}
.y1c{bottom:101.268000px;}
.yd3{bottom:102.960000px;}
.y78{bottom:106.272000px;}
.y7a{bottom:116.604000px;}
.ye3{bottom:116.820000px;}
.yde{bottom:118.728000px;}
.yee{bottom:120.060000px;}
.ybb{bottom:120.996000px;}
.y17{bottom:124.020000px;}
.ycd{bottom:124.344000px;}
.yc1{bottom:124.416000px;}
.yb6{bottom:125.280000px;}
.y65{bottom:125.460000px;}
.y77{bottom:128.232000px;}
.y1b{bottom:133.668000px;}
.yd2{bottom:135.036000px;}
.y64{bottom:137.880000px;}
.ya3{bottom:139.608000px;}
.y42{bottom:142.992000px;}
.y63{bottom:143.460000px;}
.y79{bottom:148.500000px;}
.ydd{bottom:151.125000px;}
.ye2{bottom:152.130000px;}
.ycc{bottom:156.750000px;}
.y34{bottom:156.855000px;}
.yb5{bottom:157.710000px;}
.y76{bottom:158.835000px;}
.yd1{bottom:170.310000px;}
.y14{bottom:176.970000px;}
.y85{bottom:177.840000px;}
.ydc{bottom:183.525000px;}
.ye1{bottom:184.170000px;}
.y33{bottom:188.535000px;}
.ycb{bottom:189.180000px;}
.y90{bottom:189.540000px;}
.yb4{bottom:190.110000px;}
.ya2{bottom:191.595000px;}
.y41{bottom:199.230000px;}
.yd0{bottom:205.230000px;}
.yf{bottom:208.050000px;}
.y2{bottom:215.970000px;}
.ya1{bottom:217.590000px;}
.y32{bottom:220.935000px;}
.y8d{bottom:221.580000px;}
.yb3{bottom:222.510000px;}
.y5a{bottom:224.670000px;}
.ya8{bottom:226.410000px;}
.y40{bottom:231.630000px;}
.y84{bottom:235.830000px;}
.y13{bottom:242.355000px;}
.y59{bottom:242.670000px;}
.ydb{bottom:249.090000px;}
.yb2{bottom:254.910000px;}
.y7{bottom:256.890000px;}
.y5c{bottom:257.610000px;}
.yf9{bottom:258.810000px;}
.ya7{bottom:258.840000px;}
.y16{bottom:262.410000px;}
.y3f{bottom:264.030000px;}
.y12{bottom:267.555000px;}
.ya0{bottom:269.565000px;}
.y92{bottom:272.955000px;}
.y31{bottom:276.870000px;}
.y83{bottom:278.670000px;}
.y75{bottom:280.110000px;}
.y5b{bottom:284.070000px;}
.yb1{bottom:287.310000px;}
.y15{bottom:287.610000px;}
.ye{bottom:289.080000px;}
.ya6{bottom:291.240000px;}
.y9f{bottom:294.405000px;}
.y3e{bottom:296.430000px;}
.y1{bottom:299.730000px;}
.y74{bottom:302.070000px;}
.y8f{bottom:304.920000px;}
.yf8{bottom:306.510000px;}
.y72{bottom:307.230000px;}
.yed{bottom:307.545000px;}
.y30{bottom:311.655000px;}
.yb0{bottom:319.755000px;}
.y82{bottom:321.510000px;}
.ya5{bottom:323.640000px;}
.y62{bottom:326.550000px;}
.y61{bottom:327.090000px;}
.y6{bottom:327.135000px;}
.y3d{bottom:328.830000px;}
.y73{bottom:334.335000px;}
.y8c{bottom:336.885000px;}
.yf7{bottom:338.940000px;}
.yec{bottom:339.990000px;}
.y60{bottom:340.590000px;}
.y9e{bottom:346.395000px;}
.y8b{bottom:352.050000px;}
.yaf{bottom:352.155000px;}
.y3c{bottom:361.260000px;}
.y2f{bottom:369.285000px;}
.yd{bottom:370.080000px;}
.y9d{bottom:371.265000px;}
.yeb{bottom:372.390000px;}
.y81{bottom:379.335000px;}
.yae{bottom:384.555000px;}
.yf6{bottom:386.280000px;}
.y4{bottom:394.560000px;}
.y9c{bottom:398.370000px;}
.y1f{bottom:399.240000px;}
.y2e{bottom:404.025000px;}
.yea{bottom:404.790000px;}
.y5e{bottom:409.395000px;}
.y26{bottom:409.890000px;}
.y5f{bottom:409.935000px;}
.y47{bottom:413.310000px;}
.y23{bottom:418.140000px;}
.yf5{bottom:418.680000px;}
.y46{bottom:419.970000px;}
.y80{bottom:422.175000px;}
.y9b{bottom:423.255000px;}
.y5d{bottom:423.435000px;}
.y27{bottom:434.310000px;}
.ye9{bottom:437.190000px;}
.y3{bottom:445.350000px;}
.y25{bottom:447.555000px;}
.y9a{bottom:448.095000px;}
.yc{bottom:451.110000px;}
.y24{bottom:454.215000px;}
.y71{bottom:458.250000px;}
.yf4{bottom:466.020000px;}
.y6d{bottom:466.815000px;}
.y2a{bottom:467.355000px;}
.ye8{bottom:469.590000px;}
.y1e{bottom:469.980000px;}
.y3b{bottom:472.785000px;}
.y99{bottom:472.965000px;}
.y70{bottom:477.180000px;}
.y7f{bottom:479.955000px;}
.y56{bottom:488.310000px;}
.y6c{bottom:497.415000px;}
.y98{bottom:497.805000px;}
.yf3{bottom:498.450000px;}
.y57{bottom:500.730000px;}
.y6f{bottom:500.940000px;}
.y29{bottom:502.125000px;}
.yc7{bottom:504.645000px;}
.y6e{bottom:505.260000px;}
.y3a{bottom:505.545000px;}
.y55{bottom:506.310000px;}
.yad{bottom:507.030000px;}
.y49{bottom:514.365000px;}
.y20{bottom:516.270000px;}
.y22{bottom:519.510000px;}
.y7e{bottom:522.825000px;}
.y97{bottom:523.230000px;}
.y50{bottom:525.030000px;}
.yc0{bottom:527.610000px;}
.yb{bottom:532.110000px;}
.yc6{bottom:532.905000px;}
.y4d{bottom:533.265000px;}
.y21{bottom:539.460000px;}
.yac{bottom:541.590000px;}
.yba{bottom:545.475000px;}
.yf2{bottom:545.970000px;}
.y2d{bottom:548.715000px;}
.y51{bottom:549.435000px;}
.y96{bottom:558.825000px;}
.ye6{bottom:559.725000px;}
.yca{bottom:562.110000px;}
.ybf{bottom:562.395000px;}
.y4f{bottom:562.680000px;}
.yc5{bottom:562.785000px;}
.y7d{bottom:565.665000px;}
.y7b{bottom:569.085000px;}
.y4e{bottom:569.340000px;}
.y39{bottom:570.780000px;}
.yb9{bottom:573.015000px;}
.y95{bottom:575.205000px;}
.y87{bottom:575.535000px;}
.yab{bottom:576.330000px;}
.y54{bottom:576.360000px;}
.yf1{bottom:578.370000px;}
.y2c{bottom:584.745000px;}
.y48{bottom:585.075000px;}
.yc9{bottom:587.850000px;}
.ye5{bottom:588.165000px;}
.yc4{bottom:591.450000px;}
.y53{bottom:594.360000px;}
.ybe{bottom:597.135000px;}
.y94{bottom:600.660000px;}
.yb8{bottom:601.275000px;}
.y38{bottom:603.540000px;}
.yaa{bottom:611.070000px;}
.ya{bottom:613.155000px;}
.yc8{bottom:613.770000px;}
.yc3{bottom:619.710000px;}
.yda{bottom:624.885000px;}
.y4a{bottom:631.410000px;}
.y2b{bottom:633.345000px;}
.y4c{bottom:634.650000px;}
.yd7{bottom:635.940000px;}
.y37{bottom:635.970000px;}
.y86{bottom:636.765000px;}
.y93{bottom:652.650000px;}
.y4b{bottom:654.585000px;}
.yd9{bottom:657.285000px;}
.y11{bottom:661.830000px;}
.yd6{bottom:670.710000px;}
.y6b{bottom:672.015000px;}
.y88{bottom:676.905000px;}
.y8a{bottom:679.710000px;}
.y7c{bottom:680.190000px;}
.yf0{bottom:681.630000px;}
.ye7{bottom:686.415000px;}
.yd8{bottom:689.685000px;}
.ya9{bottom:691.890000px;}
.y89{bottom:696.960000px;}
.y10{bottom:702.150000px;}
.y6a{bottom:704.415000px;}
.y28{bottom:704.730000px;}
.y45{bottom:704.910000px;}
.yd5{bottom:705.450000px;}
.ya4{bottom:706.680000px;}
.y9{bottom:736.950000px;}
.y58{bottom:747.900000px;}
.y52{bottom:752.790000px;}
.h36{height:36.721758px;}
.h33{height:36.831375px;}
.h38{height:38.515781px;}
.h39{height:40.655391px;}
.h34{height:41.106445px;}
.h37{height:43.964297px;}
.h2d{height:54.808594px;}
.h12{height:57.867188px;}
.h1c{height:57.937500px;}
.h11{height:61.189805px;}
.h10{height:61.337250px;}
.hb{height:64.126055px;}
.h2e{height:64.235672px;}
.h21{height:66.747656px;}
.h1b{height:70.664062px;}
.h2b{height:70.995234px;}
.h2f{height:71.116594px;}
.h31{height:77.828203px;}
.h32{height:77.937820px;}
.hd{height:79.043798px;}
.h1{height:82.212891px;}
.h6{height:82.322508px;}
.h3c{height:82.676953px;}
.h9{height:82.687500px;}
.h2{height:86.800781px;}
.hc{height:86.906250px;}
.h2c{height:88.275234px;}
.h1e{height:91.019531px;}
.h18{height:105.996094px;}
.h1a{height:106.137422px;}
.h7{height:107.419922px;}
.hf{height:107.563148px;}
.h14{height:108.843750px;}
.h13{height:108.988875px;}
.h15{height:109.726805px;}
.h19{height:110.731430px;}
.h3a{height:112.640625px;}
.he{height:113.546250px;}
.h17{height:117.950273px;}
.h16{height:118.091531px;}
.h3b{height:127.704023px;}
.h4{height:134.830547px;}
.h3{height:134.946281px;}
.h26{height:135.147656px;}
.h23{height:138.747656px;}
.h25{height:145.019531px;}
.h8{height:146.338945px;}
.h28{height:147.179531px;}
.h5{height:147.445312px;}
.h20{height:163.019531px;}
.h30{height:164.425781px;}
.ha{height:164.565352px;}
.h1d{height:173.099531px;}
.h22{height:175.979531px;}
.h24{height:191.307656px;}
.h27{height:192.747656px;}
.h1f{height:196.589016px;}
.h29{height:200.459531px;}
.h3d{height:221.167969px;}
.h35{height:223.920000px;}
.h2a{height:250.139531px;}
.h0{height:810.000000px;}
.w2{width:189.180000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x30{left:5.831979px;}
.x31{left:22.211979px;}
.x47{left:47.663979px;}
.x12{left:56.159979px;}
.x32{left:59.975979px;}
.x41{left:61.847979px;}
.x36{left:63.935979px;}
.x28{left:65.303979px;}
.x33{left:68.795979px;}
.x1c{left:72.143979px;}
.x27{left:77.003979px;}
.x62{left:79.379979px;}
.x74{left:80.567979px;}
.x6e{left:82.295979px;}
.x67{left:83.555979px;}
.x1d{left:87.875979px;}
.xb{left:90.827979px;}
.x5b{left:92.339979px;}
.x6c{left:95.147979px;}
.x9{left:105.623979px;}
.x2c{left:109.259979px;}
.x23{left:111.815979px;}
.x2e{left:113.975979px;}
.x6{left:116.315979px;}
.x5e{left:119.015979px;}
.x1e{left:121.715979px;}
.x6f{left:122.831979px;}
.x5c{left:124.379979px;}
.x6d{left:128.987979px;}
.xa{left:133.163979px;}
.x2d{left:138.383979px;}
.x34{left:142.775979px;}
.x5f{left:159.509979px;}
.x22{left:170.609979px;}
.x21{left:177.764979px;}
.x26{left:183.854979px;}
.x35{left:192.674979px;}
.x8{left:208.364979px;}
.x42{left:224.609979px;}
.x1f{left:230.504979px;}
.x72{left:234.149979px;}
.x7{left:243.464979px;}
.x37{left:255.674979px;}
.x20{left:266.474979px;}
.x2f{left:268.739979px;}
.x45{left:271.769979px;}
.x29{left:287.129979px;}
.x40{left:302.834979px;}
.x3a{left:317.339979px;}
.x3b{left:335.879979px;}
.x24{left:350.429979px;}
.x3{left:353.699979px;}
.x43{left:373.289979px;}
.x38{left:375.554979px;}
.x39{left:376.739979px;}
.x3e{left:386.534979px;}
.x1{left:430.049979px;}
.x44{left:437.009979px;}
.x3d{left:468.209979px;}
.x4{left:471.419979px;}
.x3c{left:482.789979px;}
.x25{left:503.174979px;}
.x2{left:514.619979px;}
.x3f{left:521.714979px;}
.x46{left:537.119979px;}
.x1a{left:564.329979px;}
.x60{left:567.029979px;}
.x5a{left:574.200000px;}
.xc{left:581.144979px;}
.x61{left:600.869979px;}
.x1b{left:622.979979px;}
.x19{left:624.389979px;}
.x16{left:663.944979px;}
.x13{left:667.769979px;}
.x15{left:672.479979px;}
.x6a{left:680.039979px;}
.x63{left:689.324979px;}
.x2a{left:694.154979px;}
.x14{left:696.884979px;}
.x68{left:700.949979px;}
.x2b{left:710.354979px;}
.x6b{left:713.879979px;}
.x64{left:729.824979px;}
.x65{left:730.874979px;}
.x66{left:737.564979px;}
.x71{left:739.109979px;}
.x69{left:741.449979px;}
.x73{left:744.404979px;}
.x70{left:749.909979px;}
.x18{left:825.479979px;}
.x17{left:827.249979px;}
.xd{left:904.829979px;}
.xe{left:908.924979px;}
.x5d{left:912.449979px;}
.xf{left:921.809979px;}
.x50{left:925.739979px;}
.x49{left:947.159979px;}
.x52{left:957.419979px;}
.x4f{left:958.859979px;}
.x48{left:964.439979px;}
.x51{left:978.659979px;}
.x10{left:1054.154979px;}
.x11{left:1070.354979px;}
.x5{left:1092.704979px;}
.x57{left:1111.754979px;}
.x54{left:1114.664979px;}
.x56{left:1118.264979px;}
.x55{left:1131.299979px;}
.x53{left:1176.329979px;}
.x4d{left:1181.189979px;}
.x4c{left:1197.569979px;}
.x4e{left:1209.809979px;}
.x4a{left:1211.429979px;}
.x4b{left:1219.709979px;}
.x59{left:1235.309979px;}
.x58{left:1236.629979px;}
@media print{
.v6{vertical-align:-42.240000pt;}
.v1{vertical-align:-23.680000pt;}
.v4{vertical-align:-19.840000pt;}
.v13{vertical-align:-18.048000pt;}
.v11{vertical-align:-15.360000pt;}
.vb{vertical-align:-14.080000pt;}
.v3{vertical-align:-12.800000pt;}
.v15{vertical-align:-10.240000pt;}
.v17{vertical-align:-8.960000pt;}
.v0{vertical-align:0.000000pt;}
.v18{vertical-align:8.960000pt;}
.v16{vertical-align:12.800000pt;}
.v12{vertical-align:15.360000pt;}
.v14{vertical-align:18.048000pt;}
.v8{vertical-align:19.840000pt;}
.v2{vertical-align:23.680000pt;}
.vd{vertical-align:48.000000pt;}
.vc{vertical-align:60.800000pt;}
.v5{vertical-align:62.080000pt;}
.v9{vertical-align:64.000000pt;}
.v7{vertical-align:72.960000pt;}
.va{vertical-align:75.520000pt;}
.vf{vertical-align:77.440000pt;}
.ve{vertical-align:112.000000pt;}
.v10{vertical-align:141.440000pt;}
.ls5d{letter-spacing:-13.013333pt;}
.ls67{letter-spacing:-7.946667pt;}
.ls70{letter-spacing:-0.656000pt;}
.ls5c{letter-spacing:-0.640000pt;}
.ls72{letter-spacing:-0.303467pt;}
.ls6{letter-spacing:-0.268267pt;}
.ls38{letter-spacing:-0.256000pt;}
.ls53{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.190933pt;}
.ls51{letter-spacing:-0.176000pt;}
.ls59{letter-spacing:-0.105600pt;}
.ls55{letter-spacing:-0.069333pt;}
.ls39{letter-spacing:-0.064000pt;}
.ls58{letter-spacing:-0.051840pt;}
.ls57{letter-spacing:-0.035840pt;}
.ls71{letter-spacing:-0.033280pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.001024pt;}
.ls56{letter-spacing:0.013440pt;}
.ls52{letter-spacing:0.021760pt;}
.ls5b{letter-spacing:0.032000pt;}
.ls6f{letter-spacing:0.033280pt;}
.ls2e{letter-spacing:0.038400pt;}
.ls35{letter-spacing:0.039040pt;}
.ls49{letter-spacing:0.046720pt;}
.ls65{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.082667pt;}
.ls61{letter-spacing:0.121600pt;}
.ls4{letter-spacing:0.127360pt;}
.ls10{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.130688pt;}
.ls68{letter-spacing:0.156267pt;}
.ls44{letter-spacing:0.160000pt;}
.ls31{letter-spacing:0.179200pt;}
.ls3e{letter-spacing:0.181760pt;}
.lsf{letter-spacing:0.189440pt;}
.ls5{letter-spacing:0.192000pt;}
.ls62{letter-spacing:0.198400pt;}
.ls4c{letter-spacing:0.249600pt;}
.ls9{letter-spacing:0.256000pt;}
.ls4a{letter-spacing:0.262933pt;}
.ls54{letter-spacing:0.277333pt;}
.ls48{letter-spacing:0.298880pt;}
.ls45{letter-spacing:0.299520pt;}
.ls2{letter-spacing:0.320000pt;}
.ls3c{letter-spacing:0.375680pt;}
.ls41{letter-spacing:0.383360pt;}
.ls6c{letter-spacing:0.384000pt;}
.ls4d{letter-spacing:0.637440pt;}
.ls5f{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.768000pt;}
.ls46{letter-spacing:1.682560pt;}
.ls37{letter-spacing:4.390400pt;}
.ls36{letter-spacing:4.438400pt;}
.ls34{letter-spacing:4.985600pt;}
.ls26{letter-spacing:5.179008pt;}
.ls15{letter-spacing:7.078400pt;}
.ls50{letter-spacing:10.184960pt;}
.ls6d{letter-spacing:16.480000pt;}
.ls25{letter-spacing:18.229504pt;}
.ls6e{letter-spacing:18.400000pt;}
.ls2d{letter-spacing:21.088000pt;}
.ls30{letter-spacing:21.728000pt;}
.ls1c{letter-spacing:22.080000pt;}
.ls60{letter-spacing:23.840000pt;}
.ls6b{letter-spacing:24.320000pt;}
.ls1a{letter-spacing:25.084288pt;}
.ls27{letter-spacing:26.374400pt;}
.ls33{letter-spacing:26.848000pt;}
.ls20{letter-spacing:26.939008pt;}
.ls2c{letter-spacing:27.328000pt;}
.ls19{letter-spacing:27.825067pt;}
.ls16{letter-spacing:29.996800pt;}
.ls2b{letter-spacing:31.494400pt;}
.ls18{letter-spacing:31.846400pt;}
.ls1d{letter-spacing:32.134400pt;}
.ls32{letter-spacing:32.729600pt;}
.ls21{letter-spacing:33.350400pt;}
.ls14{letter-spacing:34.784000pt;}
.ls1{letter-spacing:34.805333pt;}
.lsa{letter-spacing:34.912000pt;}
.lsb{letter-spacing:44.763392pt;}
.lse{letter-spacing:44.864000pt;}
.ls64{letter-spacing:44.934400pt;}
.ls66{letter-spacing:45.574400pt;}
.ls1f{letter-spacing:46.816000pt;}
.ls28{letter-spacing:47.756800pt;}
.ls22{letter-spacing:55.680896pt;}
.ls29{letter-spacing:55.763200pt;}
.ls17{letter-spacing:62.666667pt;}
.ls2f{letter-spacing:67.136000pt;}
.ls24{letter-spacing:76.234667pt;}
.ls74{letter-spacing:76.380288pt;}
.ls5a{letter-spacing:76.471467pt;}
.ls5e{letter-spacing:76.492800pt;}
.ls63{letter-spacing:76.620800pt;}
.ls69{letter-spacing:76.652800pt;}
.ls3a{letter-spacing:80.430720pt;}
.ls1e{letter-spacing:85.216000pt;}
.ls6a{letter-spacing:86.720000pt;}
.ls73{letter-spacing:98.252800pt;}
.lsc{letter-spacing:106.547200pt;}
.lsd{letter-spacing:106.592000pt;}
.ls23{letter-spacing:183.151360pt;}
.ls2a{letter-spacing:212.672000pt;}
.ls1b{letter-spacing:239.936000pt;}
.ls40{letter-spacing:491.156907pt;}
.ls3f{letter-spacing:536.037547pt;}
.ls3d{letter-spacing:540.404907pt;}
.ls3b{letter-spacing:551.064747pt;}
.ls4e{letter-spacing:560.312747pt;}
.ls43{letter-spacing:582.712747pt;}
.ls42{letter-spacing:602.504107pt;}
.ls47{letter-spacing:603.833387pt;}
.ls4b{letter-spacing:611.122987pt;}
.ls4f{letter-spacing:788.569387pt;}
.wsa1{word-spacing:-96.128000pt;}
.ws19{word-spacing:-96.000000pt;}
.ws22{word-spacing:-80.064000pt;}
.ws39{word-spacing:-75.008000pt;}
.ws1c{word-spacing:-74.912000pt;}
.ws33{word-spacing:-74.880000pt;}
.ws1f{word-spacing:-74.272000pt;}
.ws2e{word-spacing:-72.746667pt;}
.ws2c{word-spacing:-72.736000pt;}
.ws31{word-spacing:-72.672000pt;}
.ws95{word-spacing:-70.598400pt;}
.ws27{word-spacing:-70.528000pt;}
.ws1a{word-spacing:-70.400000pt;}
.ws2b{word-spacing:-69.152000pt;}
.ws1d{word-spacing:-69.024000pt;}
.ws26{word-spacing:-57.600000pt;}
.ws34{word-spacing:-54.400000pt;}
.ws1{word-spacing:-51.434880pt;}
.ws21{word-spacing:-44.006400pt;}
.ws1b{word-spacing:-43.673600pt;}
.wsb5{word-spacing:-43.392000pt;}
.ws5a{word-spacing:-42.880000pt;}
.ws97{word-spacing:-40.544000pt;}
.ws1e{word-spacing:-39.232000pt;}
.ws23{word-spacing:-38.743552pt;}
.ws96{word-spacing:-38.643200pt;}
.ws29{word-spacing:-38.553600pt;}
.ws76{word-spacing:-31.391360pt;}
.ws77{word-spacing:-31.360000pt;}
.ws5c{word-spacing:-31.284693pt;}
.ws25{word-spacing:-30.912000pt;}
.ws2a{word-spacing:-30.496000pt;}
.ws2f{word-spacing:-30.112000pt;}
.ws2{word-spacing:-28.896000pt;}
.ws79{word-spacing:-26.688000pt;}
.ws8c{word-spacing:-24.000000pt;}
.ws8f{word-spacing:-23.968000pt;}
.ws7d{word-spacing:-23.808000pt;}
.ws82{word-spacing:-23.360000pt;}
.ws36{word-spacing:-22.577408pt;}
.ws3{word-spacing:-22.538880pt;}
.ws5d{word-spacing:-22.186880pt;}
.wsd{word-spacing:-21.724928pt;}
.ws4{word-spacing:-21.696000pt;}
.ws35{word-spacing:-19.264000pt;}
.wsb2{word-spacing:-19.040000pt;}
.wsb4{word-spacing:-18.720000pt;}
.wsb3{word-spacing:-18.416533pt;}
.ws5b{word-spacing:-17.111040pt;}
.ws37{word-spacing:-16.951808pt;}
.ws11{word-spacing:-16.000000pt;}
.ws16{word-spacing:-14.656000pt;}
.wsc{word-spacing:-14.464000pt;}
.ws3d{word-spacing:-14.448000pt;}
.ws47{word-spacing:-14.256000pt;}
.ws66{word-spacing:-13.169813pt;}
.ws64{word-spacing:-12.953600pt;}
.ws42{word-spacing:-12.906880pt;}
.ws53{word-spacing:-12.837547pt;}
.ws67{word-spacing:-12.801280pt;}
.ws18{word-spacing:-12.087787pt;}
.ws8{word-spacing:-12.035072pt;}
.wsa{word-spacing:-12.005120pt;}
.ws17{word-spacing:-11.814187pt;}
.ws7{word-spacing:-11.765781pt;}
.ws38{word-spacing:-11.281920pt;}
.ws4a{word-spacing:-9.632000pt;}
.ws28{word-spacing:-8.576000pt;}
.ws54{word-spacing:-8.476160pt;}
.ws9{word-spacing:-8.128768pt;}
.wsb{word-spacing:-8.099840pt;}
.ws32{word-spacing:-4.256000pt;}
.ws69{word-spacing:-2.336640pt;}
.ws6f{word-spacing:-2.103253pt;}
.ws60{word-spacing:-1.968640pt;}
.ws89{word-spacing:-1.916416pt;}
.ws57{word-spacing:-1.842560pt;}
.ws50{word-spacing:-1.530880pt;}
.ws98{word-spacing:-1.523200pt;}
.ws2d{word-spacing:-1.472000pt;}
.ws68{word-spacing:-1.342293pt;}
.ws40{word-spacing:-1.317120pt;}
.wsb1{word-spacing:-1.301760pt;}
.ws4d{word-spacing:-1.200640pt;}
.ws74{word-spacing:-1.146240pt;}
.ws46{word-spacing:-1.083520pt;}
.ws92{word-spacing:-0.960000pt;}
.ws91{word-spacing:-0.704000pt;}
.ws73{word-spacing:-0.646400pt;}
.ws51{word-spacing:-0.639360pt;}
.ws6a{word-spacing:-0.506240pt;}
.ws41{word-spacing:-0.489600pt;}
.ws72{word-spacing:-0.360320pt;}
.ws87{word-spacing:-0.312704pt;}
.ws8e{word-spacing:-0.280917pt;}
.ws13{word-spacing:-0.256000pt;}
.ws88{word-spacing:-0.234624pt;}
.ws90{word-spacing:-0.198784pt;}
.ws43{word-spacing:-0.064000pt;}
.ws62{word-spacing:-0.037120pt;}
.wsa6{word-spacing:-0.010667pt;}
.ws61{word-spacing:-0.006400pt;}
.ws0{word-spacing:0.000000pt;}
.ws15{word-spacing:0.128000pt;}
.ws8b{word-spacing:0.256000pt;}
.ws10{word-spacing:0.384000pt;}
.ws99{word-spacing:0.388224pt;}
.ws14{word-spacing:0.512000pt;}
.ws45{word-spacing:0.570667pt;}
.ws48{word-spacing:0.576000pt;}
.ws6d{word-spacing:0.602880pt;}
.ws5f{word-spacing:0.762880pt;}
.ws4e{word-spacing:0.763093pt;}
.ws8a{word-spacing:0.768000pt;}
.ws6c{word-spacing:0.796160pt;}
.ws3f{word-spacing:0.800000pt;}
.ws12{word-spacing:0.960000pt;}
.ws49{word-spacing:1.744000pt;}
.ws24{word-spacing:1.866667pt;}
.ws4c{word-spacing:1.904000pt;}
.wsf{word-spacing:1.920000pt;}
.ws9c{word-spacing:3.456000pt;}
.ws65{word-spacing:4.359680pt;}
.ws9d{word-spacing:4.448000pt;}
.ws86{word-spacing:4.608000pt;}
.ws9b{word-spacing:4.800000pt;}
.ws55{word-spacing:5.639680pt;}
.ws85{word-spacing:5.792000pt;}
.ws84{word-spacing:6.016000pt;}
.wsac{word-spacing:6.720000pt;}
.ws83{word-spacing:7.008000pt;}
.ws5{word-spacing:7.232000pt;}
.wsab{word-spacing:7.246080pt;}
.wsb0{word-spacing:7.254400pt;}
.wsa8{word-spacing:7.360000pt;}
.ws3a{word-spacing:7.616000pt;}
.wse{word-spacing:7.733504pt;}
.wsa9{word-spacing:7.756800pt;}
.wsaf{word-spacing:7.889920pt;}
.wsad{word-spacing:7.914880pt;}
.wsae{word-spacing:8.174720pt;}
.ws20{word-spacing:8.704000pt;}
.wsaa{word-spacing:8.921387pt;}
.ws8d{word-spacing:16.320000pt;}
.ws7e{word-spacing:17.792000pt;}
.ws7b{word-spacing:17.856000pt;}
.ws7c{word-spacing:18.048000pt;}
.ws7a{word-spacing:18.080000pt;}
.ws3e{word-spacing:18.864000pt;}
.ws9f{word-spacing:19.111616pt;}
.wsa0{word-spacing:19.709056pt;}
.ws9e{word-spacing:20.185600pt;}
.wsa2{word-spacing:20.416000pt;}
.ws9a{word-spacing:20.949333pt;}
.ws6{word-spacing:22.656000pt;}
.ws81{word-spacing:23.520000pt;}
.ws80{word-spacing:23.936000pt;}
.ws7f{word-spacing:24.032000pt;}
.wsa3{word-spacing:28.693333pt;}
.wsa5{word-spacing:29.088000pt;}
.wsa4{word-spacing:32.153600pt;}
.ws94{word-spacing:45.120000pt;}
.ws93{word-spacing:45.696000pt;}
.ws30{word-spacing:61.504000pt;}
.wsa7{word-spacing:68.160000pt;}
.ws3c{word-spacing:88.128000pt;}
.ws6b{word-spacing:328.934613pt;}
.ws6e{word-spacing:377.860907pt;}
.ws78{word-spacing:377.967573pt;}
.ws3b{word-spacing:419.213483pt;}
.ws75{word-spacing:419.814613pt;}
.ws70{word-spacing:457.966933pt;}
.ws5e{word-spacing:461.982293pt;}
.ws52{word-spacing:495.086933pt;}
.ws71{word-spacing:517.074347pt;}
.ws4f{word-spacing:522.194347pt;}
.ws63{word-spacing:536.418987pt;}
.ws44{word-spacing:553.170347pt;}
.ws58{word-spacing:563.927467pt;}
.ws56{word-spacing:565.847467pt;}
.ws4b{word-spacing:789.984000pt;}
.ws59{word-spacing:826.967467pt;}
._2a{margin-left:-15.360000pt;}
._7{margin-left:-12.117333pt;}
._16{margin-left:-11.016448pt;}
._2{margin-left:-9.888000pt;}
._9{margin-left:-8.650795pt;}
._4{margin-left:-7.008000pt;}
._26{margin-left:-6.020736pt;}
._8{margin-left:-4.704000pt;}
._1{margin-left:-3.648000pt;}
._5{margin-left:-2.537216pt;}
._3{margin-left:-0.960000pt;}
._0{width:0.960000pt;}
._b{width:1.952000pt;}
._a{width:3.489493pt;}
._11{width:5.199616pt;}
._29{width:6.713600pt;}
._1d{width:12.730880pt;}
._10{width:17.514667pt;}
._e{width:18.976000pt;}
._12{width:21.728000pt;}
._d{width:22.867883pt;}
._24{width:24.312448pt;}
._c{width:25.223765pt;}
._2b{width:27.089835pt;}
._25{width:29.482667pt;}
._f{width:31.072000pt;}
._17{width:35.008000pt;}
._6{width:36.106027pt;}
._27{width:41.642667pt;}
._22{width:42.922667pt;}
._23{width:48.425216pt;}
._15{width:63.180544pt;}
._14{width:69.376000pt;}
._13{width:71.114667pt;}
._28{width:88.352000pt;}
._20{width:319.086976pt;}
._18{width:485.227307pt;}
._21{width:500.968107pt;}
._1e{width:515.197440pt;}
._1f{width:611.226240pt;}
._1a{width:690.304000pt;}
._1c{width:728.328960pt;}
._1b{width:773.098240pt;}
._19{width:887.002880pt;}
.fs1f{font-size:28.160000pt;}
.fs21{font-size:31.360000pt;}
.fs20{font-size:32.000000pt;}
.fsc{font-size:35.840000pt;}
.fsa{font-size:35.968000pt;}
.fs1d{font-size:42.880000pt;}
.fs1c{font-size:43.008000pt;}
.fs1e{font-size:48.000000pt;}
.fs17{font-size:49.920000pt;}
.fsb{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs15{font-size:54.400000pt;}
.fs13{font-size:57.600000pt;}
.fs14{font-size:57.728000pt;}
.fs7{font-size:64.000000pt;}
.fs10{font-size:64.128000pt;}
.fs11{font-size:70.400000pt;}
.fs12{font-size:70.528000pt;}
.fs19{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.fs16{font-size:75.008000pt;}
.fs22{font-size:76.800000pt;}
.fs23{font-size:76.928000pt;}
.fs1a{font-size:90.880000pt;}
.fs1b{font-size:91.008000pt;}
.fs0{font-size:96.000000pt;}
.fs4{font-size:96.128000pt;}
.fs8{font-size:101.191873pt;}
.fsf{font-size:106.880000pt;}
.fse{font-size:107.008000pt;}
.fs3{font-size:128.000000pt;}
.fsd{font-size:128.128000pt;}
.fs2{font-size:149.120000pt;}
.fs1{font-size:149.248000pt;}
.fs5{font-size:170.880000pt;}
.fs18{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:21.472000pt;}
.y67{bottom:32.352000pt;}
.y8{bottom:47.712000pt;}
.ye0{bottom:47.904000pt;}
.y66{bottom:48.352000pt;}
.y1a{bottom:48.480000pt;}
.ybd{bottom:49.920000pt;}
.ycf{bottom:50.688000pt;}
.y69{bottom:51.392000pt;}
.y36{bottom:55.616000pt;}
.yd4{bottom:60.160000pt;}
.y1d{bottom:60.864000pt;}
.y44{bottom:63.488000pt;}
.y68{bottom:70.432000pt;}
.y19{bottom:73.440000pt;}
.ye4{bottom:75.040000pt;}
.ydf{bottom:76.736000pt;}
.ybc{bottom:78.752000pt;}
.y18{bottom:79.360000pt;}
.yc2{bottom:81.792000pt;}
.yce{bottom:82.048000pt;}
.yb7{bottom:82.560000pt;}
.yef{bottom:82.720000pt;}
.y43{bottom:84.128000pt;}
.y35{bottom:84.448000pt;}
.y8e{bottom:87.933333pt;}
.y91{bottom:88.000000pt;}
.y1c{bottom:90.016000pt;}
.yd3{bottom:91.520000pt;}
.y78{bottom:94.464000pt;}
.y7a{bottom:103.648000pt;}
.ye3{bottom:103.840000pt;}
.yde{bottom:105.536000pt;}
.yee{bottom:106.720000pt;}
.ybb{bottom:107.552000pt;}
.y17{bottom:110.240000pt;}
.ycd{bottom:110.528000pt;}
.yc1{bottom:110.592000pt;}
.yb6{bottom:111.360000pt;}
.y65{bottom:111.520000pt;}
.y77{bottom:113.984000pt;}
.y1b{bottom:118.816000pt;}
.yd2{bottom:120.032000pt;}
.y64{bottom:122.560000pt;}
.ya3{bottom:124.096000pt;}
.y42{bottom:127.104000pt;}
.y63{bottom:127.520000pt;}
.y79{bottom:132.000000pt;}
.ydd{bottom:134.333333pt;}
.ye2{bottom:135.226667pt;}
.ycc{bottom:139.333333pt;}
.y34{bottom:139.426667pt;}
.yb5{bottom:140.186667pt;}
.y76{bottom:141.186667pt;}
.yd1{bottom:151.386667pt;}
.y14{bottom:157.306667pt;}
.y85{bottom:158.080000pt;}
.ydc{bottom:163.133333pt;}
.ye1{bottom:163.706667pt;}
.y33{bottom:167.586667pt;}
.ycb{bottom:168.160000pt;}
.y90{bottom:168.480000pt;}
.yb4{bottom:168.986667pt;}
.ya2{bottom:170.306667pt;}
.y41{bottom:177.093333pt;}
.yd0{bottom:182.426667pt;}
.yf{bottom:184.933333pt;}
.y2{bottom:191.973333pt;}
.ya1{bottom:193.413333pt;}
.y32{bottom:196.386667pt;}
.y8d{bottom:196.960000pt;}
.yb3{bottom:197.786667pt;}
.y5a{bottom:199.706667pt;}
.ya8{bottom:201.253333pt;}
.y40{bottom:205.893333pt;}
.y84{bottom:209.626667pt;}
.y13{bottom:215.426667pt;}
.y59{bottom:215.706667pt;}
.ydb{bottom:221.413333pt;}
.yb2{bottom:226.586667pt;}
.y7{bottom:228.346667pt;}
.y5c{bottom:228.986667pt;}
.yf9{bottom:230.053333pt;}
.ya7{bottom:230.080000pt;}
.y16{bottom:233.253333pt;}
.y3f{bottom:234.693333pt;}
.y12{bottom:237.826667pt;}
.ya0{bottom:239.613333pt;}
.y92{bottom:242.626667pt;}
.y31{bottom:246.106667pt;}
.y83{bottom:247.706667pt;}
.y75{bottom:248.986667pt;}
.y5b{bottom:252.506667pt;}
.yb1{bottom:255.386667pt;}
.y15{bottom:255.653333pt;}
.ye{bottom:256.960000pt;}
.ya6{bottom:258.880000pt;}
.y9f{bottom:261.693333pt;}
.y3e{bottom:263.493333pt;}
.y1{bottom:266.426667pt;}
.y74{bottom:268.506667pt;}
.y8f{bottom:271.040000pt;}
.yf8{bottom:272.453333pt;}
.y72{bottom:273.093333pt;}
.yed{bottom:273.373333pt;}
.y30{bottom:277.026667pt;}
.yb0{bottom:284.226667pt;}
.y82{bottom:285.786667pt;}
.ya5{bottom:287.680000pt;}
.y62{bottom:290.266667pt;}
.y61{bottom:290.746667pt;}
.y6{bottom:290.786667pt;}
.y3d{bottom:292.293333pt;}
.y73{bottom:297.186667pt;}
.y8c{bottom:299.453333pt;}
.yf7{bottom:301.280000pt;}
.yec{bottom:302.213333pt;}
.y60{bottom:302.746667pt;}
.y9e{bottom:307.906667pt;}
.y8b{bottom:312.933333pt;}
.yaf{bottom:313.026667pt;}
.y3c{bottom:321.120000pt;}
.y2f{bottom:328.253333pt;}
.yd{bottom:328.960000pt;}
.y9d{bottom:330.013333pt;}
.yeb{bottom:331.013333pt;}
.y81{bottom:337.186667pt;}
.yae{bottom:341.826667pt;}
.yf6{bottom:343.360000pt;}
.y4{bottom:350.720000pt;}
.y9c{bottom:354.106667pt;}
.y1f{bottom:354.880000pt;}
.y2e{bottom:359.133333pt;}
.yea{bottom:359.813333pt;}
.y5e{bottom:363.906667pt;}
.y26{bottom:364.346667pt;}
.y5f{bottom:364.386667pt;}
.y47{bottom:367.386667pt;}
.y23{bottom:371.680000pt;}
.yf5{bottom:372.160000pt;}
.y46{bottom:373.306667pt;}
.y80{bottom:375.266667pt;}
.y9b{bottom:376.226667pt;}
.y5d{bottom:376.386667pt;}
.y27{bottom:386.053333pt;}
.ye9{bottom:388.613333pt;}
.y3{bottom:395.866667pt;}
.y25{bottom:397.826667pt;}
.y9a{bottom:398.306667pt;}
.yc{bottom:400.986667pt;}
.y24{bottom:403.746667pt;}
.y71{bottom:407.333333pt;}
.yf4{bottom:414.240000pt;}
.y6d{bottom:414.946667pt;}
.y2a{bottom:415.426667pt;}
.ye8{bottom:417.413333pt;}
.y1e{bottom:417.760000pt;}
.y3b{bottom:420.253333pt;}
.y99{bottom:420.413333pt;}
.y70{bottom:424.160000pt;}
.y7f{bottom:426.626667pt;}
.y56{bottom:434.053333pt;}
.y6c{bottom:442.146667pt;}
.y98{bottom:442.493333pt;}
.yf3{bottom:443.066667pt;}
.y57{bottom:445.093333pt;}
.y6f{bottom:445.280000pt;}
.y29{bottom:446.333333pt;}
.yc7{bottom:448.573333pt;}
.y6e{bottom:449.120000pt;}
.y3a{bottom:449.373333pt;}
.y55{bottom:450.053333pt;}
.yad{bottom:450.693333pt;}
.y49{bottom:457.213333pt;}
.y20{bottom:458.906667pt;}
.y22{bottom:461.786667pt;}
.y7e{bottom:464.733333pt;}
.y97{bottom:465.093333pt;}
.y50{bottom:466.693333pt;}
.yc0{bottom:468.986667pt;}
.yb{bottom:472.986667pt;}
.yc6{bottom:473.693333pt;}
.y4d{bottom:474.013333pt;}
.y21{bottom:479.520000pt;}
.yac{bottom:481.413333pt;}
.yba{bottom:484.866667pt;}
.yf2{bottom:485.306667pt;}
.y2d{bottom:487.746667pt;}
.y51{bottom:488.386667pt;}
.y96{bottom:496.733333pt;}
.ye6{bottom:497.533333pt;}
.yca{bottom:499.653333pt;}
.ybf{bottom:499.906667pt;}
.y4f{bottom:500.160000pt;}
.yc5{bottom:500.253333pt;}
.y7d{bottom:502.813333pt;}
.y7b{bottom:505.853333pt;}
.y4e{bottom:506.080000pt;}
.y39{bottom:507.360000pt;}
.yb9{bottom:509.346667pt;}
.y95{bottom:511.293333pt;}
.y87{bottom:511.586667pt;}
.yab{bottom:512.293333pt;}
.y54{bottom:512.320000pt;}
.yf1{bottom:514.106667pt;}
.y2c{bottom:519.773333pt;}
.y48{bottom:520.066667pt;}
.yc9{bottom:522.533333pt;}
.ye5{bottom:522.813333pt;}
.yc4{bottom:525.733333pt;}
.y53{bottom:528.320000pt;}
.ybe{bottom:530.786667pt;}
.y94{bottom:533.920000pt;}
.yb8{bottom:534.466667pt;}
.y38{bottom:536.480000pt;}
.yaa{bottom:543.173333pt;}
.ya{bottom:545.026667pt;}
.yc8{bottom:545.573333pt;}
.yc3{bottom:550.853333pt;}
.yda{bottom:555.453333pt;}
.y4a{bottom:561.253333pt;}
.y2b{bottom:562.973333pt;}
.y4c{bottom:564.133333pt;}
.yd7{bottom:565.280000pt;}
.y37{bottom:565.306667pt;}
.y86{bottom:566.013333pt;}
.y93{bottom:580.133333pt;}
.y4b{bottom:581.853333pt;}
.yd9{bottom:584.253333pt;}
.y11{bottom:588.293333pt;}
.yd6{bottom:596.186667pt;}
.y6b{bottom:597.346667pt;}
.y88{bottom:601.693333pt;}
.y8a{bottom:604.186667pt;}
.y7c{bottom:604.613333pt;}
.yf0{bottom:605.893333pt;}
.ye7{bottom:610.146667pt;}
.yd8{bottom:613.053333pt;}
.ya9{bottom:615.013333pt;}
.y89{bottom:619.520000pt;}
.y10{bottom:624.133333pt;}
.y6a{bottom:626.146667pt;}
.y28{bottom:626.426667pt;}
.y45{bottom:626.586667pt;}
.yd5{bottom:627.066667pt;}
.ya4{bottom:628.160000pt;}
.y9{bottom:655.066667pt;}
.y58{bottom:664.800000pt;}
.y52{bottom:669.146667pt;}
.h36{height:32.641562pt;}
.h33{height:32.739000pt;}
.h38{height:34.236250pt;}
.h39{height:36.138125pt;}
.h34{height:36.539062pt;}
.h37{height:39.079375pt;}
.h2d{height:48.718750pt;}
.h12{height:51.437500pt;}
.h1c{height:51.500000pt;}
.h11{height:54.390938pt;}
.h10{height:54.522000pt;}
.hb{height:57.000937pt;}
.h2e{height:57.098375pt;}
.h21{height:59.331250pt;}
.h1b{height:62.812500pt;}
.h2b{height:63.106875pt;}
.h2f{height:63.214750pt;}
.h31{height:69.180625pt;}
.h32{height:69.278062pt;}
.hd{height:70.261154pt;}
.h1{height:73.078125pt;}
.h6{height:73.175562pt;}
.h3c{height:73.490625pt;}
.h9{height:73.500000pt;}
.h2{height:77.156250pt;}
.hc{height:77.250000pt;}
.h2c{height:78.466875pt;}
.h1e{height:80.906250pt;}
.h18{height:94.218750pt;}
.h1a{height:94.344375pt;}
.h7{height:95.484375pt;}
.hf{height:95.611688pt;}
.h14{height:96.750000pt;}
.h13{height:96.879000pt;}
.h15{height:97.534937pt;}
.h19{height:98.427937pt;}
.h3a{height:100.125000pt;}
.he{height:100.930000pt;}
.h17{height:104.844687pt;}
.h16{height:104.970250pt;}
.h3b{height:113.514687pt;}
.h4{height:119.849375pt;}
.h3{height:119.952250pt;}
.h26{height:120.131250pt;}
.h23{height:123.331250pt;}
.h25{height:128.906250pt;}
.h8{height:130.079063pt;}
.h28{height:130.826250pt;}
.h5{height:131.062500pt;}
.h20{height:144.906250pt;}
.h30{height:146.156250pt;}
.ha{height:146.280312pt;}
.h1d{height:153.866250pt;}
.h22{height:156.426250pt;}
.h24{height:170.051250pt;}
.h27{height:171.331250pt;}
.h1f{height:174.745792pt;}
.h29{height:178.186250pt;}
.h3d{height:196.593750pt;}
.h35{height:199.040000pt;}
.h2a{height:222.346250pt;}
.h0{height:720.000000pt;}
.w2{width:168.160000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x30{left:5.183981pt;}
.x31{left:19.743981pt;}
.x47{left:42.367981pt;}
.x12{left:49.919981pt;}
.x32{left:53.311981pt;}
.x41{left:54.975981pt;}
.x36{left:56.831981pt;}
.x28{left:58.047981pt;}
.x33{left:61.151981pt;}
.x1c{left:64.127981pt;}
.x27{left:68.447981pt;}
.x62{left:70.559981pt;}
.x74{left:71.615981pt;}
.x6e{left:73.151981pt;}
.x67{left:74.271981pt;}
.x1d{left:78.111981pt;}
.xb{left:80.735981pt;}
.x5b{left:82.079981pt;}
.x6c{left:84.575981pt;}
.x9{left:93.887981pt;}
.x2c{left:97.119981pt;}
.x23{left:99.391981pt;}
.x2e{left:101.311981pt;}
.x6{left:103.391981pt;}
.x5e{left:105.791981pt;}
.x1e{left:108.191981pt;}
.x6f{left:109.183981pt;}
.x5c{left:110.559981pt;}
.x6d{left:114.655981pt;}
.xa{left:118.367981pt;}
.x2d{left:123.007981pt;}
.x34{left:126.911981pt;}
.x5f{left:141.786648pt;}
.x22{left:151.653314pt;}
.x21{left:158.013314pt;}
.x26{left:163.426648pt;}
.x35{left:171.266648pt;}
.x8{left:185.213314pt;}
.x42{left:199.653314pt;}
.x1f{left:204.893314pt;}
.x72{left:208.133314pt;}
.x7{left:216.413314pt;}
.x37{left:227.266648pt;}
.x20{left:236.866648pt;}
.x2f{left:238.879981pt;}
.x45{left:241.573314pt;}
.x29{left:255.226648pt;}
.x40{left:269.186648pt;}
.x3a{left:282.079981pt;}
.x3b{left:298.559981pt;}
.x24{left:311.493314pt;}
.x3{left:314.399981pt;}
.x43{left:331.813314pt;}
.x38{left:333.826648pt;}
.x39{left:334.879981pt;}
.x3e{left:343.586648pt;}
.x1{left:382.266648pt;}
.x44{left:388.453314pt;}
.x3d{left:416.186648pt;}
.x4{left:419.039981pt;}
.x3c{left:429.146648pt;}
.x25{left:447.266648pt;}
.x2{left:457.439981pt;}
.x3f{left:463.746648pt;}
.x46{left:477.439981pt;}
.x1a{left:501.626648pt;}
.x60{left:504.026648pt;}
.x5a{left:510.400000pt;}
.xc{left:516.573314pt;}
.x61{left:534.106648pt;}
.x1b{left:553.759981pt;}
.x19{left:555.013314pt;}
.x16{left:590.173314pt;}
.x13{left:593.573314pt;}
.x15{left:597.759981pt;}
.x6a{left:604.479981pt;}
.x63{left:612.733314pt;}
.x2a{left:617.026648pt;}
.x14{left:619.453314pt;}
.x68{left:623.066648pt;}
.x2b{left:631.426648pt;}
.x6b{left:634.559981pt;}
.x64{left:648.733314pt;}
.x65{left:649.666648pt;}
.x66{left:655.613314pt;}
.x71{left:656.986648pt;}
.x69{left:659.066648pt;}
.x73{left:661.693314pt;}
.x70{left:666.586648pt;}
.x18{left:733.759981pt;}
.x17{left:735.333314pt;}
.xd{left:804.293314pt;}
.xe{left:807.933314pt;}
.x5d{left:811.066648pt;}
.xf{left:819.386648pt;}
.x50{left:822.879981pt;}
.x49{left:841.919981pt;}
.x52{left:851.039981pt;}
.x4f{left:852.319981pt;}
.x48{left:857.279981pt;}
.x51{left:869.919981pt;}
.x10{left:937.026648pt;}
.x11{left:951.426648pt;}
.x5{left:971.293314pt;}
.x57{left:988.226648pt;}
.x54{left:990.813314pt;}
.x56{left:994.013314pt;}
.x55{left:1005.599981pt;}
.x53{left:1045.626648pt;}
.x4d{left:1049.946648pt;}
.x4c{left:1064.506648pt;}
.x4e{left:1075.386648pt;}
.x4a{left:1076.826648pt;}
.x4b{left:1084.186648pt;}
.x59{left:1098.053314pt;}
.x58{left:1099.226648pt;}
}




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