
    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_36fe224affad0a341543c338.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.918000;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_ef2be8d678ccc91be443c715.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.905000;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_5d0c017ea8edd0dd40edb0be.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.708000;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_2bf95ef974106c3cb8f47faa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.716000;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_a5c7c94eed18019469e2b06d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666000;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_8b3e52404b38abab5b0a2f3a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.699000;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_f55e95af57a04ad6606478c9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.888000;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_856cfdc48ca8615fb5f278b0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.514000;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_6f22037f059577fe8c254c86.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.748000;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_b9d895330ac598cc963abb1b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.735000;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_491e9e09762c2960d14adc54.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.729581;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_97cc75343bf31735f550dabb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.694000;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_6dc85cedb83302ee287a33c2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.718000;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_9bb2fbac060e166f649d9928.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.729000;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_c8611a79647df8336540c358.woff2')format("woff");}.fff{font-family:fff;line-height:0.873000;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_214f326c08203426002e9735.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666000;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_9c390459b2a024cd936209d5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.699000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.150624,-0.199530,0.199530,0.150624,0,0);-ms-transform:matrix(0.150624,-0.199530,0.199530,0.150624,0,0);-webkit-transform:matrix(0.150624,-0.199530,0.199530,0.150624,0,0);}
.m1{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);}
.m5{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.281282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281282,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v8{vertical-align:-17.006278px;}
.va{vertical-align:-12.585959px;}
.v5{vertical-align:-3.060936px;}
.v2{vertical-align:-1.703904px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.021878px;}
.v3{vertical-align:5.777375px;}
.v4{vertical-align:7.483619px;}
.v1{vertical-align:8.842979px;}
.v9{vertical-align:18.370318px;}
.v6{vertical-align:21.745317px;}
.ls14{letter-spacing:-0.009564px;}
.ls13{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.001529px;}
.ls1d{letter-spacing:0.029062px;}
.ls1f{letter-spacing:0.046200px;}
.ls16{letter-spacing:0.052200px;}
.ls2d{letter-spacing:0.096931px;}
.ls20{letter-spacing:0.102420px;}
.ls10{letter-spacing:0.158898px;}
.ls1c{letter-spacing:0.161905px;}
.ls24{letter-spacing:0.168138px;}
.ls19{letter-spacing:0.196458px;}
.ls18{letter-spacing:0.198798px;}
.ls22{letter-spacing:0.214260px;}
.lsd{letter-spacing:0.258236px;}
.ls30{letter-spacing:0.259634px;}
.ls2c{letter-spacing:0.274050px;}
.ls1e{letter-spacing:0.274099px;}
.ls1a{letter-spacing:0.281119px;}
.ls2a{letter-spacing:2.470376px;}
.lse{letter-spacing:2.810216px;}
.ls5{letter-spacing:2.887705px;}
.ls21{letter-spacing:2.983410px;}
.lsc{letter-spacing:2.987604px;}
.ls1b{letter-spacing:2.989944px;}
.ls27{letter-spacing:4.171916px;}
.ls2b{letter-spacing:4.511756px;}
.ls3{letter-spacing:4.924405px;}
.ls2{letter-spacing:4.926745px;}
.ls0{letter-spacing:6.064919px;}
.ls28{letter-spacing:9.271915px;}
.ls29{letter-spacing:9.274255px;}
.ls26{letter-spacing:9.614155px;}
.ls35{letter-spacing:12.351719px;}
.ls9{letter-spacing:14.476966px;}
.lsa{letter-spacing:14.812126px;}
.ls2e{letter-spacing:15.406289px;}
.ls25{letter-spacing:16.781313px;}
.ls31{letter-spacing:16.783653px;}
.ls8{letter-spacing:16.955241px;}
.lsf{letter-spacing:17.233054px;}
.ls6{letter-spacing:19.747505px;}
.ls4{letter-spacing:20.087345px;}
.lsb{letter-spacing:20.256706px;}
.ls2f{letter-spacing:23.911768px;}
.ls12{letter-spacing:35.771851px;}
.ls11{letter-spacing:35.774251px;}
.ls7{letter-spacing:85.079990px;}
.ls1{letter-spacing:85.084790px;}
.ls33{letter-spacing:87.859190px;}
.ls34{letter-spacing:88.199390px;}
.ls32{letter-spacing:166.435780px;}
.ls23{letter-spacing:295.685302px;}
.ls15{letter-spacing:400.191553px;}
.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;}
}
.ws10a{word-spacing:-166.486590px;}
.ws10b{word-spacing:-9.334596px;}
.ws0{word-spacing:-0.346690px;}
.ws7{word-spacing:-0.059776px;}
.ws6b{word-spacing:-0.050809px;}
.ws54{word-spacing:-0.041843px;}
.ws10c{word-spacing:-0.035565px;}
.ws7c{word-spacing:0.000000px;}
.wsb{word-spacing:8.201112px;}
.ws6f{word-spacing:11.660925px;}
.ws77{word-spacing:11.696289px;}
.ws71{word-spacing:11.785847px;}
.ws74{word-spacing:11.883188px;}
.ws70{word-spacing:11.897499px;}
.ws73{word-spacing:11.947568px;}
.ws117{word-spacing:12.326260px;}
.ws2{word-spacing:12.470154px;}
.wseb{word-spacing:12.713375px;}
.wsf8{word-spacing:12.753514px;}
.ws102{word-spacing:13.444773px;}
.ws5b{word-spacing:14.250860px;}
.ws22{word-spacing:14.381583px;}
.ws83{word-spacing:14.400060px;}
.wsb5{word-spacing:14.483626px;}
.ws23{word-spacing:14.634201px;}
.ws52{word-spacing:14.848975px;}
.ws68{word-spacing:14.896900px;}
.ws82{word-spacing:14.974802px;}
.ws21{word-spacing:14.985263px;}
.ws65{word-spacing:15.054967px;}
.ws53{word-spacing:15.334030px;}
.ws10e{word-spacing:15.450111px;}
.ws110{word-spacing:15.450161px;}
.ws10f{word-spacing:15.531579px;}
.wsb6{word-spacing:16.420594px;}
.ws6a{word-spacing:16.461772px;}
.wsd3{word-spacing:16.492258px;}
.wsf7{word-spacing:16.650173px;}
.wsd0{word-spacing:16.670598px;}
.ws12{word-spacing:16.688389px;}
.wsd1{word-spacing:16.715768px;}
.ws107{word-spacing:16.717089px;}
.wsc7{word-spacing:16.730451px;}
.ws103{word-spacing:16.730781px;}
.ws69{word-spacing:16.756517px;}
.wsc5{word-spacing:16.767339px;}
.wsf2{word-spacing:16.781413px;}
.ws66{word-spacing:16.783779px;}
.wsd2{word-spacing:16.798129px;}
.wscb{word-spacing:16.801635px;}
.wsc3{word-spacing:16.810667px;}
.wsca{word-spacing:16.811797px;}
.ws118{word-spacing:16.811848px;}
.wsc6{word-spacing:16.811899px;}
.ws6c{word-spacing:16.813626px;}
.wsc{word-spacing:16.818402px;}
.wsc2{word-spacing:16.833950px;}
.wscc{word-spacing:16.848481px;}
.ws28{word-spacing:16.862515px;}
.wsfc{word-spacing:16.863470px;}
.ws101{word-spacing:16.864638px;}
.ws67{word-spacing:16.865100px;}
.ws7b{word-spacing:16.879424px;}
.ws6d{word-spacing:16.888062px;}
.wscd{word-spacing:16.889535px;}
.ws105{word-spacing:16.908842px;}
.wsec{word-spacing:16.920275px;}
.wsce{word-spacing:16.939328px;}
.wsea{word-spacing:16.950455px;}
.wse8{word-spacing:16.975809px;}
.ws6e{word-spacing:17.005431px;}
.wsfa{word-spacing:17.014932px;}
.wse9{word-spacing:17.015085px;}
.wsc4{word-spacing:17.040387px;}
.ws108{word-spacing:17.040540px;}
.ws104{word-spacing:17.078530px;}
.ws7a{word-spacing:17.082712px;}
.wsd4{word-spacing:17.082864px;}
.wscf{word-spacing:17.137230px;}
.wsc9{word-spacing:17.152015px;}
.ws26{word-spacing:17.180522px;}
.ws100{word-spacing:17.264507px;}
.wsc8{word-spacing:17.295297px;}
.ws3e{word-spacing:17.335221px;}
.ws27{word-spacing:17.366610px;}
.wsad{word-spacing:17.544435px;}
.ws40{word-spacing:17.663673px;}
.ws3f{word-spacing:17.700054px;}
.ws41{word-spacing:17.700569px;}
.ws81{word-spacing:18.178356px;}
.wse1{word-spacing:18.434439px;}
.wsfb{word-spacing:18.488551px;}
.wse2{word-spacing:18.744705px;}
.ws31{word-spacing:18.799424px;}
.wsc1{word-spacing:18.799484px;}
.wsc0{word-spacing:18.858841px;}
.wse3{word-spacing:18.926984px;}
.wsac{word-spacing:19.032130px;}
.wsaa{word-spacing:19.055264px;}
.ws91{word-spacing:19.055323px;}
.ws92{word-spacing:19.056877px;}
.ws30{word-spacing:19.067338px;}
.wsab{word-spacing:19.392738px;}
.ws57{word-spacing:19.434061px;}
.ws64{word-spacing:19.444044px;}
.wsb7{word-spacing:19.491924px;}
.ws116{word-spacing:19.496352px;}
.ws115{word-spacing:19.611841px;}
.wsb8{word-spacing:19.677229px;}
.ws37{word-spacing:19.702693px;}
.ws8e{word-spacing:19.714170px;}
.ws45{word-spacing:19.737303px;}
.ws8a{word-spacing:19.760622px;}
.ws8c{word-spacing:19.760735px;}
.ws90{word-spacing:19.786379px;}
.wsa6{word-spacing:19.786797px;}
.ws89{word-spacing:19.826848px;}
.wsb9{word-spacing:19.838682px;}
.ws93{word-spacing:19.880764px;}
.ws2e{word-spacing:19.881601px;}
.ws97{word-spacing:19.899295px;}
.ws1f{word-spacing:19.923504px;}
.ws1e{word-spacing:19.946637px;}
.ws6{word-spacing:19.971982px;}
.ws62{word-spacing:19.994398px;}
.wsa{word-spacing:20.019324px;}
.ws3a{word-spacing:20.030562px;}
.ws2d{word-spacing:20.030622px;}
.ws9f{word-spacing:20.050984px;}
.ws46{word-spacing:20.065830px;}
.ws4f{word-spacing:20.126621px;}
.wse6{word-spacing:20.135988px;}
.ws8{word-spacing:20.189292px;}
.ws25{word-spacing:20.199875px;}
.wsbd{word-spacing:20.215866px;}
.ws9e{word-spacing:20.251911px;}
.ws4c{word-spacing:20.300688px;}
.wse5{word-spacing:20.390797px;}
.ws51{word-spacing:20.408504px;}
.ws9{word-spacing:20.461742px;}
.ws86{word-spacing:20.712602px;}
.ws14{word-spacing:20.712721px;}
.ws1a{word-spacing:20.784930px;}
.ws13{word-spacing:20.897906px;}
.ws19{word-spacing:21.101502px;}
.ws7e{word-spacing:21.195887px;}
.wse4{word-spacing:21.323603px;}
.wse{word-spacing:21.357000px;}
.ws48{word-spacing:21.394641px;}
.ws2a{word-spacing:21.418073px;}
.wsa9{word-spacing:21.488369px;}
.wsf{word-spacing:21.489087px;}
.wsf9{word-spacing:21.574397px;}
.wsa7{word-spacing:21.579685px;}
.wsa3{word-spacing:21.580065px;}
.wsa1{word-spacing:21.650660px;}
.ws2b{word-spacing:21.656997px;}
.ws7d{word-spacing:21.757897px;}
.ws5a{word-spacing:21.775651px;}
.wsa8{word-spacing:21.776488px;}
.ws49{word-spacing:21.786262px;}
.wsf1{word-spacing:21.807713px;}
.ws38{word-spacing:21.848697px;}
.ws39{word-spacing:21.920487px;}
.ws4a{word-spacing:21.955934px;}
.ws2c{word-spacing:21.956129px;}
.ws35{word-spacing:22.309387px;}
.wsbc{word-spacing:22.325646px;}
.ws5f{word-spacing:22.416505px;}
.ws1d{word-spacing:22.432883px;}
.wsbb{word-spacing:22.458527px;}
.wsba{word-spacing:22.505033px;}
.wse0{word-spacing:22.573407px;}
.wsa2{word-spacing:22.649092px;}
.ws5e{word-spacing:22.703009px;}
.ws58{word-spacing:22.988976px;}
.wsbf{word-spacing:23.114923px;}
.wsbe{word-spacing:23.306803px;}
.ws44{word-spacing:23.396765px;}
.ws43{word-spacing:23.431315px;}
.ws4e{word-spacing:23.568739px;}
.ws42{word-spacing:23.652843px;}
.wsa5{word-spacing:23.953096px;}
.ws112{word-spacing:23.955570px;}
.ws32{word-spacing:24.006297px;}
.ws113{word-spacing:24.034178px;}
.ws114{word-spacing:24.038541px;}
.ws34{word-spacing:24.136787px;}
.ws111{word-spacing:24.201151px;}
.ws87{word-spacing:24.204214px;}
.ws47{word-spacing:24.502135px;}
.ws85{word-spacing:24.860729px;}
.wsfe{word-spacing:24.977495px;}
.ws59{word-spacing:25.050995px;}
.wsdd{word-spacing:25.074337px;}
.wsdf{word-spacing:25.252474px;}
.wsff{word-spacing:25.262839px;}
.wsdc{word-spacing:25.378430px;}
.ws95{word-spacing:25.477493px;}
.wsde{word-spacing:25.511093px;}
.ws60{word-spacing:25.650006px;}
.wsf3{word-spacing:25.653410px;}
.ws8f{word-spacing:26.331926px;}
.ws63{word-spacing:26.515736px;}
.wsa4{word-spacing:26.965129px;}
.ws9b{word-spacing:27.197715px;}
.ws9c{word-spacing:27.402595px;}
.ws9d{word-spacing:27.514167px;}
.wsed{word-spacing:27.747968px;}
.wse7{word-spacing:27.949376px;}
.wsae{word-spacing:27.986992px;}
.wsb2{word-spacing:28.219639px;}
.ws5d{word-spacing:29.576665px;}
.wsb1{word-spacing:30.036638px;}
.ws96{word-spacing:30.048832px;}
.wsdb{word-spacing:30.079703px;}
.wsa0{word-spacing:30.145310px;}
.wsda{word-spacing:30.237161px;}
.ws94{word-spacing:30.514603px;}
.ws5c{word-spacing:30.598528px;}
.ws15{word-spacing:30.694468px;}
.ws5{word-spacing:31.514926px;}
.ws3{word-spacing:31.522864px;}
.wsf0{word-spacing:31.670082px;}
.ws4{word-spacing:31.811335px;}
.wsd8{word-spacing:31.888409px;}
.wsd9{word-spacing:31.898012px;}
.wsd7{word-spacing:31.995515px;}
.ws10{word-spacing:32.171882px;}
.wsb0{word-spacing:32.184195px;}
.ws4d{word-spacing:32.320902px;}
.wsf6{word-spacing:32.359461px;}
.ws33{word-spacing:32.451452px;}
.wsf4{word-spacing:32.496279px;}
.wsf5{word-spacing:32.685103px;}
.ws1c{word-spacing:33.426870px;}
.ws29{word-spacing:33.682650px;}
.ws61{word-spacing:33.826171px;}
.ws36{word-spacing:34.657889px;}
.wsfd{word-spacing:35.414211px;}
.ws7f{word-spacing:35.703185px;}
.ws50{word-spacing:36.361792px;}
.ws106{word-spacing:36.389545px;}
.ws80{word-spacing:36.594558px;}
.ws17{word-spacing:36.720386px;}
.wsee{word-spacing:36.954340px;}
.wsef{word-spacing:37.145528px;}
.ws84{word-spacing:37.472721px;}
.ws16{word-spacing:38.154761px;}
.ws55{word-spacing:38.433205px;}
.ws1b{word-spacing:40.360660px;}
.wsaf{word-spacing:40.365681px;}
.wsb4{word-spacing:41.035825px;}
.wsb3{word-spacing:41.191660px;}
.ws18{word-spacing:41.555574px;}
.ws88{word-spacing:42.403969px;}
.ws3b{word-spacing:42.984629px;}
.ws98{word-spacing:42.995986px;}
.ws3d{word-spacing:43.194142px;}
.ws3c{word-spacing:43.217105px;}
.ws99{word-spacing:43.229227px;}
.ws9a{word-spacing:43.335419px;}
.ws4b{word-spacing:43.641204px;}
.ws56{word-spacing:44.203991px;}
.ws8b{word-spacing:44.360125px;}
.ws8d{word-spacing:44.676697px;}
.wsd6{word-spacing:51.100268px;}
.ws24{word-spacing:55.243790px;}
.ws11{word-spacing:55.246190px;}
.wsd5{word-spacing:55.287590px;}
.ws10d{word-spacing:57.748714px;}
.ws20{word-spacing:59.925098px;}
.wsd{word-spacing:59.973047px;}
.ws109{word-spacing:106.299675px;}
.ws1{word-spacing:115.586890px;}
.ws2f{word-spacing:123.275382px;}
.ws72{word-spacing:130.399629px;}
.ws76{word-spacing:337.576801px;}
.ws79{word-spacing:337.935463px;}
.ws78{word-spacing:345.811326px;}
.ws75{word-spacing:409.891286px;}
._21{margin-left:-166.681478px;}
._22{margin-left:-88.102348px;}
._e{margin-left:-6.499460px;}
._14{margin-left:-1.612443px;}
._0{width:1.664078px;}
._20{width:13.816188px;}
._a{width:15.743254px;}
._2{width:17.052582px;}
._b{width:18.223342px;}
._16{width:19.564266px;}
._9{width:21.015485px;}
._3{width:22.550935px;}
._8{width:23.768459px;}
._c{width:25.141796px;}
._10{width:26.247356px;}
._12{width:27.761408px;}
._17{width:29.284242px;}
._11{width:30.783934px;}
._1{width:32.771372px;}
._7{width:34.648108px;}
._d{width:35.911159px;}
._4{width:38.013588px;}
._6{width:41.490936px;}
._5{width:42.661478px;}
._f{width:44.977048px;}
._13{width:71.799488px;}
._19{width:79.628118px;}
._23{width:83.608460px;}
._25{width:102.355629px;}
._24{width:114.950721px;}
._18{width:125.738021px;}
._1d{width:139.825479px;}
._1c{width:143.007558px;}
._1a{width:179.818311px;}
._1e{width:182.050409px;}
._1b{width:202.733664px;}
._1f{width:226.965737px;}
._15{width:371.575605px;}
.fc3{color:rgb(255,255,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(204,204,204);}
.fse{font-size:23.707200px;}
.fsd{font-size:33.869400px;}
.fsc{font-size:35.565000px;}
.fs9{font-size:35.866200px;}
.fs4{font-size:36.463200px;}
.fs7{font-size:39.846000px;}
.fs6{font-size:41.842800px;}
.fsa{font-size:47.821200px;}
.fs5{font-size:50.809200px;}
.fs1{font-size:56.787600px;}
.fs2{font-size:59.775600px;}
.fsb{font-size:72.000000px;}
.fs8{font-size:89.664000px;}
.fs3{font-size:95.641800px;}
.fs0{font-size:346.689559px;}
.y0{bottom:0.000000px;}
.y79{bottom:13.690965px;}
.y7a{bottom:15.817335px;}
.y78{bottom:31.379250px;}
.y77{bottom:49.067550px;}
.y76{bottom:68.286015px;}
.y118{bottom:68.287500px;}
.y116{bottom:113.697600px;}
.y75{bottom:115.397115px;}
.y6c{bottom:115.487671px;}
.y6d{bottom:115.658179px;}
.y115{bottom:115.823400px;}
.y114{bottom:121.521150px;}
.y1{bottom:127.984050px;}
.y74{bottom:130.364295px;}
.y112{bottom:132.831450px;}
.y6a{bottom:134.110452px;}
.y6b{bottom:134.365921px;}
.y113{bottom:134.957250px;}
.y111{bottom:134.957295px;}
.y73{bottom:145.331475px;}
.y68{bottom:152.818794px;}
.y69{bottom:152.989302px;}
.y10f{bottom:160.044195px;}
.y71{bottom:160.298670px;}
.y72{bottom:160.809021px;}
.y66{bottom:171.527136px;}
.y67{bottom:171.697644px;}
.y70{bottom:175.180305px;}
.y10e{bottom:177.052500px;}
.y10b{bottom:179.177250px;}
.y110{bottom:179.177445px;}
.y10d{bottom:179.178000px;}
.y10c{bottom:184.791000px;}
.y6e{bottom:190.147500px;}
.y64{bottom:190.149916px;}
.y65{bottom:190.405386px;}
.y6f{bottom:190.658438px;}
.y109{bottom:198.312150px;}
.y62{bottom:208.858259px;}
.y63{bottom:209.028767px;}
.y108{bottom:215.319000px;}
.y105{bottom:217.444950px;}
.y10a{bottom:217.445400px;}
.y107{bottom:217.446000px;}
.y106{bottom:223.057500px;}
.y60{bottom:227.566601px;}
.y61{bottom:227.737108px;}
.y103{bottom:236.578650px;}
.y5e{bottom:246.189381px;}
.y27{bottom:246.195419px;}
.y5f{bottom:246.444851px;}
.y102{bottom:253.587000px;}
.yff{bottom:255.711750px;}
.y104{bottom:255.711900px;}
.y101{bottom:255.712500px;}
.y100{bottom:261.325500px;}
.y26{bottom:264.818799px;}
.y5c{bottom:264.897723px;}
.y5d{bottom:265.068231px;}
.yfd{bottom:274.761150px;}
.y25{bottom:283.527128px;}
.y5a{bottom:283.608405px;}
.y5b{bottom:283.778913px;}
.yfc{bottom:291.855000px;}
.yfe{bottom:293.894400px;}
.yfb{bottom:293.895000px;}
.yf9{bottom:293.896350px;}
.yfa{bottom:299.593500px;}
.y58{bottom:302.231786px;}
.y24{bottom:302.234870px;}
.y59{bottom:302.487255px;}
.yf8{bottom:313.030650px;}
.y23{bottom:320.858250px;}
.y56{bottom:320.939527px;}
.y57{bottom:321.110036px;}
.yf7{bottom:330.037500px;}
.yf4{bottom:332.163450px;}
.yf6{bottom:332.164500px;}
.yf5{bottom:337.861500px;}
.y22{bottom:339.566804px;}
.y54{bottom:339.647870px;}
.y55{bottom:339.818378px;}
.yf2{bottom:351.297150px;}
.y52{bottom:358.271250px;}
.y21{bottom:358.274546px;}
.y53{bottom:358.526720px;}
.yf1{bottom:368.305500px;}
.yee{bottom:370.430250px;}
.yf3{bottom:370.430400px;}
.yf0{bottom:370.431000px;}
.yef{bottom:376.129500px;}
.y20{bottom:376.897974px;}
.y50{bottom:376.979831px;}
.y51{bottom:377.150339px;}
.yec{bottom:389.565150px;}
.y1f{bottom:395.605716px;}
.y4e{bottom:395.701650px;}
.y4f{bottom:395.872158px;}
.yeb{bottom:406.573500px;}
.yed{bottom:408.698400px;}
.yea{bottom:408.699000px;}
.ye8{bottom:408.700050px;}
.ye9{bottom:414.312000px;}
.y4c{bottom:414.325830px;}
.y4d{bottom:414.495752px;}
.ye6{bottom:427.833150px;}
.y4a{bottom:433.033572px;}
.y4b{bottom:433.204080px;}
.ye5{bottom:444.841500px;}
.ye7{bottom:446.966400px;}
.ye2{bottom:446.966850px;}
.ye4{bottom:446.967000px;}
.y1e{bottom:451.730958px;}
.y48{bottom:451.741914px;}
.y49{bottom:451.912422px;}
.ye3{bottom:452.580000px;}
.ye1{bottom:466.101150px;}
.y1d{bottom:470.353800px;}
.y46{bottom:470.364756px;}
.y47{bottom:470.535264px;}
.ye0{bottom:483.108000px;}
.ydd{bottom:485.233965px;}
.ydf{bottom:485.235000px;}
.y44{bottom:489.073098px;}
.y45{bottom:489.243606px;}
.y1c{bottom:489.827400px;}
.yde{bottom:490.846500px;}
.y1a{bottom:505.474500px;}
.y19{bottom:507.775886px;}
.y42{bottom:507.781440px;}
.y1b{bottom:507.940500px;}
.y43{bottom:507.951948px;}
.ydc{bottom:513.382365px;}
.ydb{bottom:526.138500px;}
.y18{bottom:526.399314px;}
.y40{bottom:526.404282px;}
.y41{bottom:526.574790px;}
.yda{bottom:528.264000px;}
.y17{bottom:545.107056px;}
.y3e{bottom:545.112624px;}
.y3f{bottom:545.283132px;}
.yd9{bottom:552.925500px;}
.y16{bottom:563.815398px;}
.y3c{bottom:563.820966px;}
.y3d{bottom:563.991474px;}
.y15{bottom:582.438240px;}
.y3a{bottom:582.443808px;}
.y3b{bottom:582.614316px;}
.yd7{bottom:598.846500px;}
.yd5{bottom:601.142550px;}
.y14{bottom:601.146582px;}
.y9c{bottom:601.146770px;}
.y38{bottom:601.152150px;}
.yd8{bottom:601.312500px;}
.yd6{bottom:601.313058px;}
.y39{bottom:601.322658px;}
.y125{bottom:605.990120px;}
.y124{bottom:606.160041px;}
.y164{bottom:612.707753px;}
.yd3{bottom:617.470500px;}
.yd1{bottom:619.768238px;}
.y9b{bottom:619.770198px;}
.y13{bottom:619.854924px;}
.y36{bottom:619.860638px;}
.yd4{bottom:619.936500px;}
.yd2{bottom:619.938746px;}
.y37{bottom:620.031146px;}
.y123{bottom:621.126645px;}
.y163{bottom:629.885753px;}
.y162{bottom:630.650987px;}
.y122{bottom:636.093834px;}
.ycf{bottom:638.476566px;}
.y12{bottom:638.477766px;}
.y9a{bottom:638.477940px;}
.y34{bottom:638.483480px;}
.yd0{bottom:638.646488px;}
.y35{bottom:638.653988px;}
.y161{bottom:644.852942px;}
.y160{bottom:645.618176px;}
.y121{bottom:650.975478px;}
.ycd{bottom:657.184308px;}
.y11{bottom:657.186108px;}
.y99{bottom:657.186282px;}
.y32{bottom:657.191822px;}
.yce{bottom:657.354816px;}
.y33{bottom:657.362330px;}
.y15f{bottom:659.819546px;}
.y15e{bottom:660.585366px;}
.y120{bottom:665.687784px;}
.y11e{bottom:665.942667px;}
.y11f{bottom:668.408883px;}
.y15d{bottom:674.786736px;}
.y15c{bottom:675.467010px;}
.ycb{bottom:675.807750px;}
.y98{bottom:675.809124px;}
.y10{bottom:675.894450px;}
.y30{bottom:675.900150px;}
.ycc{bottom:675.978258px;}
.y31{bottom:676.070072px;}
.y11d{bottom:680.654975px;}
.y11c{bottom:680.909271px;}
.y15b{bottom:689.668380px;}
.y15a{bottom:690.434201px;}
.yc9{bottom:692.220000px;}
.yf{bottom:694.517292px;}
.y97{bottom:694.517466px;}
.yc7{bottom:694.518788px;}
.y2e{bottom:694.521750px;}
.yca{bottom:694.686000px;}
.yc8{bottom:694.689296px;}
.y2f{bottom:694.692258px;}
.y11b{bottom:695.196187px;}
.y119{bottom:695.791500px;}
.y11a{bottom:698.257716px;}
.y159{bottom:704.635571px;}
.y158{bottom:705.400805px;}
.ye{bottom:713.225634px;}
.y96{bottom:713.225808px;}
.yc5{bottom:713.227116px;}
.y2c{bottom:713.231243px;}
.yc6{bottom:713.397038px;}
.y2d{bottom:713.401164px;}
.y157{bottom:719.602175px;}
.y156{bottom:720.367995px;}
.y180{bottom:731.678280px;}
.y95{bottom:731.849250px;}
.yc3{bottom:731.849958px;}
.yd{bottom:731.933976px;}
.y2a{bottom:731.938985px;}
.yc4{bottom:732.020466px;}
.y2b{bottom:732.109493px;}
.y155{bottom:734.484405px;}
.y154{bottom:735.249639px;}
.y17e{bottom:744.433500px;}
.y17d{bottom:746.560500px;}
.y93{bottom:748.261500px;}
.y153{bottom:749.451009px;}
.y152{bottom:750.216830px;}
.y92{bottom:750.556650px;}
.yc{bottom:750.556818px;}
.yc1{bottom:750.561225px;}
.y28{bottom:750.562427px;}
.y94{bottom:750.727500px;}
.yc2{bottom:750.731733px;}
.y29{bottom:750.732935px;}
.y17f{bottom:751.237455px;}
.y7d{bottom:753.045000px;}
.y17b{bottom:759.402000px;}
.y17c{bottom:761.527500px;}
.y17a{bottom:761.531685px;}
.y151{bottom:764.418200px;}
.y150{bottom:765.183434px;}
.y90{bottom:766.885500px;}
.ybf{bottom:769.269554px;}
.y8f{bottom:769.274396px;}
.y91{bottom:769.435500px;}
.yc0{bottom:769.439475px;}
.y179{bottom:776.498880px;}
.y14f{bottom:779.385389px;}
.y14e{bottom:780.065076px;}
.ybd{bottom:787.892396px;}
.y8e{bottom:787.897238px;}
.ybe{bottom:788.062904px;}
.y178{bottom:791.466075px;}
.y14d{bottom:794.267031px;}
.y14c{bottom:795.032265px;}
.yb{bottom:795.797592px;}
.ybb{bottom:806.600738px;}
.y8d{bottom:806.605566px;}
.ybc{bottom:806.771246px;}
.y14b{bottom:809.234220px;}
.y14a{bottom:809.999454px;}
.ya{bottom:810.764781px;}
.y176{bottom:816.466725px;}
.y149{bottom:824.200824px;}
.y148{bottom:824.966058px;}
.yb9{bottom:825.309066px;}
.y8c{bottom:825.313308px;}
.yba{bottom:825.478988px;}
.y175{bottom:831.433905px;}
.y147{bottom:839.168013px;}
.y146{bottom:839.847701px;}
.yb7{bottom:843.931908px;}
.y8b{bottom:843.936750px;}
.yb8{bottom:844.102416px;}
.y174{bottom:846.401100px;}
.y177{bottom:846.401175px;}
.y145{bottom:854.049656px;}
.y144{bottom:854.814890px;}
.yb5{bottom:862.640250px;}
.y8a{bottom:862.645173px;}
.yb6{bottom:862.810758px;}
.y173{bottom:865.534950px;}
.y143{bottom:869.016845px;}
.y142{bottom:869.782079px;}
.y89{bottom:881.352915px;}
.yb3{bottom:881.353493px;}
.yb4{bottom:881.524001px;}
.y141{bottom:883.983449px;}
.y172{bottom:884.668800px;}
.y140{bottom:884.748683px;}
.y13f{bottom:898.865678px;}
.y13e{bottom:899.630912px;}
.y88{bottom:899.976357px;}
.yb1{bottom:899.976922px;}
.yb2{bottom:900.146843px;}
.y171{bottom:903.717000px;}
.y13d{bottom:913.832282px;}
.y13c{bottom:914.597516px;}
.y9{bottom:917.999508px;}
.yaf{bottom:918.684664px;}
.y87{bottom:918.684686px;}
.yb0{bottom:918.855172px;}
.y170{bottom:922.850250px;}
.y13b{bottom:928.799470px;}
.y13a{bottom:929.564705px;}
.y6{bottom:936.707880px;}
.y8{bottom:937.303779px;}
.y7{bottom:937.304364px;}
.y86{bottom:937.392428px;}
.yad{bottom:937.393006px;}
.yae{bottom:937.563514px;}
.y16f{bottom:941.983500px;}
.y139{bottom:943.766075px;}
.y138{bottom:944.446349px;}
.y85{bottom:956.015870px;}
.yab{bottom:956.016434px;}
.yac{bottom:956.186356px;}
.y135{bottom:958.648303px;}
.y137{bottom:958.818225px;}
.y136{bottom:959.244203px;}
.y134{bottom:959.413538px;}
.y16e{bottom:961.116750px;}
.y132{bottom:973.614908px;}
.y133{bottom:974.125845px;}
.y131{bottom:974.380142px;}
.ya9{bottom:974.724176px;}
.y84{bottom:974.724198px;}
.yaa{bottom:974.894684px;}
.y5{bottom:978.972735px;}
.y16d{bottom:980.250000px;}
.y12e{bottom:988.582097px;}
.y130{bottom:988.667057px;}
.y12f{bottom:989.092448px;}
.y12d{bottom:989.348504px;}
.y83{bottom:993.346979px;}
.ya7{bottom:993.347557px;}
.ya8{bottom:993.603026px;}
.y16c{bottom:999.383250px;}
.y4{bottom:1005.845040px;}
.ya5{bottom:1012.055299px;}
.y82{bottom:1012.055307px;}
.ya6{bottom:1012.225807px;}
.y16b{bottom:1018.516500px;}
.y12b{bottom:1022.002734px;}
.y12c{bottom:1022.258204px;}
.y81{bottom:1030.763049px;}
.ya3{bottom:1030.763641px;}
.ya4{bottom:1030.934149px;}
.y169{bottom:1044.538500px;}
.y167{bottom:1046.663805px;}
.y16a{bottom:1046.664000px;}
.y80{bottom:1049.386430px;}
.ya1{bottom:1049.387021px;}
.ya2{bottom:1049.642491px;}
.y168{bottom:1051.255800px;}
.y7f{bottom:1068.094758px;}
.y9f{bottom:1068.094763px;}
.ya0{bottom:1068.265271px;}
.y166{bottom:1071.240405px;}
.y129{bottom:1073.961384px;}
.y12a{bottom:1074.471735px;}
.y128{bottom:1074.726618px;}
.y3{bottom:1075.236990px;}
.y2{bottom:1076.853000px;}
.y165{bottom:1086.207000px;}
.y9d{bottom:1086.800762px;}
.y7e{bottom:1086.802500px;}
.y9e{bottom:1086.970683px;}
.y127{bottom:1088.928573px;}
.y126{bottom:1089.693807px;}
.y7c{bottom:1109.424600px;}
.y117{bottom:1126.347000px;}
.y7b{bottom:1126.602000px;}
.h24{height:16.192018px;}
.h27{height:16.310554px;}
.h23{height:19.845270px;}
.h1e{height:23.132800px;}
.h20{height:23.302147px;}
.h13{height:25.572601px;}
.hb{height:27.214818px;}
.h16{height:27.414048px;}
.h14{height:33.713946px;}
.h22{height:34.702684px;}
.h10{height:34.956730px;}
.h1f{height:35.515631px;}
.h1c{height:36.226960px;}
.h11{height:37.090716px;}
.h25{height:38.201548px;}
.h21{height:38.213248px;}
.h1d{height:38.215588px;}
.h26{height:38.553088px;}
.h3{height:39.069869px;}
.hc{height:41.125613px;}
.he{height:41.130581px;}
.h18{height:41.137332px;}
.h4{height:41.484266px;}
.h9{height:41.805299px;}
.h8{height:41.807645px;}
.hd{height:42.147491px;}
.h7{height:42.620003px;}
.h6{height:43.302035px;}
.h19{height:45.105300px;}
.hf{height:45.107640px;}
.h1b{height:45.109980px;}
.h1a{height:45.112320px;}
.ha{height:45.775632px;}
.h17{height:45.799032px;}
.h15{height:51.624000px;}
.h12{height:54.657439px;}
.h5{height:77.035582px;}
.h2{height:247.259379px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:15.000000px;}
.x3c{left:32.825400px;}
.x8{left:40.307970px;}
.xe{left:43.115100px;}
.x3{left:47.792100px;}
.x16{left:76.535100px;}
.x3b{left:78.661500px;}
.x30{left:83.508450px;}
.x2{left:85.039500px;}
.x32{left:87.165300px;}
.x31{left:92.523000px;}
.x2a{left:105.448800px;}
.x2f{left:114.973200px;}
.x41{left:130.195335px;}
.x1c{left:132.236100px;}
.xf{left:135.722550px;}
.x1d{left:137.848800px;}
.x2b{left:139.124400px;}
.x4f{left:140.569995px;}
.x4{left:150.179400px;}
.x1{left:157.323000px;}
.x3f{left:159.108000px;}
.x2e{left:163.870500px;}
.x9{left:165.912000px;}
.xa{left:172.035000px;}
.x10{left:188.106570px;}
.x13{left:203.583585px;}
.x5{left:214.384605px;}
.x50{left:217.191000px;}
.x2c{left:226.290000px;}
.x18{left:233.604000px;}
.x19{left:239.215500px;}
.x3d{left:253.160700px;}
.x1a{left:258.264000px;}
.x1b{left:263.791500px;}
.x33{left:268.554000px;}
.x34{left:277.569000px;}
.x11{left:282.500025px;}
.x52{left:289.473000px;}
.x53{left:300.699000px;}
.x3e{left:304.949355px;}
.x12{left:314.389095px;}
.x40{left:321.703845px;}
.x35{left:326.211000px;}
.x49{left:328.166520px;}
.x6{left:329.273505px;}
.x4a{left:331.312500px;}
.x36{left:335.226000px;}
.x54{left:338.542500px;}
.x55{left:357.081000px;}
.x56{left:360.226500px;}
.x4b{left:362.097000px;}
.x57{left:363.883500px;}
.x7{left:368.306925px;}
.x4c{left:374.343000px;}
.x58{left:384.037500px;}
.x59{left:391.182000px;}
.x4d{left:405.127500px;}
.x4e{left:416.097000px;}
.x51{left:428.428500px;}
.x2d{left:457.767000px;}
.xc{left:459.214800px;}
.x15{left:460.914150px;}
.x25{left:464.740500px;}
.x26{left:473.754000px;}
.xd{left:476.227500px;}
.x46{left:484.726845px;}
.x1e{left:488.806500px;}
.x27{left:515.337330px;}
.x37{left:516.699000px;}
.x38{left:525.628500px;}
.x42{left:540.085425px;}
.x43{left:556.584120px;}
.x39{left:574.356000px;}
.x21{left:576.991500px;}
.x22{left:583.114500px;}
.x23{left:602.844000px;}
.x24{left:615.004500px;}
.x28{left:642.215580px;}
.x1f{left:646.725000px;}
.x20{left:667.219500px;}
.x3a{left:673.596000px;}
.x47{left:704.128050px;}
.x44{left:747.071580px;}
.x29{left:750.639780px;}
.x14{left:756.935340px;}
.x48{left:789.763440px;}
.x45{left:806.599335px;}
.xb{left:837.637800px;}
@media print{
.v8{vertical-align:-15.116692pt;}
.va{vertical-align:-11.187519pt;}
.v5{vertical-align:-2.720832pt;}
.v2{vertical-align:-1.514581pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:0.908336pt;}
.v3{vertical-align:5.135445pt;}
.v4{vertical-align:6.652106pt;}
.v1{vertical-align:7.860426pt;}
.v9{vertical-align:16.329171pt;}
.v6{vertical-align:19.329171pt;}
.ls14{letter-spacing:-0.008501pt;}
.ls13{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.001359pt;}
.ls1d{letter-spacing:0.025833pt;}
.ls1f{letter-spacing:0.041067pt;}
.ls16{letter-spacing:0.046400pt;}
.ls2d{letter-spacing:0.086161pt;}
.ls20{letter-spacing:0.091040pt;}
.ls10{letter-spacing:0.141243pt;}
.ls1c{letter-spacing:0.143916pt;}
.ls24{letter-spacing:0.149456pt;}
.ls19{letter-spacing:0.174629pt;}
.ls18{letter-spacing:0.176709pt;}
.ls22{letter-spacing:0.190453pt;}
.lsd{letter-spacing:0.229543pt;}
.ls30{letter-spacing:0.230786pt;}
.ls2c{letter-spacing:0.243600pt;}
.ls1e{letter-spacing:0.243644pt;}
.ls1a{letter-spacing:0.249884pt;}
.ls2a{letter-spacing:2.195890pt;}
.lse{letter-spacing:2.497970pt;}
.ls5{letter-spacing:2.566849pt;}
.ls21{letter-spacing:2.651920pt;}
.lsc{letter-spacing:2.655648pt;}
.ls1b{letter-spacing:2.657728pt;}
.ls27{letter-spacing:3.708370pt;}
.ls2b{letter-spacing:4.010450pt;}
.ls3{letter-spacing:4.377249pt;}
.ls2{letter-spacing:4.379329pt;}
.ls0{letter-spacing:5.391039pt;}
.ls28{letter-spacing:8.241703pt;}
.ls29{letter-spacing:8.243783pt;}
.ls26{letter-spacing:8.545916pt;}
.ls35{letter-spacing:10.979305pt;}
.ls9{letter-spacing:12.868414pt;}
.lsa{letter-spacing:13.166334pt;}
.ls2e{letter-spacing:13.694479pt;}
.ls25{letter-spacing:14.916723pt;}
.ls31{letter-spacing:14.918803pt;}
.ls8{letter-spacing:15.071325pt;}
.lsf{letter-spacing:15.318270pt;}
.ls6{letter-spacing:17.553338pt;}
.ls4{letter-spacing:17.855418pt;}
.lsb{letter-spacing:18.005961pt;}
.ls2f{letter-spacing:21.254905pt;}
.ls12{letter-spacing:31.797201pt;}
.ls11{letter-spacing:31.799334pt;}
.ls7{letter-spacing:75.626658pt;}
.ls1{letter-spacing:75.630924pt;}
.ls33{letter-spacing:78.097058pt;}
.ls34{letter-spacing:78.399457pt;}
.ls32{letter-spacing:147.942916pt;}
.ls23{letter-spacing:262.831379pt;}
.ls15{letter-spacing:355.725825pt;}
.ws10a{word-spacing:-147.988080pt;}
.ws10b{word-spacing:-8.297419pt;}
.ws0{word-spacing:-0.308168pt;}
.ws7{word-spacing:-0.053134pt;}
.ws6b{word-spacing:-0.045164pt;}
.ws54{word-spacing:-0.037194pt;}
.ws10c{word-spacing:-0.031613pt;}
.ws7c{word-spacing:0.000000pt;}
.wsb{word-spacing:7.289877pt;}
.ws6f{word-spacing:10.365267pt;}
.ws77{word-spacing:10.396702pt;}
.ws71{word-spacing:10.476309pt;}
.ws74{word-spacing:10.562834pt;}
.ws70{word-spacing:10.575554pt;}
.ws73{word-spacing:10.620060pt;}
.ws117{word-spacing:10.956675pt;}
.ws2{word-spacing:11.084581pt;}
.wseb{word-spacing:11.300778pt;}
.wsf8{word-spacing:11.336457pt;}
.ws102{word-spacing:11.950910pt;}
.ws5b{word-spacing:12.667431pt;}
.ws22{word-spacing:12.783630pt;}
.ws83{word-spacing:12.800053pt;}
.wsb5{word-spacing:12.874334pt;}
.ws23{word-spacing:13.008179pt;}
.ws52{word-spacing:13.199089pt;}
.ws68{word-spacing:13.241689pt;}
.ws82{word-spacing:13.310935pt;}
.ws21{word-spacing:13.320234pt;}
.ws65{word-spacing:13.382193pt;}
.ws53{word-spacing:13.630249pt;}
.ws10e{word-spacing:13.733432pt;}
.ws110{word-spacing:13.733477pt;}
.ws10f{word-spacing:13.805848pt;}
.wsb6{word-spacing:14.596084pt;}
.ws6a{word-spacing:14.632687pt;}
.wsd3{word-spacing:14.659785pt;}
.wsf7{word-spacing:14.800154pt;}
.wsd0{word-spacing:14.818309pt;}
.ws12{word-spacing:14.834124pt;}
.wsd1{word-spacing:14.858460pt;}
.ws107{word-spacing:14.859634pt;}
.wsc7{word-spacing:14.871512pt;}
.ws103{word-spacing:14.871805pt;}
.ws69{word-spacing:14.894681pt;}
.wsc5{word-spacing:14.904301pt;}
.wsf2{word-spacing:14.916812pt;}
.ws66{word-spacing:14.918915pt;}
.wsd2{word-spacing:14.931670pt;}
.wscb{word-spacing:14.934787pt;}
.wsc3{word-spacing:14.942816pt;}
.wsca{word-spacing:14.943819pt;}
.ws118{word-spacing:14.943865pt;}
.wsc6{word-spacing:14.943910pt;}
.ws6c{word-spacing:14.945445pt;}
.wsc{word-spacing:14.949691pt;}
.wsc2{word-spacing:14.963511pt;}
.wscc{word-spacing:14.976428pt;}
.ws28{word-spacing:14.988903pt;}
.wsfc{word-spacing:14.989751pt;}
.ws101{word-spacing:14.990790pt;}
.ws67{word-spacing:14.991200pt;}
.ws7b{word-spacing:15.003932pt;}
.ws6d{word-spacing:15.011610pt;}
.wscd{word-spacing:15.012920pt;}
.ws105{word-spacing:15.030082pt;}
.wsec{word-spacing:15.040244pt;}
.wsce{word-spacing:15.057180pt;}
.wsea{word-spacing:15.067071pt;}
.wse8{word-spacing:15.089608pt;}
.ws6e{word-spacing:15.115938pt;}
.wsfa{word-spacing:15.124384pt;}
.wse9{word-spacing:15.124520pt;}
.wsc4{word-spacing:15.147011pt;}
.ws108{word-spacing:15.147147pt;}
.ws104{word-spacing:15.180916pt;}
.ws7a{word-spacing:15.184632pt;}
.wsd4{word-spacing:15.184768pt;}
.wscf{word-spacing:15.233093pt;}
.wsc9{word-spacing:15.246236pt;}
.ws26{word-spacing:15.271575pt;}
.ws100{word-spacing:15.346228pt;}
.wsc8{word-spacing:15.373598pt;}
.ws3e{word-spacing:15.409085pt;}
.ws27{word-spacing:15.436987pt;}
.wsad{word-spacing:15.595054pt;}
.ws40{word-spacing:15.701042pt;}
.ws3f{word-spacing:15.733382pt;}
.ws41{word-spacing:15.733839pt;}
.ws81{word-spacing:16.158538pt;}
.wse1{word-spacing:16.386168pt;}
.wsfb{word-spacing:16.434268pt;}
.wse2{word-spacing:16.661960pt;}
.ws31{word-spacing:16.710599pt;}
.wsc1{word-spacing:16.710652pt;}
.wsc0{word-spacing:16.763414pt;}
.wse3{word-spacing:16.823985pt;}
.wsac{word-spacing:16.917449pt;}
.wsaa{word-spacing:16.938012pt;}
.ws91{word-spacing:16.938065pt;}
.ws92{word-spacing:16.939447pt;}
.ws30{word-spacing:16.948745pt;}
.wsab{word-spacing:17.237989pt;}
.ws57{word-spacing:17.274721pt;}
.ws64{word-spacing:17.283595pt;}
.wsb7{word-spacing:17.326155pt;}
.ws116{word-spacing:17.330090pt;}
.ws115{word-spacing:17.432747pt;}
.wsb8{word-spacing:17.490870pt;}
.ws37{word-spacing:17.513505pt;}
.ws8e{word-spacing:17.523707pt;}
.ws45{word-spacing:17.544269pt;}
.ws8a{word-spacing:17.564997pt;}
.ws8c{word-spacing:17.565098pt;}
.ws90{word-spacing:17.587892pt;}
.wsa6{word-spacing:17.588264pt;}
.ws89{word-spacing:17.623865pt;}
.wsb9{word-spacing:17.634384pt;}
.ws93{word-spacing:17.671791pt;}
.ws2e{word-spacing:17.672535pt;}
.ws97{word-spacing:17.688262pt;}
.ws1f{word-spacing:17.709781pt;}
.ws1e{word-spacing:17.730344pt;}
.ws6{word-spacing:17.752873pt;}
.ws62{word-spacing:17.772798pt;}
.wsa{word-spacing:17.794955pt;}
.ws3a{word-spacing:17.804944pt;}
.ws2d{word-spacing:17.804997pt;}
.ws9f{word-spacing:17.823097pt;}
.ws46{word-spacing:17.836293pt;}
.ws4f{word-spacing:17.890330pt;}
.wse6{word-spacing:17.898656pt;}
.ws8{word-spacing:17.946037pt;}
.ws25{word-spacing:17.955445pt;}
.wsbd{word-spacing:17.969659pt;}
.ws9e{word-spacing:18.001699pt;}
.ws4c{word-spacing:18.045056pt;}
.wse5{word-spacing:18.125152pt;}
.ws51{word-spacing:18.140893pt;}
.ws9{word-spacing:18.188215pt;}
.ws86{word-spacing:18.411201pt;}
.ws14{word-spacing:18.411308pt;}
.ws1a{word-spacing:18.475493pt;}
.ws13{word-spacing:18.575916pt;}
.ws19{word-spacing:18.756890pt;}
.ws7e{word-spacing:18.840789pt;}
.wse4{word-spacing:18.954313pt;}
.wse{word-spacing:18.984000pt;}
.ws48{word-spacing:19.017459pt;}
.ws2a{word-spacing:19.038287pt;}
.wsa9{word-spacing:19.100773pt;}
.wsf{word-spacing:19.101410pt;}
.wsf9{word-spacing:19.177242pt;}
.wsa7{word-spacing:19.181943pt;}
.wsa3{word-spacing:19.182280pt;}
.wsa1{word-spacing:19.245031pt;}
.ws2b{word-spacing:19.250664pt;}
.ws7d{word-spacing:19.340353pt;}
.ws5a{word-spacing:19.356134pt;}
.wsa8{word-spacing:19.356878pt;}
.ws49{word-spacing:19.365566pt;}
.wsf1{word-spacing:19.384633pt;}
.ws38{word-spacing:19.421064pt;}
.ws39{word-spacing:19.484877pt;}
.ws4a{word-spacing:19.516386pt;}
.ws2c{word-spacing:19.516559pt;}
.ws35{word-spacing:19.830566pt;}
.wsbc{word-spacing:19.845019pt;}
.ws5f{word-spacing:19.925782pt;}
.ws1d{word-spacing:19.940341pt;}
.wsbb{word-spacing:19.963135pt;}
.wsba{word-spacing:20.004474pt;}
.wse0{word-spacing:20.065251pt;}
.wsa2{word-spacing:20.132526pt;}
.ws5e{word-spacing:20.180453pt;}
.ws58{word-spacing:20.434645pt;}
.wsbf{word-spacing:20.546598pt;}
.wsbe{word-spacing:20.717158pt;}
.ws44{word-spacing:20.797124pt;}
.ws43{word-spacing:20.827836pt;}
.ws4e{word-spacing:20.949990pt;}
.ws42{word-spacing:21.024750pt;}
.wsa5{word-spacing:21.291641pt;}
.ws112{word-spacing:21.293840pt;}
.ws32{word-spacing:21.338930pt;}
.ws113{word-spacing:21.363714pt;}
.ws114{word-spacing:21.367592pt;}
.ws34{word-spacing:21.454922pt;}
.ws111{word-spacing:21.512134pt;}
.ws87{word-spacing:21.514856pt;}
.ws47{word-spacing:21.779676pt;}
.ws85{word-spacing:22.098426pt;}
.wsfe{word-spacing:22.202218pt;}
.ws59{word-spacing:22.267551pt;}
.wsdd{word-spacing:22.288300pt;}
.wsdf{word-spacing:22.446644pt;}
.wsff{word-spacing:22.455857pt;}
.wsdc{word-spacing:22.558605pt;}
.ws95{word-spacing:22.646661pt;}
.wsde{word-spacing:22.676527pt;}
.ws60{word-spacing:22.800005pt;}
.wsf3{word-spacing:22.803031pt;}
.ws8f{word-spacing:23.406156pt;}
.ws63{word-spacing:23.569543pt;}
.wsa4{word-spacing:23.969003pt;}
.ws9b{word-spacing:24.175747pt;}
.ws9c{word-spacing:24.357863pt;}
.ws9d{word-spacing:24.457038pt;}
.wsed{word-spacing:24.664860pt;}
.wse7{word-spacing:24.843889pt;}
.wsae{word-spacing:24.877327pt;}
.wsb2{word-spacing:25.084124pt;}
.ws5d{word-spacing:26.290368pt;}
.wsb1{word-spacing:26.699234pt;}
.ws96{word-spacing:26.710073pt;}
.wsdb{word-spacing:26.737514pt;}
.wsa0{word-spacing:26.795831pt;}
.wsda{word-spacing:26.877477pt;}
.ws94{word-spacing:27.124092pt;}
.ws5c{word-spacing:27.198692pt;}
.ws15{word-spacing:27.283972pt;}
.ws5{word-spacing:28.013267pt;}
.ws3{word-spacing:28.020324pt;}
.wsf0{word-spacing:28.151184pt;}
.ws4{word-spacing:28.276742pt;}
.wsd8{word-spacing:28.345253pt;}
.wsd9{word-spacing:28.353788pt;}
.wsd7{word-spacing:28.440458pt;}
.ws10{word-spacing:28.597228pt;}
.wsb0{word-spacing:28.608174pt;}
.ws4d{word-spacing:28.729691pt;}
.wsf6{word-spacing:28.763965pt;}
.ws33{word-spacing:28.845735pt;}
.wsf4{word-spacing:28.885582pt;}
.wsf5{word-spacing:29.053425pt;}
.ws1c{word-spacing:29.712774pt;}
.ws29{word-spacing:29.940133pt;}
.ws61{word-spacing:30.067708pt;}
.ws36{word-spacing:30.807012pt;}
.wsfd{word-spacing:31.479299pt;}
.ws7f{word-spacing:31.736164pt;}
.ws50{word-spacing:32.321593pt;}
.ws106{word-spacing:32.346262pt;}
.ws80{word-spacing:32.528496pt;}
.ws17{word-spacing:32.640343pt;}
.wsee{word-spacing:32.848302pt;}
.wsef{word-spacing:33.018247pt;}
.ws84{word-spacing:33.309086pt;}
.ws16{word-spacing:33.915343pt;}
.ws55{word-spacing:34.162849pt;}
.ws1b{word-spacing:35.876142pt;}
.wsaf{word-spacing:35.880605pt;}
.wsb4{word-spacing:36.476289pt;}
.wsb3{word-spacing:36.614809pt;}
.ws18{word-spacing:36.938288pt;}
.ws88{word-spacing:37.692417pt;}
.ws3b{word-spacing:38.208559pt;}
.ws98{word-spacing:38.218654pt;}
.ws3d{word-spacing:38.394793pt;}
.ws3c{word-spacing:38.415204pt;}
.ws99{word-spacing:38.425979pt;}
.ws9a{word-spacing:38.520372pt;}
.ws4b{word-spacing:38.792181pt;}
.ws56{word-spacing:39.292437pt;}
.ws8b{word-spacing:39.431222pt;}
.ws8d{word-spacing:39.712619pt;}
.wsd6{word-spacing:45.422461pt;}
.ws24{word-spacing:49.105591pt;}
.ws11{word-spacing:49.107724pt;}
.wsd5{word-spacing:49.144524pt;}
.ws10d{word-spacing:51.332190pt;}
.ws20{word-spacing:53.266754pt;}
.wsd{word-spacing:53.309375pt;}
.ws109{word-spacing:94.488600pt;}
.ws1{word-spacing:102.743903pt;}
.ws2f{word-spacing:109.578117pt;}
.ws72{word-spacing:115.910782pt;}
.ws76{word-spacing:300.068267pt;}
.ws79{word-spacing:300.387078pt;}
.ws78{word-spacing:307.387845pt;}
.ws75{word-spacing:364.347810pt;}
._21{margin-left:-148.161314pt;}
._22{margin-left:-78.313198pt;}
._e{margin-left:-5.777298pt;}
._14{margin-left:-1.433283pt;}
._0{width:1.479181pt;}
._20{width:12.281056pt;}
._a{width:13.994004pt;}
._2{width:15.157850pt;}
._b{width:16.198526pt;}
._16{width:17.390459pt;}
._9{width:18.680431pt;}
._3{width:20.045276pt;}
._8{width:21.127519pt;}
._c{width:22.348263pt;}
._10{width:23.330984pt;}
._12{width:24.676807pt;}
._17{width:26.030438pt;}
._11{width:27.363497pt;}
._1{width:29.130108pt;}
._7{width:30.798319pt;}
._d{width:31.921030pt;}
._4{width:33.789856pt;}
._6{width:36.880832pt;}
._5{width:37.921314pt;}
._f{width:39.979598pt;}
._13{width:63.821767pt;}
._19{width:70.780549pt;}
._23{width:74.318631pt;}
._25{width:90.982782pt;}
._24{width:102.178418pt;}
._18{width:111.767129pt;}
._1d{width:124.289315pt;}
._1c{width:127.117829pt;}
._1a{width:159.838498pt;}
._1e{width:161.822586pt;}
._1b{width:180.207701pt;}
._1f{width:201.747322pt;}
._15{width:330.289427pt;}
.fse{font-size:21.073067pt;}
.fsd{font-size:30.106133pt;}
.fsc{font-size:31.613333pt;}
.fs9{font-size:31.881067pt;}
.fs4{font-size:32.411733pt;}
.fs7{font-size:35.418667pt;}
.fs6{font-size:37.193600pt;}
.fsa{font-size:42.507733pt;}
.fs5{font-size:45.163733pt;}
.fs1{font-size:50.477867pt;}
.fs2{font-size:53.133867pt;}
.fsb{font-size:64.000000pt;}
.fs8{font-size:79.701333pt;}
.fs3{font-size:85.014933pt;}
.fs0{font-size:308.168497pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:12.169747pt;}
.y7a{bottom:14.059853pt;}
.y78{bottom:27.892667pt;}
.y77{bottom:43.615600pt;}
.y76{bottom:60.698680pt;}
.y118{bottom:60.700000pt;}
.y116{bottom:101.064533pt;}
.y75{bottom:102.575213pt;}
.y6c{bottom:102.655708pt;}
.y6d{bottom:102.807271pt;}
.y115{bottom:102.954133pt;}
.y114{bottom:108.018800pt;}
.y1{bottom:113.763600pt;}
.y74{bottom:115.879373pt;}
.y112{bottom:118.072400pt;}
.y6a{bottom:119.209291pt;}
.y6b{bottom:119.436375pt;}
.y113{bottom:119.962000pt;}
.y111{bottom:119.962040pt;}
.y73{bottom:129.183533pt;}
.y68{bottom:135.838928pt;}
.y69{bottom:135.990491pt;}
.y10f{bottom:142.261507pt;}
.y71{bottom:142.487707pt;}
.y72{bottom:142.941352pt;}
.y66{bottom:152.468565pt;}
.y67{bottom:152.620128pt;}
.y70{bottom:155.715827pt;}
.y10e{bottom:157.380000pt;}
.y10b{bottom:159.268667pt;}
.y110{bottom:159.268840pt;}
.y10d{bottom:159.269333pt;}
.y10c{bottom:164.258667pt;}
.y6e{bottom:169.020000pt;}
.y64{bottom:169.022148pt;}
.y65{bottom:169.249232pt;}
.y6f{bottom:169.474167pt;}
.y109{bottom:176.277467pt;}
.y62{bottom:185.651785pt;}
.y63{bottom:185.803348pt;}
.y108{bottom:191.394667pt;}
.y105{bottom:193.284400pt;}
.y10a{bottom:193.284800pt;}
.y107{bottom:193.285333pt;}
.y106{bottom:198.273333pt;}
.y60{bottom:202.281423pt;}
.y61{bottom:202.432985pt;}
.y103{bottom:210.292133pt;}
.y5e{bottom:218.835005pt;}
.y27{bottom:218.840372pt;}
.y5f{bottom:219.062089pt;}
.y102{bottom:225.410667pt;}
.yff{bottom:227.299333pt;}
.y104{bottom:227.299467pt;}
.y101{bottom:227.300000pt;}
.y100{bottom:232.289333pt;}
.y26{bottom:235.394488pt;}
.y5c{bottom:235.464643pt;}
.y5d{bottom:235.616205pt;}
.yfd{bottom:244.232133pt;}
.y25{bottom:252.024113pt;}
.y5a{bottom:252.096360pt;}
.y5b{bottom:252.247923pt;}
.yfc{bottom:259.426667pt;}
.yfe{bottom:261.239467pt;}
.yfb{bottom:261.240000pt;}
.yf9{bottom:261.241200pt;}
.yfa{bottom:266.305333pt;}
.y58{bottom:268.650476pt;}
.y24{bottom:268.653217pt;}
.y59{bottom:268.877560pt;}
.yf8{bottom:278.249467pt;}
.y23{bottom:285.207333pt;}
.y56{bottom:285.279580pt;}
.y57{bottom:285.431143pt;}
.yf7{bottom:293.366667pt;}
.yf4{bottom:295.256400pt;}
.yf6{bottom:295.257333pt;}
.yf5{bottom:300.321333pt;}
.y22{bottom:301.837159pt;}
.y54{bottom:301.909217pt;}
.y55{bottom:302.060780pt;}
.yf2{bottom:312.264133pt;}
.y52{bottom:318.463333pt;}
.y21{bottom:318.466263pt;}
.y53{bottom:318.690417pt;}
.yf1{bottom:327.382667pt;}
.yee{bottom:329.271333pt;}
.yf3{bottom:329.271467pt;}
.yf0{bottom:329.272000pt;}
.yef{bottom:334.337333pt;}
.y20{bottom:335.020421pt;}
.y50{bottom:335.093184pt;}
.y51{bottom:335.244746pt;}
.yec{bottom:346.280133pt;}
.y1f{bottom:351.649525pt;}
.y4e{bottom:351.734800pt;}
.y4f{bottom:351.886363pt;}
.yeb{bottom:361.398667pt;}
.yed{bottom:363.287467pt;}
.yea{bottom:363.288000pt;}
.ye8{bottom:363.288933pt;}
.ye9{bottom:368.277333pt;}
.y4c{bottom:368.289627pt;}
.y4d{bottom:368.440668pt;}
.ye6{bottom:380.296133pt;}
.y4a{bottom:384.918731pt;}
.y4b{bottom:385.070293pt;}
.ye5{bottom:395.414667pt;}
.ye7{bottom:397.303467pt;}
.ye2{bottom:397.303867pt;}
.ye4{bottom:397.304000pt;}
.y1e{bottom:401.538629pt;}
.y48{bottom:401.548368pt;}
.y49{bottom:401.699931pt;}
.ye3{bottom:402.293333pt;}
.ye1{bottom:414.312133pt;}
.y1d{bottom:418.092267pt;}
.y46{bottom:418.102005pt;}
.y47{bottom:418.253568pt;}
.ye0{bottom:429.429333pt;}
.ydd{bottom:431.319080pt;}
.ydf{bottom:431.320000pt;}
.y44{bottom:434.731643pt;}
.y45{bottom:434.883205pt;}
.y1c{bottom:435.402133pt;}
.yde{bottom:436.308000pt;}
.y1a{bottom:449.310667pt;}
.y19{bottom:451.356343pt;}
.y42{bottom:451.361280pt;}
.y1b{bottom:451.502667pt;}
.y43{bottom:451.512843pt;}
.ydc{bottom:456.339880pt;}
.ydb{bottom:467.678667pt;}
.y18{bottom:467.910501pt;}
.y40{bottom:467.914917pt;}
.y41{bottom:468.066480pt;}
.yda{bottom:469.568000pt;}
.y17{bottom:484.539605pt;}
.y3e{bottom:484.544555pt;}
.y3f{bottom:484.696117pt;}
.yd9{bottom:491.489333pt;}
.y16{bottom:501.169243pt;}
.y3c{bottom:501.174192pt;}
.y3d{bottom:501.325755pt;}
.y15{bottom:517.722880pt;}
.y3a{bottom:517.727829pt;}
.y3b{bottom:517.879392pt;}
.yd7{bottom:532.308000pt;}
.yd5{bottom:534.348933pt;}
.y14{bottom:534.352517pt;}
.y9c{bottom:534.352684pt;}
.y38{bottom:534.357467pt;}
.yd8{bottom:534.500000pt;}
.yd6{bottom:534.500496pt;}
.y39{bottom:534.509029pt;}
.y125{bottom:538.657884pt;}
.y124{bottom:538.808925pt;}
.y164{bottom:544.629113pt;}
.yd3{bottom:548.862667pt;}
.yd1{bottom:550.905100pt;}
.y9b{bottom:550.906843pt;}
.y13{bottom:550.982155pt;}
.y36{bottom:550.987233pt;}
.yd4{bottom:551.054667pt;}
.yd2{bottom:551.056663pt;}
.y37{bottom:551.138796pt;}
.y123{bottom:552.112573pt;}
.y163{bottom:559.898447pt;}
.y162{bottom:560.578655pt;}
.y122{bottom:565.416741pt;}
.ycf{bottom:567.534725pt;}
.y12{bottom:567.535792pt;}
.y9a{bottom:567.535947pt;}
.y34{bottom:567.540871pt;}
.yd0{bottom:567.685767pt;}
.y35{bottom:567.692433pt;}
.y161{bottom:573.202615pt;}
.y160{bottom:573.882823pt;}
.y121{bottom:578.644869pt;}
.ycd{bottom:584.163829pt;}
.y11{bottom:584.165429pt;}
.y99{bottom:584.165584pt;}
.y32{bottom:584.170508pt;}
.yce{bottom:584.315392pt;}
.y33{bottom:584.322071pt;}
.y15f{bottom:586.506263pt;}
.y15e{bottom:587.186992pt;}
.y120{bottom:591.722475pt;}
.y11e{bottom:591.949037pt;}
.y11f{bottom:594.141229pt;}
.y15d{bottom:599.810432pt;}
.y15c{bottom:600.415120pt;}
.ycb{bottom:600.718000pt;}
.y98{bottom:600.719221pt;}
.y10{bottom:600.795067pt;}
.y30{bottom:600.800133pt;}
.ycc{bottom:600.869563pt;}
.y31{bottom:600.951175pt;}
.y11d{bottom:605.026644pt;}
.y11c{bottom:605.252685pt;}
.y15b{bottom:613.038560pt;}
.y15a{bottom:613.719289pt;}
.yc9{bottom:615.306667pt;}
.yf{bottom:617.348704pt;}
.y97{bottom:617.348859pt;}
.yc7{bottom:617.350033pt;}
.y2e{bottom:617.352667pt;}
.yca{bottom:617.498667pt;}
.yc8{bottom:617.501596pt;}
.y2f{bottom:617.504229pt;}
.y11b{bottom:617.952166pt;}
.y119{bottom:618.481333pt;}
.y11a{bottom:620.673525pt;}
.y159{bottom:626.342729pt;}
.y158{bottom:627.022937pt;}
.ye{bottom:633.978341pt;}
.y96{bottom:633.978496pt;}
.yc5{bottom:633.979659pt;}
.y2c{bottom:633.983327pt;}
.yc6{bottom:634.130700pt;}
.y2d{bottom:634.134368pt;}
.y157{bottom:639.646377pt;}
.y156{bottom:640.327107pt;}
.y180{bottom:650.380693pt;}
.y95{bottom:650.532667pt;}
.yc3{bottom:650.533296pt;}
.yd{bottom:650.607979pt;}
.y2a{bottom:650.612431pt;}
.yc4{bottom:650.684859pt;}
.y2b{bottom:650.763993pt;}
.y155{bottom:652.875027pt;}
.y154{bottom:653.555235pt;}
.y17e{bottom:661.718667pt;}
.y17d{bottom:663.609333pt;}
.y93{bottom:665.121333pt;}
.y153{bottom:666.178675pt;}
.y152{bottom:666.859404pt;}
.y92{bottom:667.161467pt;}
.yc{bottom:667.161616pt;}
.yc1{bottom:667.165533pt;}
.y28{bottom:667.166601pt;}
.y94{bottom:667.313333pt;}
.yc2{bottom:667.317096pt;}
.y29{bottom:667.318164pt;}
.y17f{bottom:667.766627pt;}
.y7d{bottom:669.373333pt;}
.y17b{bottom:675.024000pt;}
.y17c{bottom:676.913333pt;}
.y17a{bottom:676.917053pt;}
.y151{bottom:679.482844pt;}
.y150{bottom:680.163052pt;}
.y90{bottom:681.676000pt;}
.ybf{bottom:683.795159pt;}
.y8f{bottom:683.799463pt;}
.y91{bottom:683.942667pt;}
.yc0{bottom:683.946200pt;}
.y179{bottom:690.221227pt;}
.y14f{bottom:692.787012pt;}
.y14e{bottom:693.391179pt;}
.ybd{bottom:700.348796pt;}
.y8e{bottom:700.353100pt;}
.ybe{bottom:700.500359pt;}
.y178{bottom:703.525400pt;}
.y14d{bottom:706.015139pt;}
.y14c{bottom:706.695347pt;}
.yb{bottom:707.375637pt;}
.ybb{bottom:716.978433pt;}
.y8d{bottom:716.982725pt;}
.ybc{bottom:717.129996pt;}
.y14b{bottom:719.319307pt;}
.y14a{bottom:719.999515pt;}
.ya{bottom:720.679805pt;}
.y176{bottom:725.748200pt;}
.y149{bottom:732.622955pt;}
.y148{bottom:733.303163pt;}
.yb9{bottom:733.608059pt;}
.y8c{bottom:733.611829pt;}
.yba{bottom:733.759100pt;}
.y175{bottom:739.052360pt;}
.y147{bottom:745.927123pt;}
.y146{bottom:746.531289pt;}
.yb7{bottom:750.161696pt;}
.y8b{bottom:750.166000pt;}
.yb8{bottom:750.313259pt;}
.y174{bottom:752.356533pt;}
.y177{bottom:752.356600pt;}
.y145{bottom:759.155249pt;}
.y144{bottom:759.835457pt;}
.yb5{bottom:766.791333pt;}
.y8a{bottom:766.795709pt;}
.yb6{bottom:766.942896pt;}
.y173{bottom:769.364400pt;}
.y143{bottom:772.459417pt;}
.y142{bottom:773.139625pt;}
.y89{bottom:783.424813pt;}
.yb3{bottom:783.425327pt;}
.yb4{bottom:783.576890pt;}
.y141{bottom:785.763065pt;}
.y172{bottom:786.372267pt;}
.y140{bottom:786.443273pt;}
.y13f{bottom:798.991713pt;}
.y13e{bottom:799.671921pt;}
.y88{bottom:799.978984pt;}
.yb1{bottom:799.979486pt;}
.yb2{bottom:800.130527pt;}
.y171{bottom:803.304000pt;}
.y13d{bottom:812.295361pt;}
.y13c{bottom:812.975569pt;}
.y9{bottom:815.999563pt;}
.yaf{bottom:816.608590pt;}
.y87{bottom:816.608609pt;}
.yb0{bottom:816.760153pt;}
.y170{bottom:820.311333pt;}
.y13b{bottom:825.599529pt;}
.y13a{bottom:826.279737pt;}
.y6{bottom:832.629227pt;}
.y8{bottom:833.158915pt;}
.y7{bottom:833.159435pt;}
.y86{bottom:833.237713pt;}
.yad{bottom:833.238227pt;}
.yae{bottom:833.389790pt;}
.y16f{bottom:837.318667pt;}
.y139{bottom:838.903177pt;}
.y138{bottom:839.507865pt;}
.y85{bottom:849.791884pt;}
.yab{bottom:849.792386pt;}
.yac{bottom:849.943427pt;}
.y135{bottom:852.131825pt;}
.y137{bottom:852.282867pt;}
.y136{bottom:852.661513pt;}
.y134{bottom:852.812033pt;}
.y16e{bottom:854.326000pt;}
.y132{bottom:865.435473pt;}
.y133{bottom:865.889640pt;}
.y131{bottom:866.115681pt;}
.ya9{bottom:866.421490pt;}
.y84{bottom:866.421509pt;}
.yaa{bottom:866.573053pt;}
.y5{bottom:870.197987pt;}
.y16d{bottom:871.333333pt;}
.y12e{bottom:878.739641pt;}
.y130{bottom:878.815162pt;}
.y12f{bottom:879.193287pt;}
.y12d{bottom:879.420892pt;}
.y83{bottom:882.975092pt;}
.ya7{bottom:882.975606pt;}
.ya8{bottom:883.202690pt;}
.y16c{bottom:888.340667pt;}
.y4{bottom:894.084480pt;}
.ya5{bottom:899.604710pt;}
.y82{bottom:899.604717pt;}
.ya6{bottom:899.756273pt;}
.y16b{bottom:905.348000pt;}
.y12b{bottom:908.446875pt;}
.y12c{bottom:908.673959pt;}
.y81{bottom:916.233821pt;}
.ya3{bottom:916.234347pt;}
.ya4{bottom:916.385910pt;}
.y169{bottom:928.478667pt;}
.y167{bottom:930.367827pt;}
.y16a{bottom:930.368000pt;}
.y80{bottom:932.787937pt;}
.ya1{bottom:932.788463pt;}
.ya2{bottom:933.015547pt;}
.y168{bottom:934.449600pt;}
.y7f{bottom:949.417563pt;}
.y9f{bottom:949.417567pt;}
.ya0{bottom:949.569130pt;}
.y166{bottom:952.213693pt;}
.y129{bottom:954.632341pt;}
.y12a{bottom:955.085987pt;}
.y128{bottom:955.312549pt;}
.y3{bottom:955.766213pt;}
.y2{bottom:957.202667pt;}
.y165{bottom:965.517333pt;}
.y9d{bottom:966.045122pt;}
.y7e{bottom:966.046667pt;}
.y9e{bottom:966.196163pt;}
.y127{bottom:967.936509pt;}
.y126{bottom:968.616717pt;}
.y7c{bottom:986.155200pt;}
.y117{bottom:1001.197333pt;}
.y7b{bottom:1001.424000pt;}
.h24{height:14.392905pt;}
.h27{height:14.498270pt;}
.h23{height:17.640240pt;}
.h1e{height:20.562489pt;}
.h20{height:20.713020pt;}
.h13{height:22.731201pt;}
.hb{height:24.190949pt;}
.h16{height:24.368043pt;}
.h14{height:29.967952pt;}
.h22{height:30.846830pt;}
.h10{height:31.072649pt;}
.h1f{height:31.569450pt;}
.h1c{height:32.201742pt;}
.h11{height:32.969525pt;}
.h25{height:33.956931pt;}
.h21{height:33.967331pt;}
.h1d{height:33.969411pt;}
.h26{height:34.269411pt;}
.h3{height:34.728772pt;}
.hc{height:36.556100pt;}
.he{height:36.560516pt;}
.h18{height:36.566517pt;}
.h4{height:36.874903pt;}
.h9{height:37.160266pt;}
.h8{height:37.162351pt;}
.hd{height:37.464436pt;}
.h7{height:37.884447pt;}
.h6{height:38.490698pt;}
.h19{height:40.093600pt;}
.hf{height:40.095680pt;}
.h1b{height:40.097760pt;}
.h1a{height:40.099840pt;}
.ha{height:40.689450pt;}
.h17{height:40.710250pt;}
.h15{height:45.888000pt;}
.h12{height:48.584390pt;}
.h5{height:68.476073pt;}
.h2{height:219.786114pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:13.333333pt;}
.x3c{left:29.178133pt;}
.x8{left:35.829307pt;}
.xe{left:38.324533pt;}
.x3{left:42.481867pt;}
.x16{left:68.031200pt;}
.x3b{left:69.921333pt;}
.x30{left:74.229733pt;}
.x2{left:75.590667pt;}
.x32{left:77.480267pt;}
.x31{left:82.242667pt;}
.x2a{left:93.732267pt;}
.x2f{left:102.198400pt;}
.x41{left:115.729187pt;}
.x1c{left:117.543200pt;}
.xf{left:120.642267pt;}
.x1d{left:122.532267pt;}
.x2b{left:123.666133pt;}
.x4f{left:124.951107pt;}
.x4{left:133.492800pt;}
.x1{left:139.842667pt;}
.x3f{left:141.429333pt;}
.x2e{left:145.662667pt;}
.x9{left:147.477333pt;}
.xa{left:152.920000pt;}
.x10{left:167.205840pt;}
.x13{left:180.963187pt;}
.x5{left:190.564093pt;}
.x50{left:193.058667pt;}
.x2c{left:201.146667pt;}
.x18{left:207.648000pt;}
.x19{left:212.636000pt;}
.x3d{left:225.031733pt;}
.x1a{left:229.568000pt;}
.x1b{left:234.481333pt;}
.x33{left:238.714667pt;}
.x34{left:246.728000pt;}
.x11{left:251.111133pt;}
.x52{left:257.309333pt;}
.x53{left:267.288000pt;}
.x3e{left:271.066093pt;}
.x12{left:279.456973pt;}
.x40{left:285.958973pt;}
.x35{left:289.965333pt;}
.x49{left:291.703573pt;}
.x6{left:292.687560pt;}
.x4a{left:294.500000pt;}
.x36{left:297.978667pt;}
.x54{left:300.926667pt;}
.x55{left:317.405333pt;}
.x56{left:320.201333pt;}
.x4b{left:321.864000pt;}
.x57{left:323.452000pt;}
.x7{left:327.383933pt;}
.x4c{left:332.749333pt;}
.x58{left:341.366667pt;}
.x59{left:347.717333pt;}
.x4d{left:360.113333pt;}
.x4e{left:369.864000pt;}
.x51{left:380.825333pt;}
.x2d{left:406.904000pt;}
.xc{left:408.190933pt;}
.x15{left:409.701467pt;}
.x25{left:413.102667pt;}
.x26{left:421.114667pt;}
.xd{left:423.313333pt;}
.x46{left:430.868307pt;}
.x1e{left:434.494667pt;}
.x27{left:458.077627pt;}
.x37{left:459.288000pt;}
.x38{left:467.225333pt;}
.x42{left:480.075933pt;}
.x43{left:494.741440pt;}
.x39{left:510.538667pt;}
.x21{left:512.881333pt;}
.x22{left:518.324000pt;}
.x23{left:535.861333pt;}
.x24{left:546.670667pt;}
.x28{left:570.858293pt;}
.x1f{left:574.866667pt;}
.x20{left:593.084000pt;}
.x3a{left:598.752000pt;}
.x47{left:625.891600pt;}
.x44{left:664.063627pt;}
.x29{left:667.235360pt;}
.x14{left:672.831413pt;}
.x48{left:702.011947pt;}
.x45{left:716.977187pt;}
.xb{left:744.566933pt;}
}




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