
    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_1b9a54ab1ec97a76fe2ce158.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.912000;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_eda6b328cfd78b4a0cb0039b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.912000;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_e5ab3a911af98cb7798370d5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904000;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_ed81aeb914bc9277ddd84fff.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912000;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_f5a61e7a52660503d6515f06.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;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_3e737ba2b1ff0710f97213c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.991699;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_7a856f7a90c13e75c27076a0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.987793;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_d5fe40684b309ef44ef65b66.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941000;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_b64f4b76f6374ec46719e80d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.765065;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_d47758e0f7ebf69b1d86e059.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.912000;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_e5ab3a911af98cb7798370d5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.904000;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_245b0b59f8a75f07e29d4aa8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.707031;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_d1cccfa739194cd958449319.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.162000;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_e4d55ed3985dc6fe4487cb50.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.679000;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_cd23a5bdaec92acb6901b3a4.woff2')format("woff");}.fff{font-family:fff;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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_eda6b328cfd78b4a0cb0039b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.912000;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_e5ab3a911af98cb7798370d5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.904000;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_ed81aeb914bc9277ddd84fff.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.912000;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_eda6b328cfd78b4a0cb0039b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.912000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_e5ab3a911af98cb7798370d5.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_ed81aeb914bc9277ddd84fff.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.912000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_eda6b328cfd78b4a0cb0039b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.912000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_e5ab3a911af98cb7798370d5.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_ed81aeb914bc9277ddd84fff.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.912000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_3228ae02f77732e3174e0f97.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:19.965000px;}
.v3{vertical-align:26.975400px;}
.v1{vertical-align:29.700000px;}
.v4{vertical-align:54.000000px;}
.ls4{letter-spacing:-1.776000px;}
.lsb{letter-spacing:-0.449550px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000540px;}
.ls7{letter-spacing:0.198900px;}
.ls8{letter-spacing:0.248400px;}
.ls6{letter-spacing:0.300000px;}
.lsa{letter-spacing:0.675000px;}
.ls0{letter-spacing:3.780000px;}
.ls1{letter-spacing:17.200200px;}
.ls2{letter-spacing:24.492000px;}
.ls5{letter-spacing:1501.200600px;}
.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;}
}
.ws3{word-spacing:-20.460000px;}
.ws37{word-spacing:-15.600000px;}
.ws7{word-spacing:-15.012000px;}
.ws4{word-spacing:-14.400000px;}
.ws5{word-spacing:-12.960000px;}
.wsdc{word-spacing:-12.510000px;}
.wsfd{word-spacing:-12.374550px;}
.ws0{word-spacing:-12.164724px;}
.wsfe{word-spacing:-12.060450px;}
.wsb{word-spacing:-11.520480px;}
.ws2{word-spacing:-11.520000px;}
.wsb4{word-spacing:-10.541700px;}
.ws6{word-spacing:-10.342800px;}
.ws1{word-spacing:-7.637760px;}
.wsf{word-spacing:-7.020000px;}
.wsa{word-spacing:-6.096000px;}
.ws80{word-spacing:-5.100600px;}
.ws97{word-spacing:-4.920000px;}
.wsaa{word-spacing:-4.500000px;}
.wsea{word-spacing:-4.380000px;}
.wsaf{word-spacing:-4.200600px;}
.ws6b{word-spacing:-3.660000px;}
.ws8c{word-spacing:-3.600000px;}
.ws3a{word-spacing:-3.299400px;}
.ws15{word-spacing:-3.179400px;}
.ws21{word-spacing:-3.059400px;}
.wsae{word-spacing:-3.000000px;}
.wsf3{word-spacing:-2.880000px;}
.ws9a{word-spacing:-2.760600px;}
.wsc6{word-spacing:-2.520600px;}
.wsc4{word-spacing:-2.460000px;}
.ws11{word-spacing:-2.340000px;}
.ws94{word-spacing:-2.279400px;}
.wsf5{word-spacing:-2.160000px;}
.wsde{word-spacing:-1.980000px;}
.wse5{word-spacing:-1.860600px;}
.wsc{word-spacing:-1.776000px;}
.wsf1{word-spacing:-1.619400px;}
.ws6d{word-spacing:-1.560000px;}
.ws33{word-spacing:-1.457460px;}
.wsdd{word-spacing:-1.440000px;}
.ws2e{word-spacing:-1.404000px;}
.ws77{word-spacing:-1.260000px;}
.ws5d{word-spacing:-1.140000px;}
.wsf7{word-spacing:-1.080600px;}
.ws35{word-spacing:-0.918000px;}
.wsd9{word-spacing:-0.780000px;}
.ws5c{word-spacing:-0.755820px;}
.wsff{word-spacing:-0.675000px;}
.ws76{word-spacing:-0.660000px;}
.ws44{word-spacing:-0.599400px;}
.wsfb{word-spacing:-0.420000px;}
.ws61{word-spacing:-0.300000px;}
.ws69{word-spacing:-0.240000px;}
.wsfc{word-spacing:-0.225000px;}
.ws78{word-spacing:-0.180600px;}
.ws83{word-spacing:-0.120000px;}
.ws2b{word-spacing:-0.108000px;}
.ws8f{word-spacing:-0.060600px;}
.ws8{word-spacing:0.000000px;}
.ws98{word-spacing:0.060600px;}
.wsd8{word-spacing:0.180600px;}
.wsa7{word-spacing:0.240000px;}
.wse9{word-spacing:0.480000px;}
.wsed{word-spacing:0.540000px;}
.wse{word-spacing:0.599400px;}
.ws7a{word-spacing:0.660000px;}
.wse6{word-spacing:0.719400px;}
.ws32{word-spacing:0.810000px;}
.wsa1{word-spacing:0.960600px;}
.ws6f{word-spacing:1.020000px;}
.ws1d{word-spacing:1.379400px;}
.wsf6{word-spacing:1.440000px;}
.wscd{word-spacing:1.511242px;}
.ws34{word-spacing:1.674540px;}
.wsbf{word-spacing:1.680000px;}
.wsa0{word-spacing:1.740600px;}
.ws9{word-spacing:1.776000px;}
.ws17{word-spacing:1.860600px;}
.ws1a{word-spacing:1.980000px;}
.ws13{word-spacing:2.040000px;}
.ws4d{word-spacing:2.100000px;}
.ws73{word-spacing:2.160000px;}
.ws10{word-spacing:2.220000px;}
.ws60{word-spacing:2.279400px;}
.ws81{word-spacing:2.340000px;}
.ws82{word-spacing:2.460000px;}
.ws23{word-spacing:2.506140px;}
.ws30{word-spacing:2.538000px;}
.wseb{word-spacing:2.580000px;}
.ws91{word-spacing:2.640600px;}
.ws3b{word-spacing:2.784998px;}
.wsd3{word-spacing:2.820000px;}
.ws3f{word-spacing:3.000000px;}
.ws56{word-spacing:3.059400px;}
.wsf0{word-spacing:3.179400px;}
.ws2d{word-spacing:3.240000px;}
.ws59{word-spacing:3.360000px;}
.wsec{word-spacing:3.420600px;}
.wsa9{word-spacing:3.480000px;}
.ws6c{word-spacing:3.540600px;}
.ws48{word-spacing:3.660000px;}
.ws22{word-spacing:3.780000px;}
.ws4b{word-spacing:3.840000px;}
.ws58{word-spacing:3.959400px;}
.ws3e{word-spacing:4.020000px;}
.ws2c{word-spacing:4.050000px;}
.ws43{word-spacing:4.079400px;}
.ws1e{word-spacing:4.140000px;}
.ws3c{word-spacing:4.200600px;}
.ws9f{word-spacing:4.380000px;}
.ws8e{word-spacing:4.560000px;}
.ws79{word-spacing:4.620000px;}
.ws85{word-spacing:4.680000px;}
.wsdf{word-spacing:4.739400px;}
.wsc3{word-spacing:4.859400px;}
.ws9e{word-spacing:4.920000px;}
.ws6a{word-spacing:4.979400px;}
.wscc{word-spacing:5.100600px;}
.ws8b{word-spacing:5.160000px;}
.ws9b{word-spacing:5.280000px;}
.ws31{word-spacing:5.400540px;}
.wsa4{word-spacing:5.520000px;}
.ws29{word-spacing:5.580000px;}
.wsab{word-spacing:5.639400px;}
.wscb{word-spacing:5.759400px;}
.wsdb{word-spacing:5.820000px;}
.ws47{word-spacing:5.880600px;}
.ws6e{word-spacing:5.940000px;}
.wsd7{word-spacing:6.120600px;}
.ws74{word-spacing:6.240000px;}
.ws45{word-spacing:6.300000px;}
.wsc2{word-spacing:6.360000px;}
.ws62{word-spacing:6.480000px;}
.wsee{word-spacing:6.539400px;}
.wsb3{word-spacing:6.600000px;}
.ws19{word-spacing:6.659400px;}
.wsb1{word-spacing:6.720000px;}
.ws46{word-spacing:6.840000px;}
.ws2a{word-spacing:7.020000px;}
.ws39{word-spacing:7.080000px;}
.ws36{word-spacing:7.128000px;}
.ws68{word-spacing:7.140000px;}
.ws55{word-spacing:7.260000px;}
.ws96{word-spacing:7.380000px;}
.ws2f{word-spacing:7.452000px;}
.ws52{word-spacing:7.680600px;}
.wsd2{word-spacing:7.740000px;}
.ws95{word-spacing:7.800000px;}
.ws5a{word-spacing:7.860000px;}
.wsc7{word-spacing:7.920000px;}
.wsb0{word-spacing:7.980000px;}
.ws3d{word-spacing:8.099400px;}
.ws51{word-spacing:8.160000px;}
.wsd6{word-spacing:8.219400px;}
.ws18{word-spacing:8.280000px;}
.ws12{word-spacing:8.400000px;}
.ws1b{word-spacing:8.460600px;}
.ws70{word-spacing:8.520000px;}
.wsd1{word-spacing:8.552700px;}
.wsd{word-spacing:8.700000px;}
.wsc1{word-spacing:8.760000px;}
.ws87{word-spacing:8.820000px;}
.ws53{word-spacing:8.999400px;}
.wsc9{word-spacing:9.119400px;}
.ws5e{word-spacing:9.180000px;}
.wse0{word-spacing:9.240600px;}
.ws5f{word-spacing:9.300000px;}
.ws7e{word-spacing:9.360600px;}
.ws54{word-spacing:9.420000px;}
.ws8d{word-spacing:9.660000px;}
.wsca{word-spacing:9.720000px;}
.wsac{word-spacing:9.899400px;}
.ws75{word-spacing:9.960000px;}
.wsc5{word-spacing:10.020600px;}
.wscf{word-spacing:10.320000px;}
.ws26{word-spacing:10.380000px;}
.ws16{word-spacing:10.500000px;}
.ws63{word-spacing:10.559400px;}
.ws8a{word-spacing:10.740000px;}
.wsad{word-spacing:10.799400px;}
.ws86{word-spacing:10.860000px;}
.ws84{word-spacing:10.920600px;}
.ws4c{word-spacing:10.980000px;}
.ws27{word-spacing:11.040600px;}
.wsa3{word-spacing:11.160000px;}
.wsce{word-spacing:11.217960px;}
.wsfa{word-spacing:11.280000px;}
.ws65{word-spacing:11.520000px;}
.wsbc{word-spacing:11.640000px;}
.wse4{word-spacing:11.700600px;}
.ws89{word-spacing:11.760000px;}
.wsd4{word-spacing:11.880000px;}
.wse3{word-spacing:11.973382px;}
.wsb2{word-spacing:12.060000px;}
.ws49{word-spacing:12.239400px;}
.ws72{word-spacing:12.300000px;}
.wsa8{word-spacing:12.359400px;}
.wsbb{word-spacing:12.780000px;}
.wsd0{word-spacing:12.900000px;}
.ws99{word-spacing:13.080000px;}
.wsf9{word-spacing:13.259400px;}
.wsa6{word-spacing:13.500600px;}
.wsc8{word-spacing:13.560000px;}
.ws7d{word-spacing:13.620600px;}
.ws7f{word-spacing:13.740000px;}
.ws4a{word-spacing:13.980000px;}
.wse7{word-spacing:14.039400px;}
.wsa2{word-spacing:14.100000px;}
.ws40{word-spacing:14.159400px;}
.wse8{word-spacing:14.400600px;}
.ws5b{word-spacing:14.460000px;}
.ws41{word-spacing:14.700000px;}
.wsef{word-spacing:15.000000px;}
.wsf4{word-spacing:15.300000px;}
.ws66{word-spacing:15.360000px;}
.ws42{word-spacing:15.480000px;}
.ws7c{word-spacing:15.719400px;}
.ws24{word-spacing:15.840600px;}
.ws20{word-spacing:15.900000px;}
.ws9c{word-spacing:15.960600px;}
.wsf8{word-spacing:16.020000px;}
.ws64{word-spacing:16.140000px;}
.ws4f{word-spacing:16.379400px;}
.wsbd{word-spacing:16.740600px;}
.ws9d{word-spacing:16.920000px;}
.wsbe{word-spacing:17.220000px;}
.ws7b{word-spacing:17.279400px;}
.wse1{word-spacing:17.700000px;}
.wse2{word-spacing:18.059400px;}
.wsa5{word-spacing:18.299400px;}
.wsc0{word-spacing:18.420600px;}
.ws67{word-spacing:18.900000px;}
.ws4e{word-spacing:19.320600px;}
.ws38{word-spacing:19.920000px;}
.wsf2{word-spacing:20.460000px;}
.ws14{word-spacing:20.820000px;}
.wsda{word-spacing:20.940000px;}
.ws71{word-spacing:21.060000px;}
.ws88{word-spacing:21.120600px;}
.ws93{word-spacing:21.360000px;}
.ws25{word-spacing:21.659400px;}
.ws50{word-spacing:21.900600px;}
.ws92{word-spacing:23.160000px;}
.wsba{word-spacing:23.520000px;}
.wsd5{word-spacing:23.640000px;}
.ws57{word-spacing:25.080000px;}
.ws1f{word-spacing:25.980000px;}
.ws28{word-spacing:27.359400px;}
.ws1c{word-spacing:35.160000px;}
.wsb5{word-spacing:186.948000px;}
.wsb7{word-spacing:202.122000px;}
.wsb9{word-spacing:255.852000px;}
.wsb8{word-spacing:274.860000px;}
.ws90{word-spacing:293.004000px;}
.wsb6{word-spacing:605.772000px;}
._a{margin-left:-2899.418760px;}
._9{margin-left:-2055.832380px;}
._7{margin-left:-59.040000px;}
._3{margin-left:-47.970000px;}
._c{margin-left:-14.580000px;}
._20{margin-left:-12.375000px;}
._1e{margin-left:-11.030400px;}
._21{margin-left:-8.884200px;}
._d{margin-left:-7.680000px;}
._5{margin-left:-5.337600px;}
._2{margin-left:-3.552000px;}
._0{margin-left:-1.780800px;}
._4{width:1.334400px;}
._b{width:2.493600px;}
._1d{width:12.960000px;}
._6{width:14.040000px;}
._22{width:17.145000px;}
._1f{width:20.610000px;}
._1{width:33.718800px;}
._e{width:38.016000px;}
._17{width:150.984000px;}
._8{width:183.192840px;}
._11{width:216.270000px;}
._10{width:240.462000px;}
._12{width:244.512000px;}
._1a{width:248.994000px;}
._1c{width:251.142000px;}
._13{width:265.248000px;}
._14{width:293.490000px;}
._1b{width:297.972000px;}
._19{width:308.880000px;}
._16{width:327.618000px;}
._15{width:348.030000px;}
._18{width:360.990000px;}
._f{width:384.318000px;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(65,64,153);}
.fsa{font-size:29.835000px;}
.fs6{font-size:31.824000px;}
.fs5{font-size:39.000000px;}
.fs8{font-size:39.780000px;}
.fs4{font-size:43.758000px;}
.fs9{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:41.383350px;}
.y1{bottom:41.386350px;}
.y121{bottom:81.586200px;}
.ye6{bottom:81.586350px;}
.ybc{bottom:81.601350px;}
.y70{bottom:81.604650px;}
.y58{bottom:81.610800px;}
.y199{bottom:81.620700px;}
.y28{bottom:81.637800px;}
.y1db{bottom:81.700350px;}
.y11e{bottom:82.021350px;}
.y15f{bottom:82.095600px;}
.y1da{bottom:94.446600px;}
.y27{bottom:96.637800px;}
.y120{bottom:97.786200px;}
.ye5{bottom:99.586350px;}
.ybb{bottom:99.601350px;}
.y6f{bottom:99.604650px;}
.y57{bottom:99.610800px;}
.y198{bottom:99.620700px;}
.y11d{bottom:100.066350px;}
.y15e{bottom:100.440600px;}
.y1d9{bottom:107.192850px;}
.y26{bottom:111.637800px;}
.y11f{bottom:113.986200px;}
.ye4{bottom:117.586350px;}
.yba{bottom:117.601350px;}
.y6e{bottom:117.604650px;}
.y56{bottom:117.610800px;}
.y197{bottom:117.620700px;}
.y11c{bottom:118.111350px;}
.y15d{bottom:118.785600px;}
.y1d8{bottom:119.939100px;}
.y1d7{bottom:132.685350px;}
.ye3{bottom:135.586350px;}
.yb9{bottom:135.601350px;}
.y6d{bottom:135.604650px;}
.y55{bottom:135.610800px;}
.y11b{bottom:136.156350px;}
.y15c{bottom:137.130600px;}
.y25{bottom:140.137800px;}
.y1d6{bottom:145.431600px;}
.ye2{bottom:153.586350px;}
.yb8{bottom:153.601350px;}
.y6c{bottom:153.604650px;}
.y54{bottom:153.610800px;}
.y11a{bottom:154.201350px;}
.y24{bottom:155.137800px;}
.y15b{bottom:155.475600px;}
.y1d5{bottom:158.177850px;}
.y1d4{bottom:170.924100px;}
.ye1{bottom:171.586350px;}
.yb7{bottom:171.601350px;}
.y6b{bottom:171.604650px;}
.y53{bottom:171.610800px;}
.y119{bottom:172.246350px;}
.y196{bottom:173.780700px;}
.y15a{bottom:173.820600px;}
.y23{bottom:175.537800px;}
.y1d3{bottom:183.670350px;}
.y22{bottom:185.137800px;}
.ye0{bottom:189.586350px;}
.yb6{bottom:189.601350px;}
.y6a{bottom:189.604650px;}
.y118{bottom:190.291350px;}
.y195{bottom:191.780700px;}
.y159{bottom:192.165600px;}
.y1d2{bottom:196.416600px;}
.y21{bottom:200.137800px;}
.ydf{bottom:207.586350px;}
.yb5{bottom:207.601350px;}
.y69{bottom:207.604650px;}
.y117{bottom:208.336350px;}
.y1d1{bottom:209.162850px;}
.y194{bottom:209.780700px;}
.y158{bottom:210.510600px;}
.y20{bottom:215.137800px;}
.y1d0{bottom:221.909100px;}
.yde{bottom:225.586350px;}
.yb4{bottom:225.601350px;}
.y68{bottom:225.604650px;}
.y116{bottom:226.381350px;}
.y193{bottom:227.780700px;}
.y157{bottom:228.855600px;}
.y1f{bottom:230.137800px;}
.y1cf{bottom:234.655350px;}
.y52{bottom:238.948800px;}
.ydd{bottom:243.586350px;}
.yb3{bottom:243.601350px;}
.y67{bottom:243.604650px;}
.y115{bottom:244.426350px;}
.y192{bottom:245.780700px;}
.y156{bottom:247.200600px;}
.y1ce{bottom:247.401600px;}
.y1e{bottom:250.537800px;}
.y51{bottom:255.445800px;}
.y1d{bottom:260.137800px;}
.y1cd{bottom:260.147850px;}
.ydc{bottom:261.586350px;}
.yb2{bottom:261.601350px;}
.y66{bottom:261.604650px;}
.y114{bottom:262.471350px;}
.y191{bottom:263.780700px;}
.y155{bottom:265.545600px;}
.y50{bottom:271.942800px;}
.y1cc{bottom:272.894100px;}
.y1c{bottom:275.137800px;}
.ydb{bottom:279.586350px;}
.yb1{bottom:279.601350px;}
.y65{bottom:279.604650px;}
.y113{bottom:280.516350px;}
.y190{bottom:281.780700px;}
.y154{bottom:283.890600px;}
.y1cb{bottom:285.640350px;}
.y4f{bottom:288.439800px;}
.y1b{bottom:295.537800px;}
.yda{bottom:297.586350px;}
.yb0{bottom:297.601350px;}
.y64{bottom:297.604650px;}
.y1ca{bottom:298.386600px;}
.y112{bottom:298.561350px;}
.y18f{bottom:299.780700px;}
.y153{bottom:302.235600px;}
.y4e{bottom:304.936800px;}
.y2c{bottom:309.205650px;}
.y1c9{bottom:311.132850px;}
.y13e{bottom:312.870600px;}
.yd9{bottom:315.586350px;}
.yaf{bottom:315.601350px;}
.y63{bottom:315.604650px;}
.y111{bottom:316.606350px;}
.y18e{bottom:317.780700px;}
.y152{bottom:320.580600px;}
.y4d{bottom:321.433800px;}
.y2b{bottom:323.605650px;}
.y1c8{bottom:323.879100px;}
.y13d{bottom:330.870600px;}
.yd8{bottom:333.586350px;}
.yae{bottom:333.601350px;}
.y62{bottom:333.604650px;}
.y110{bottom:334.651350px;}
.y18d{bottom:335.780700px;}
.y1c7{bottom:336.625350px;}
.y4c{bottom:337.930800px;}
.y2a{bottom:338.005650px;}
.y151{bottom:338.925600px;}
.y13c{bottom:348.870600px;}
.y1c6{bottom:349.371600px;}
.yd7{bottom:351.586350px;}
.yad{bottom:351.601350px;}
.y61{bottom:351.604650px;}
.y29{bottom:352.405650px;}
.y10f{bottom:352.696350px;}
.y18c{bottom:353.780700px;}
.y4b{bottom:354.427800px;}
.y150{bottom:357.270600px;}
.y1c5{bottom:362.117850px;}
.y13b{bottom:366.870600px;}
.yd6{bottom:369.586350px;}
.yac{bottom:369.601350px;}
.y60{bottom:369.604650px;}
.yf1{bottom:369.901350px;}
.y10e{bottom:370.741350px;}
.y4a{bottom:370.924800px;}
.y18b{bottom:371.780700px;}
.y1c4{bottom:374.864100px;}
.y14f{bottom:375.615600px;}
.y49{bottom:387.421800px;}
.yd5{bottom:387.586350px;}
.yab{bottom:387.601350px;}
.y5f{bottom:387.604650px;}
.y1c3{bottom:387.610350px;}
.yf0{bottom:387.901350px;}
.y10d{bottom:388.786350px;}
.y18a{bottom:389.780700px;}
.y14e{bottom:393.960600px;}
.y1c2{bottom:400.356600px;}
.y48{bottom:403.918800px;}
.yd4{bottom:405.586350px;}
.yaa{bottom:405.601350px;}
.y5e{bottom:405.604650px;}
.yef{bottom:405.901350px;}
.y10c{bottom:406.831350px;}
.y189{bottom:407.780700px;}
.y14d{bottom:412.305600px;}
.y1c1{bottom:413.102850px;}
.y13a{bottom:417.480600px;}
.y47{bottom:420.415800px;}
.yd3{bottom:423.586350px;}
.ya9{bottom:423.601350px;}
.y5d{bottom:423.604650px;}
.yee{bottom:423.901350px;}
.y10b{bottom:424.876350px;}
.y188{bottom:425.780700px;}
.y1c0{bottom:425.849100px;}
.y14c{bottom:430.650600px;}
.y139{bottom:435.480600px;}
.y46{bottom:436.912800px;}
.y1bf{bottom:438.595350px;}
.yd2{bottom:441.586350px;}
.y5c{bottom:441.610800px;}
.yed{bottom:441.901350px;}
.y10a{bottom:442.921350px;}
.y187{bottom:443.780700px;}
.y14b{bottom:448.995600px;}
.y1be{bottom:451.341600px;}
.y45{bottom:453.409800px;}
.y138{bottom:453.480600px;}
.yd1{bottom:459.586350px;}
.y5b{bottom:459.610800px;}
.y109{bottom:460.966350px;}
.y186{bottom:461.780700px;}
.y1bd{bottom:464.087850px;}
.y14a{bottom:467.340600px;}
.y44{bottom:469.906800px;}
.y137{bottom:471.480600px;}
.y1bc{bottom:476.834100px;}
.ya8{bottom:477.571350px;}
.yd0{bottom:477.586350px;}
.y5a{bottom:477.610800px;}
.y108{bottom:479.011350px;}
.y185{bottom:479.780700px;}
.y149{bottom:485.685600px;}
.y43{bottom:486.403800px;}
.y136{bottom:489.480600px;}
.y1bb{bottom:489.580350px;}
.ya7{bottom:495.571350px;}
.ycf{bottom:495.586350px;}
.y59{bottom:495.610800px;}
.y107{bottom:497.056350px;}
.y184{bottom:497.780700px;}
.yec{bottom:497.866350px;}
.y1ba{bottom:502.326600px;}
.y42{bottom:502.900800px;}
.y148{bottom:504.030600px;}
.y135{bottom:507.480600px;}
.ya6{bottom:513.571350px;}
.yce{bottom:513.586350px;}
.y1b9{bottom:515.072850px;}
.y106{bottom:515.101350px;}
.y183{bottom:515.780700px;}
.yeb{bottom:515.866350px;}
.y41{bottom:519.397800px;}
.y147{bottom:522.375600px;}
.y134{bottom:525.480600px;}
.y1b8{bottom:527.822850px;}
.ya5{bottom:531.571350px;}
.ycd{bottom:531.586350px;}
.y105{bottom:533.146350px;}
.y182{bottom:533.780700px;}
.yea{bottom:533.866350px;}
.y40{bottom:535.894800px;}
.y146{bottom:540.720600px;}
.y133{bottom:543.480600px;}
.y82{bottom:544.621350px;}
.ya4{bottom:549.571350px;}
.ycc{bottom:549.586350px;}
.y104{bottom:551.191350px;}
.y181{bottom:551.780700px;}
.ye9{bottom:551.866350px;}
.y3f{bottom:552.391800px;}
.y145{bottom:559.065600px;}
.y81{bottom:561.118350px;}
.y132{bottom:561.480600px;}
.ya3{bottom:567.571350px;}
.ycb{bottom:567.586350px;}
.y3e{bottom:568.888800px;}
.y103{bottom:569.236350px;}
.y180{bottom:569.780700px;}
.ye8{bottom:569.866350px;}
.y1a{bottom:573.934650px;}
.y1b7{bottom:576.571350px;}
.y144{bottom:577.410600px;}
.y80{bottom:577.615350px;}
.y131{bottom:579.480600px;}
.y3d{bottom:585.385800px;}
.ya2{bottom:585.571350px;}
.yca{bottom:585.586350px;}
.y102{bottom:587.281350px;}
.y17f{bottom:587.780700px;}
.ye7{bottom:587.866350px;}
.y19{bottom:588.934650px;}
.y1b6{bottom:590.971350px;}
.y7f{bottom:594.112350px;}
.y143{bottom:595.755600px;}
.y130{bottom:597.480600px;}
.y3c{bottom:601.882800px;}
.ya1{bottom:603.571350px;}
.yc9{bottom:603.586350px;}
.y18{bottom:603.934650px;}
.y101{bottom:605.326350px;}
.y1b5{bottom:605.371350px;}
.y17e{bottom:605.780700px;}
.y7e{bottom:610.609350px;}
.y142{bottom:614.100600px;}
.y12f{bottom:615.480600px;}
.y3b{bottom:618.379800px;}
.y1b4{bottom:619.771350px;}
.ya0{bottom:621.571350px;}
.yc8{bottom:621.586350px;}
.y100{bottom:623.371350px;}
.y17d{bottom:623.780700px;}
.y7d{bottom:627.118350px;}
.y17{bottom:632.434650px;}
.y141{bottom:632.445600px;}
.y12e{bottom:633.480600px;}
.y1b3{bottom:634.171350px;}
.y3a{bottom:634.876800px;}
.y9f{bottom:639.571350px;}
.yc7{bottom:639.586350px;}
.yff{bottom:641.416350px;}
.y17c{bottom:641.780700px;}
.y7c{bottom:643.615350px;}
.y16{bottom:647.434650px;}
.y1b2{bottom:648.571350px;}
.y140{bottom:650.790600px;}
.y39{bottom:651.373800px;}
.y12d{bottom:651.480600px;}
.y9e{bottom:657.571350px;}
.yc6{bottom:657.586350px;}
.yfe{bottom:659.461350px;}
.y17b{bottom:659.780700px;}
.y7b{bottom:660.112350px;}
.y15{bottom:662.434650px;}
.y38{bottom:667.870800px;}
.y1b1{bottom:668.971350px;}
.y13f{bottom:669.135600px;}
.y12c{bottom:669.480600px;}
.y9d{bottom:675.571350px;}
.yc5{bottom:675.586350px;}
.y7a{bottom:676.609350px;}
.y14{bottom:677.434650px;}
.yfd{bottom:677.506350px;}
.y17a{bottom:677.780700px;}
.y37{bottom:684.367800px;}
.y12b{bottom:687.480600px;}
.y1b0{bottom:689.371350px;}
.y13{bottom:692.434650px;}
.y79{bottom:693.121350px;}
.y9c{bottom:693.571350px;}
.yc4{bottom:693.586350px;}
.yfc{bottom:695.551350px;}
.y179{bottom:695.780700px;}
.y36{bottom:700.864800px;}
.y12{bottom:707.434650px;}
.y78{bottom:709.618350px;}
.y1af{bottom:709.771350px;}
.y9b{bottom:711.571350px;}
.yc3{bottom:711.586350px;}
.yfb{bottom:713.596350px;}
.y178{bottom:713.780700px;}
.y35{bottom:717.361800px;}
.y1ae{bottom:724.171350px;}
.y77{bottom:726.115350px;}
.y9a{bottom:729.571350px;}
.yc2{bottom:729.586350px;}
.y83{bottom:730.181745px;}
.y11{bottom:731.434650px;}
.yfa{bottom:731.641350px;}
.y177{bottom:731.780700px;}
.y34{bottom:733.858800px;}
.y16e{bottom:737.025450px;}
.y76{bottom:742.612350px;}
.y1ad{bottom:744.571350px;}
.y10{bottom:746.434650px;}
.y99{bottom:747.571350px;}
.yc1{bottom:747.586350px;}
.yf9{bottom:749.686350px;}
.y176{bottom:749.780700px;}
.y33{bottom:750.355800px;}
.y75{bottom:759.109350px;}
.yf{bottom:761.434650px;}
.y16d{bottom:763.573650px;}
.y98{bottom:765.571350px;}
.yc0{bottom:765.586350px;}
.y32{bottom:766.852800px;}
.yf8{bottom:767.731350px;}
.y175{bottom:767.780700px;}
.y74{bottom:775.615350px;}
.ye{bottom:776.434650px;}
.y31{bottom:783.349800px;}
.y97{bottom:783.571350px;}
.ybf{bottom:783.586350px;}
.y16c{bottom:783.715650px;}
.yf7{bottom:785.776350px;}
.y1ac{bottom:785.971350px;}
.yd{bottom:791.434650px;}
.y73{bottom:792.112350px;}
.y30{bottom:799.846800px;}
.y1ab{bottom:800.371350px;}
.y96{bottom:801.571350px;}
.ybe{bottom:801.586350px;}
.y174{bottom:803.776350px;}
.yf6{bottom:803.821350px;}
.y16b{bottom:805.356150px;}
.yc{bottom:806.434650px;}
.y72{bottom:808.609350px;}
.y2f{bottom:816.343800px;}
.y95{bottom:819.571350px;}
.ybd{bottom:819.586350px;}
.y1aa{bottom:820.771350px;}
.yb{bottom:821.434650px;}
.y173{bottom:821.776350px;}
.yf5{bottom:821.866350px;}
.y16a{bottom:826.996650px;}
.y2e{bottom:832.840800px;}
.y1a9{bottom:835.171350px;}
.ya{bottom:836.434650px;}
.y94{bottom:837.571350px;}
.y172{bottom:839.776350px;}
.yf4{bottom:839.911350px;}
.y71{bottom:840.340650px;}
.y1f1{bottom:842.026350px;}
.y206{bottom:842.251350px;}
.y169{bottom:848.637150px;}
.y2d{bottom:849.340800px;}
.y1a8{bottom:849.571350px;}
.y9{bottom:851.434650px;}
.y1f0{bottom:854.772600px;}
.y93{bottom:855.571350px;}
.y205{bottom:855.627600px;}
.y171{bottom:857.776350px;}
.yf3{bottom:857.956350px;}
.y1ef{bottom:867.590100px;}
.y204{bottom:869.003850px;}
.y1a7{bottom:869.971350px;}
.y168{bottom:870.277650px;}
.y92{bottom:873.571350px;}
.y170{bottom:875.776350px;}
.yf2{bottom:876.001350px;}
.y1ee{bottom:880.336350px;}
.y203{bottom:882.380100px;}
.y1a6{bottom:884.371350px;}
.y91{bottom:891.571350px;}
.y167{bottom:891.918150px;}
.y1ed{bottom:893.082600px;}
.y16f{bottom:893.776350px;}
.y202{bottom:895.756350px;}
.y1a5{bottom:898.771350px;}
.y1ec{bottom:905.828850px;}
.y201{bottom:909.132600px;}
.y90{bottom:909.571350px;}
.y1a4{bottom:913.171350px;}
.y166{bottom:913.558650px;}
.y8{bottom:918.340650px;}
.y1eb{bottom:918.575100px;}
.y200{bottom:922.508850px;}
.y8f{bottom:927.571350px;}
.y1ea{bottom:931.321350px;}
.y165{bottom:935.199150px;}
.y1ff{bottom:935.885100px;}
.y12a{bottom:938.414100px;}
.y1a3{bottom:941.971350px;}
.y1e9{bottom:944.067600px;}
.y8e{bottom:945.571350px;}
.y1fe{bottom:949.261350px;}
.y129{bottom:953.414100px;}
.y1a2{bottom:956.371350px;}
.y1e8{bottom:956.813850px;}
.y164{bottom:956.839650px;}
.y1fd{bottom:962.637600px;}
.y8d{bottom:963.571350px;}
.y1e7{bottom:969.560100px;}
.y1a1{bottom:970.771350px;}
.y1fc{bottom:976.013850px;}
.y7{bottom:976.822650px;}
.y163{bottom:978.480150px;}
.y128{bottom:979.977000px;}
.y8c{bottom:981.571350px;}
.y1e6{bottom:982.306350px;}
.y1a0{bottom:985.171350px;}
.y1fb{bottom:989.390100px;}
.y1e5{bottom:995.052600px;}
.y162{bottom:998.622150px;}
.y8b{bottom:999.571350px;}
.y127{bottom:1000.119000px;}
.y1fa{bottom:1002.766350px;}
.y1e4{bottom:1007.798850px;}
.y6{bottom:1015.828650px;}
.y1f9{bottom:1016.142600px;}
.y8a{bottom:1017.571350px;}
.y19f{bottom:1017.575700px;}
.y126{bottom:1020.261000px;}
.y1e3{bottom:1020.545100px;}
.y160{bottom:1023.259650px;}
.y1f8{bottom:1029.518850px;}
.y1e2{bottom:1033.291350px;}
.y89{bottom:1035.571350px;}
.y19e{bottom:1035.575700px;}
.y1f7{bottom:1042.895100px;}
.y125{bottom:1044.898500px;}
.y161{bottom:1044.900150px;}
.y1e1{bottom:1046.037600px;}
.y88{bottom:1053.571350px;}
.y19d{bottom:1053.575700px;}
.y5{bottom:1054.834650px;}
.y1f6{bottom:1056.271350px;}
.y1e0{bottom:1058.783850px;}
.y124{bottom:1066.918350px;}
.y1f5{bottom:1069.647600px;}
.y1df{bottom:1071.530100px;}
.y87{bottom:1071.571350px;}
.y19c{bottom:1071.575700px;}
.y1f4{bottom:1083.023850px;}
.y123{bottom:1083.415350px;}
.y1de{bottom:1084.276350px;}
.y86{bottom:1089.571350px;}
.y19b{bottom:1089.575700px;}
.y4{bottom:1093.840650px;}
.y1f3{bottom:1096.400100px;}
.y1dd{bottom:1097.022600px;}
.y122{bottom:1099.912350px;}
.y85{bottom:1107.571350px;}
.y19a{bottom:1107.575700px;}
.y1dc{bottom:1109.768850px;}
.y1f2{bottom:1109.776350px;}
.y3{bottom:1140.946200px;}
.y84{bottom:1140.946350px;}
.h8{height:23.167872px;}
.h11{height:32.895000px;}
.h3{height:34.944000px;}
.hf{height:35.088000px;}
.h7{height:36.000000px;}
.h9{height:39.312000px;}
.he{height:39.474000px;}
.h12{height:41.774385px;}
.h2{height:43.680000px;}
.h4{height:43.860000px;}
.ha{height:53.400000px;}
.h6{height:61.687098px;}
.hb{height:62.379600px;}
.hc{height:62.404200px;}
.h10{height:62.421600px;}
.h5{height:95.906250px;}
.hd{height:110.320312px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:60.750000px;}
.x3{left:66.450000px;}
.x6{left:70.399950px;}
.xd{left:74.250000px;}
.x17{left:84.667500px;}
.x13{left:175.164000px;}
.x4{left:220.379400px;}
.x2{left:252.000150px;}
.x15{left:284.635500px;}
.x14{left:394.161000px;}
.xe{left:460.324650px;}
.x11{left:466.332000px;}
.xf{left:473.824650px;}
.x16{left:484.249500px;}
.x8{left:537.524400px;}
.x9{left:546.518850px;}
.xa{left:558.395850px;}
.xb{left:564.518850px;}
.x12{left:634.164000px;}
.x10{left:723.708900px;}
.x7{left:752.065200px;}
.x1{left:824.963400px;}
.xc{left:853.499955px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:17.746667pt;}
.v3{vertical-align:23.978133pt;}
.v1{vertical-align:26.400000pt;}
.v4{vertical-align:48.000000pt;}
.ls4{letter-spacing:-1.578667pt;}
.lsb{letter-spacing:-0.399600pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000480pt;}
.ls7{letter-spacing:0.176800pt;}
.ls8{letter-spacing:0.220800pt;}
.ls6{letter-spacing:0.266667pt;}
.lsa{letter-spacing:0.600000pt;}
.ls0{letter-spacing:3.360000pt;}
.ls1{letter-spacing:15.289067pt;}
.ls2{letter-spacing:21.770667pt;}
.ls5{letter-spacing:1334.400533pt;}
.ws3{word-spacing:-18.186667pt;}
.ws37{word-spacing:-13.866667pt;}
.ws7{word-spacing:-13.344000pt;}
.ws4{word-spacing:-12.800000pt;}
.ws5{word-spacing:-11.520000pt;}
.wsdc{word-spacing:-11.120000pt;}
.wsfd{word-spacing:-10.999600pt;}
.ws0{word-spacing:-10.813088pt;}
.wsfe{word-spacing:-10.720400pt;}
.wsb{word-spacing:-10.240427pt;}
.ws2{word-spacing:-10.240000pt;}
.wsb4{word-spacing:-9.370400pt;}
.ws6{word-spacing:-9.193600pt;}
.ws1{word-spacing:-6.789120pt;}
.wsf{word-spacing:-6.240000pt;}
.wsa{word-spacing:-5.418667pt;}
.ws80{word-spacing:-4.533867pt;}
.ws97{word-spacing:-4.373333pt;}
.wsaa{word-spacing:-4.000000pt;}
.wsea{word-spacing:-3.893333pt;}
.wsaf{word-spacing:-3.733867pt;}
.ws6b{word-spacing:-3.253333pt;}
.ws8c{word-spacing:-3.200000pt;}
.ws3a{word-spacing:-2.932800pt;}
.ws15{word-spacing:-2.826133pt;}
.ws21{word-spacing:-2.719467pt;}
.wsae{word-spacing:-2.666667pt;}
.wsf3{word-spacing:-2.560000pt;}
.ws9a{word-spacing:-2.453867pt;}
.wsc6{word-spacing:-2.240533pt;}
.wsc4{word-spacing:-2.186667pt;}
.ws11{word-spacing:-2.080000pt;}
.ws94{word-spacing:-2.026133pt;}
.wsf5{word-spacing:-1.920000pt;}
.wsde{word-spacing:-1.760000pt;}
.wse5{word-spacing:-1.653867pt;}
.wsc{word-spacing:-1.578667pt;}
.wsf1{word-spacing:-1.439467pt;}
.ws6d{word-spacing:-1.386667pt;}
.ws33{word-spacing:-1.295520pt;}
.wsdd{word-spacing:-1.280000pt;}
.ws2e{word-spacing:-1.248000pt;}
.ws77{word-spacing:-1.120000pt;}
.ws5d{word-spacing:-1.013333pt;}
.wsf7{word-spacing:-0.960533pt;}
.ws35{word-spacing:-0.816000pt;}
.wsd9{word-spacing:-0.693333pt;}
.ws5c{word-spacing:-0.671840pt;}
.wsff{word-spacing:-0.600000pt;}
.ws76{word-spacing:-0.586667pt;}
.ws44{word-spacing:-0.532800pt;}
.wsfb{word-spacing:-0.373333pt;}
.ws61{word-spacing:-0.266667pt;}
.ws69{word-spacing:-0.213333pt;}
.wsfc{word-spacing:-0.200000pt;}
.ws78{word-spacing:-0.160533pt;}
.ws83{word-spacing:-0.106667pt;}
.ws2b{word-spacing:-0.096000pt;}
.ws8f{word-spacing:-0.053867pt;}
.ws8{word-spacing:0.000000pt;}
.ws98{word-spacing:0.053867pt;}
.wsd8{word-spacing:0.160533pt;}
.wsa7{word-spacing:0.213333pt;}
.wse9{word-spacing:0.426667pt;}
.wsed{word-spacing:0.480000pt;}
.wse{word-spacing:0.532800pt;}
.ws7a{word-spacing:0.586667pt;}
.wse6{word-spacing:0.639467pt;}
.ws32{word-spacing:0.720000pt;}
.wsa1{word-spacing:0.853867pt;}
.ws6f{word-spacing:0.906667pt;}
.ws1d{word-spacing:1.226133pt;}
.wsf6{word-spacing:1.280000pt;}
.wscd{word-spacing:1.343326pt;}
.ws34{word-spacing:1.488480pt;}
.wsbf{word-spacing:1.493333pt;}
.wsa0{word-spacing:1.547200pt;}
.ws9{word-spacing:1.578667pt;}
.ws17{word-spacing:1.653867pt;}
.ws1a{word-spacing:1.760000pt;}
.ws13{word-spacing:1.813333pt;}
.ws4d{word-spacing:1.866667pt;}
.ws73{word-spacing:1.920000pt;}
.ws10{word-spacing:1.973333pt;}
.ws60{word-spacing:2.026133pt;}
.ws81{word-spacing:2.080000pt;}
.ws82{word-spacing:2.186667pt;}
.ws23{word-spacing:2.227680pt;}
.ws30{word-spacing:2.256000pt;}
.wseb{word-spacing:2.293333pt;}
.ws91{word-spacing:2.347200pt;}
.ws3b{word-spacing:2.475554pt;}
.wsd3{word-spacing:2.506667pt;}
.ws3f{word-spacing:2.666667pt;}
.ws56{word-spacing:2.719467pt;}
.wsf0{word-spacing:2.826133pt;}
.ws2d{word-spacing:2.880000pt;}
.ws59{word-spacing:2.986667pt;}
.wsec{word-spacing:3.040533pt;}
.wsa9{word-spacing:3.093333pt;}
.ws6c{word-spacing:3.147200pt;}
.ws48{word-spacing:3.253333pt;}
.ws22{word-spacing:3.360000pt;}
.ws4b{word-spacing:3.413333pt;}
.ws58{word-spacing:3.519467pt;}
.ws3e{word-spacing:3.573333pt;}
.ws2c{word-spacing:3.600000pt;}
.ws43{word-spacing:3.626133pt;}
.ws1e{word-spacing:3.680000pt;}
.ws3c{word-spacing:3.733867pt;}
.ws9f{word-spacing:3.893333pt;}
.ws8e{word-spacing:4.053333pt;}
.ws79{word-spacing:4.106667pt;}
.ws85{word-spacing:4.160000pt;}
.wsdf{word-spacing:4.212800pt;}
.wsc3{word-spacing:4.319467pt;}
.ws9e{word-spacing:4.373333pt;}
.ws6a{word-spacing:4.426133pt;}
.wscc{word-spacing:4.533867pt;}
.ws8b{word-spacing:4.586667pt;}
.ws9b{word-spacing:4.693333pt;}
.ws31{word-spacing:4.800480pt;}
.wsa4{word-spacing:4.906667pt;}
.ws29{word-spacing:4.960000pt;}
.wsab{word-spacing:5.012800pt;}
.wscb{word-spacing:5.119467pt;}
.wsdb{word-spacing:5.173333pt;}
.ws47{word-spacing:5.227200pt;}
.ws6e{word-spacing:5.280000pt;}
.wsd7{word-spacing:5.440533pt;}
.ws74{word-spacing:5.546667pt;}
.ws45{word-spacing:5.600000pt;}
.wsc2{word-spacing:5.653333pt;}
.ws62{word-spacing:5.760000pt;}
.wsee{word-spacing:5.812800pt;}
.wsb3{word-spacing:5.866667pt;}
.ws19{word-spacing:5.919467pt;}
.wsb1{word-spacing:5.973333pt;}
.ws46{word-spacing:6.080000pt;}
.ws2a{word-spacing:6.240000pt;}
.ws39{word-spacing:6.293333pt;}
.ws36{word-spacing:6.336000pt;}
.ws68{word-spacing:6.346667pt;}
.ws55{word-spacing:6.453333pt;}
.ws96{word-spacing:6.560000pt;}
.ws2f{word-spacing:6.624000pt;}
.ws52{word-spacing:6.827200pt;}
.wsd2{word-spacing:6.880000pt;}
.ws95{word-spacing:6.933333pt;}
.ws5a{word-spacing:6.986667pt;}
.wsc7{word-spacing:7.040000pt;}
.wsb0{word-spacing:7.093333pt;}
.ws3d{word-spacing:7.199467pt;}
.ws51{word-spacing:7.253333pt;}
.wsd6{word-spacing:7.306133pt;}
.ws18{word-spacing:7.360000pt;}
.ws12{word-spacing:7.466667pt;}
.ws1b{word-spacing:7.520533pt;}
.ws70{word-spacing:7.573333pt;}
.wsd1{word-spacing:7.602400pt;}
.wsd{word-spacing:7.733333pt;}
.wsc1{word-spacing:7.786667pt;}
.ws87{word-spacing:7.840000pt;}
.ws53{word-spacing:7.999467pt;}
.wsc9{word-spacing:8.106133pt;}
.ws5e{word-spacing:8.160000pt;}
.wse0{word-spacing:8.213867pt;}
.ws5f{word-spacing:8.266667pt;}
.ws7e{word-spacing:8.320533pt;}
.ws54{word-spacing:8.373333pt;}
.ws8d{word-spacing:8.586667pt;}
.wsca{word-spacing:8.640000pt;}
.wsac{word-spacing:8.799467pt;}
.ws75{word-spacing:8.853333pt;}
.wsc5{word-spacing:8.907200pt;}
.wscf{word-spacing:9.173333pt;}
.ws26{word-spacing:9.226667pt;}
.ws16{word-spacing:9.333333pt;}
.ws63{word-spacing:9.386133pt;}
.ws8a{word-spacing:9.546667pt;}
.wsad{word-spacing:9.599467pt;}
.ws86{word-spacing:9.653333pt;}
.ws84{word-spacing:9.707200pt;}
.ws4c{word-spacing:9.760000pt;}
.ws27{word-spacing:9.813867pt;}
.wsa3{word-spacing:9.920000pt;}
.wsce{word-spacing:9.971520pt;}
.wsfa{word-spacing:10.026667pt;}
.ws65{word-spacing:10.240000pt;}
.wsbc{word-spacing:10.346667pt;}
.wse4{word-spacing:10.400533pt;}
.ws89{word-spacing:10.453333pt;}
.wsd4{word-spacing:10.560000pt;}
.wse3{word-spacing:10.643006pt;}
.wsb2{word-spacing:10.720000pt;}
.ws49{word-spacing:10.879467pt;}
.ws72{word-spacing:10.933333pt;}
.wsa8{word-spacing:10.986133pt;}
.wsbb{word-spacing:11.360000pt;}
.wsd0{word-spacing:11.466667pt;}
.ws99{word-spacing:11.626667pt;}
.wsf9{word-spacing:11.786133pt;}
.wsa6{word-spacing:12.000533pt;}
.wsc8{word-spacing:12.053333pt;}
.ws7d{word-spacing:12.107200pt;}
.ws7f{word-spacing:12.213333pt;}
.ws4a{word-spacing:12.426667pt;}
.wse7{word-spacing:12.479467pt;}
.wsa2{word-spacing:12.533333pt;}
.ws40{word-spacing:12.586133pt;}
.wse8{word-spacing:12.800533pt;}
.ws5b{word-spacing:12.853333pt;}
.ws41{word-spacing:13.066667pt;}
.wsef{word-spacing:13.333333pt;}
.wsf4{word-spacing:13.600000pt;}
.ws66{word-spacing:13.653333pt;}
.ws42{word-spacing:13.760000pt;}
.ws7c{word-spacing:13.972800pt;}
.ws24{word-spacing:14.080533pt;}
.ws20{word-spacing:14.133333pt;}
.ws9c{word-spacing:14.187200pt;}
.wsf8{word-spacing:14.240000pt;}
.ws64{word-spacing:14.346667pt;}
.ws4f{word-spacing:14.559467pt;}
.wsbd{word-spacing:14.880533pt;}
.ws9d{word-spacing:15.040000pt;}
.wsbe{word-spacing:15.306667pt;}
.ws7b{word-spacing:15.359467pt;}
.wse1{word-spacing:15.733333pt;}
.wse2{word-spacing:16.052800pt;}
.wsa5{word-spacing:16.266133pt;}
.wsc0{word-spacing:16.373867pt;}
.ws67{word-spacing:16.800000pt;}
.ws4e{word-spacing:17.173867pt;}
.ws38{word-spacing:17.706667pt;}
.wsf2{word-spacing:18.186667pt;}
.ws14{word-spacing:18.506667pt;}
.wsda{word-spacing:18.613333pt;}
.ws71{word-spacing:18.720000pt;}
.ws88{word-spacing:18.773867pt;}
.ws93{word-spacing:18.986667pt;}
.ws25{word-spacing:19.252800pt;}
.ws50{word-spacing:19.467200pt;}
.ws92{word-spacing:20.586667pt;}
.wsba{word-spacing:20.906667pt;}
.wsd5{word-spacing:21.013333pt;}
.ws57{word-spacing:22.293333pt;}
.ws1f{word-spacing:23.093333pt;}
.ws28{word-spacing:24.319467pt;}
.ws1c{word-spacing:31.253333pt;}
.wsb5{word-spacing:166.176000pt;}
.wsb7{word-spacing:179.664000pt;}
.wsb9{word-spacing:227.424000pt;}
.wsb8{word-spacing:244.320000pt;}
.ws90{word-spacing:260.448000pt;}
.wsb6{word-spacing:538.464000pt;}
._a{margin-left:-2577.261120pt;}
._9{margin-left:-1827.406560pt;}
._7{margin-left:-52.480000pt;}
._3{margin-left:-42.640000pt;}
._c{margin-left:-12.960000pt;}
._20{margin-left:-11.000000pt;}
._1e{margin-left:-9.804800pt;}
._21{margin-left:-7.897067pt;}
._d{margin-left:-6.826667pt;}
._5{margin-left:-4.744533pt;}
._2{margin-left:-3.157333pt;}
._0{margin-left:-1.582933pt;}
._4{width:1.186133pt;}
._b{width:2.216533pt;}
._1d{width:11.520000pt;}
._6{width:12.480000pt;}
._22{width:15.240000pt;}
._1f{width:18.320000pt;}
._1{width:29.972267pt;}
._e{width:33.792000pt;}
._17{width:134.208000pt;}
._8{width:162.838080pt;}
._11{width:192.240000pt;}
._10{width:213.744000pt;}
._12{width:217.344000pt;}
._1a{width:221.328000pt;}
._1c{width:223.237333pt;}
._13{width:235.776000pt;}
._14{width:260.880000pt;}
._1b{width:264.864000pt;}
._19{width:274.560000pt;}
._16{width:291.216000pt;}
._15{width:309.360000pt;}
._18{width:320.880000pt;}
._f{width:341.616000pt;}
.fsa{font-size:26.520000pt;}
.fs6{font-size:28.288000pt;}
.fs5{font-size:34.666667pt;}
.fs8{font-size:35.360000pt;}
.fs4{font-size:38.896000pt;}
.fs9{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:36.785200pt;}
.y1{bottom:36.787867pt;}
.y121{bottom:72.521067pt;}
.ye6{bottom:72.521200pt;}
.ybc{bottom:72.534533pt;}
.y70{bottom:72.537467pt;}
.y58{bottom:72.542933pt;}
.y199{bottom:72.551733pt;}
.y28{bottom:72.566933pt;}
.y1db{bottom:72.622533pt;}
.y11e{bottom:72.907867pt;}
.y15f{bottom:72.973867pt;}
.y1da{bottom:83.952533pt;}
.y27{bottom:85.900267pt;}
.y120{bottom:86.921067pt;}
.ye5{bottom:88.521200pt;}
.ybb{bottom:88.534533pt;}
.y6f{bottom:88.537467pt;}
.y57{bottom:88.542933pt;}
.y198{bottom:88.551733pt;}
.y11d{bottom:88.947867pt;}
.y15e{bottom:89.280533pt;}
.y1d9{bottom:95.282533pt;}
.y26{bottom:99.233600pt;}
.y11f{bottom:101.321067pt;}
.ye4{bottom:104.521200pt;}
.yba{bottom:104.534533pt;}
.y6e{bottom:104.537467pt;}
.y56{bottom:104.542933pt;}
.y197{bottom:104.551733pt;}
.y11c{bottom:104.987867pt;}
.y15d{bottom:105.587200pt;}
.y1d8{bottom:106.612533pt;}
.y1d7{bottom:117.942533pt;}
.ye3{bottom:120.521200pt;}
.yb9{bottom:120.534533pt;}
.y6d{bottom:120.537467pt;}
.y55{bottom:120.542933pt;}
.y11b{bottom:121.027867pt;}
.y15c{bottom:121.893867pt;}
.y25{bottom:124.566933pt;}
.y1d6{bottom:129.272533pt;}
.ye2{bottom:136.521200pt;}
.yb8{bottom:136.534533pt;}
.y6c{bottom:136.537467pt;}
.y54{bottom:136.542933pt;}
.y11a{bottom:137.067867pt;}
.y24{bottom:137.900267pt;}
.y15b{bottom:138.200533pt;}
.y1d5{bottom:140.602533pt;}
.y1d4{bottom:151.932533pt;}
.ye1{bottom:152.521200pt;}
.yb7{bottom:152.534533pt;}
.y6b{bottom:152.537467pt;}
.y53{bottom:152.542933pt;}
.y119{bottom:153.107867pt;}
.y196{bottom:154.471733pt;}
.y15a{bottom:154.507200pt;}
.y23{bottom:156.033600pt;}
.y1d3{bottom:163.262533pt;}
.y22{bottom:164.566933pt;}
.ye0{bottom:168.521200pt;}
.yb6{bottom:168.534533pt;}
.y6a{bottom:168.537467pt;}
.y118{bottom:169.147867pt;}
.y195{bottom:170.471733pt;}
.y159{bottom:170.813867pt;}
.y1d2{bottom:174.592533pt;}
.y21{bottom:177.900267pt;}
.ydf{bottom:184.521200pt;}
.yb5{bottom:184.534533pt;}
.y69{bottom:184.537467pt;}
.y117{bottom:185.187867pt;}
.y1d1{bottom:185.922533pt;}
.y194{bottom:186.471733pt;}
.y158{bottom:187.120533pt;}
.y20{bottom:191.233600pt;}
.y1d0{bottom:197.252533pt;}
.yde{bottom:200.521200pt;}
.yb4{bottom:200.534533pt;}
.y68{bottom:200.537467pt;}
.y116{bottom:201.227867pt;}
.y193{bottom:202.471733pt;}
.y157{bottom:203.427200pt;}
.y1f{bottom:204.566933pt;}
.y1cf{bottom:208.582533pt;}
.y52{bottom:212.398933pt;}
.ydd{bottom:216.521200pt;}
.yb3{bottom:216.534533pt;}
.y67{bottom:216.537467pt;}
.y115{bottom:217.267867pt;}
.y192{bottom:218.471733pt;}
.y156{bottom:219.733867pt;}
.y1ce{bottom:219.912533pt;}
.y1e{bottom:222.700267pt;}
.y51{bottom:227.062933pt;}
.y1d{bottom:231.233600pt;}
.y1cd{bottom:231.242533pt;}
.ydc{bottom:232.521200pt;}
.yb2{bottom:232.534533pt;}
.y66{bottom:232.537467pt;}
.y114{bottom:233.307867pt;}
.y191{bottom:234.471733pt;}
.y155{bottom:236.040533pt;}
.y50{bottom:241.726933pt;}
.y1cc{bottom:242.572533pt;}
.y1c{bottom:244.566933pt;}
.ydb{bottom:248.521200pt;}
.yb1{bottom:248.534533pt;}
.y65{bottom:248.537467pt;}
.y113{bottom:249.347867pt;}
.y190{bottom:250.471733pt;}
.y154{bottom:252.347200pt;}
.y1cb{bottom:253.902533pt;}
.y4f{bottom:256.390933pt;}
.y1b{bottom:262.700267pt;}
.yda{bottom:264.521200pt;}
.yb0{bottom:264.534533pt;}
.y64{bottom:264.537467pt;}
.y1ca{bottom:265.232533pt;}
.y112{bottom:265.387867pt;}
.y18f{bottom:266.471733pt;}
.y153{bottom:268.653867pt;}
.y4e{bottom:271.054933pt;}
.y2c{bottom:274.849467pt;}
.y1c9{bottom:276.562533pt;}
.y13e{bottom:278.107200pt;}
.yd9{bottom:280.521200pt;}
.yaf{bottom:280.534533pt;}
.y63{bottom:280.537467pt;}
.y111{bottom:281.427867pt;}
.y18e{bottom:282.471733pt;}
.y152{bottom:284.960533pt;}
.y4d{bottom:285.718933pt;}
.y2b{bottom:287.649467pt;}
.y1c8{bottom:287.892533pt;}
.y13d{bottom:294.107200pt;}
.yd8{bottom:296.521200pt;}
.yae{bottom:296.534533pt;}
.y62{bottom:296.537467pt;}
.y110{bottom:297.467867pt;}
.y18d{bottom:298.471733pt;}
.y1c7{bottom:299.222533pt;}
.y4c{bottom:300.382933pt;}
.y2a{bottom:300.449467pt;}
.y151{bottom:301.267200pt;}
.y13c{bottom:310.107200pt;}
.y1c6{bottom:310.552533pt;}
.yd7{bottom:312.521200pt;}
.yad{bottom:312.534533pt;}
.y61{bottom:312.537467pt;}
.y29{bottom:313.249467pt;}
.y10f{bottom:313.507867pt;}
.y18c{bottom:314.471733pt;}
.y4b{bottom:315.046933pt;}
.y150{bottom:317.573867pt;}
.y1c5{bottom:321.882533pt;}
.y13b{bottom:326.107200pt;}
.yd6{bottom:328.521200pt;}
.yac{bottom:328.534533pt;}
.y60{bottom:328.537467pt;}
.yf1{bottom:328.801200pt;}
.y10e{bottom:329.547867pt;}
.y4a{bottom:329.710933pt;}
.y18b{bottom:330.471733pt;}
.y1c4{bottom:333.212533pt;}
.y14f{bottom:333.880533pt;}
.y49{bottom:344.374933pt;}
.yd5{bottom:344.521200pt;}
.yab{bottom:344.534533pt;}
.y5f{bottom:344.537467pt;}
.y1c3{bottom:344.542533pt;}
.yf0{bottom:344.801200pt;}
.y10d{bottom:345.587867pt;}
.y18a{bottom:346.471733pt;}
.y14e{bottom:350.187200pt;}
.y1c2{bottom:355.872533pt;}
.y48{bottom:359.038933pt;}
.yd4{bottom:360.521200pt;}
.yaa{bottom:360.534533pt;}
.y5e{bottom:360.537467pt;}
.yef{bottom:360.801200pt;}
.y10c{bottom:361.627867pt;}
.y189{bottom:362.471733pt;}
.y14d{bottom:366.493867pt;}
.y1c1{bottom:367.202533pt;}
.y13a{bottom:371.093867pt;}
.y47{bottom:373.702933pt;}
.yd3{bottom:376.521200pt;}
.ya9{bottom:376.534533pt;}
.y5d{bottom:376.537467pt;}
.yee{bottom:376.801200pt;}
.y10b{bottom:377.667867pt;}
.y188{bottom:378.471733pt;}
.y1c0{bottom:378.532533pt;}
.y14c{bottom:382.800533pt;}
.y139{bottom:387.093867pt;}
.y46{bottom:388.366933pt;}
.y1bf{bottom:389.862533pt;}
.yd2{bottom:392.521200pt;}
.y5c{bottom:392.542933pt;}
.yed{bottom:392.801200pt;}
.y10a{bottom:393.707867pt;}
.y187{bottom:394.471733pt;}
.y14b{bottom:399.107200pt;}
.y1be{bottom:401.192533pt;}
.y45{bottom:403.030933pt;}
.y138{bottom:403.093867pt;}
.yd1{bottom:408.521200pt;}
.y5b{bottom:408.542933pt;}
.y109{bottom:409.747867pt;}
.y186{bottom:410.471733pt;}
.y1bd{bottom:412.522533pt;}
.y14a{bottom:415.413867pt;}
.y44{bottom:417.694933pt;}
.y137{bottom:419.093867pt;}
.y1bc{bottom:423.852533pt;}
.ya8{bottom:424.507867pt;}
.yd0{bottom:424.521200pt;}
.y5a{bottom:424.542933pt;}
.y108{bottom:425.787867pt;}
.y185{bottom:426.471733pt;}
.y149{bottom:431.720533pt;}
.y43{bottom:432.358933pt;}
.y136{bottom:435.093867pt;}
.y1bb{bottom:435.182533pt;}
.ya7{bottom:440.507867pt;}
.ycf{bottom:440.521200pt;}
.y59{bottom:440.542933pt;}
.y107{bottom:441.827867pt;}
.y184{bottom:442.471733pt;}
.yec{bottom:442.547867pt;}
.y1ba{bottom:446.512533pt;}
.y42{bottom:447.022933pt;}
.y148{bottom:448.027200pt;}
.y135{bottom:451.093867pt;}
.ya6{bottom:456.507867pt;}
.yce{bottom:456.521200pt;}
.y1b9{bottom:457.842533pt;}
.y106{bottom:457.867867pt;}
.y183{bottom:458.471733pt;}
.yeb{bottom:458.547867pt;}
.y41{bottom:461.686933pt;}
.y147{bottom:464.333867pt;}
.y134{bottom:467.093867pt;}
.y1b8{bottom:469.175867pt;}
.ya5{bottom:472.507867pt;}
.ycd{bottom:472.521200pt;}
.y105{bottom:473.907867pt;}
.y182{bottom:474.471733pt;}
.yea{bottom:474.547867pt;}
.y40{bottom:476.350933pt;}
.y146{bottom:480.640533pt;}
.y133{bottom:483.093867pt;}
.y82{bottom:484.107867pt;}
.ya4{bottom:488.507867pt;}
.ycc{bottom:488.521200pt;}
.y104{bottom:489.947867pt;}
.y181{bottom:490.471733pt;}
.ye9{bottom:490.547867pt;}
.y3f{bottom:491.014933pt;}
.y145{bottom:496.947200pt;}
.y81{bottom:498.771867pt;}
.y132{bottom:499.093867pt;}
.ya3{bottom:504.507867pt;}
.ycb{bottom:504.521200pt;}
.y3e{bottom:505.678933pt;}
.y103{bottom:505.987867pt;}
.y180{bottom:506.471733pt;}
.ye8{bottom:506.547867pt;}
.y1a{bottom:510.164133pt;}
.y1b7{bottom:512.507867pt;}
.y144{bottom:513.253867pt;}
.y80{bottom:513.435867pt;}
.y131{bottom:515.093867pt;}
.y3d{bottom:520.342933pt;}
.ya2{bottom:520.507867pt;}
.yca{bottom:520.521200pt;}
.y102{bottom:522.027867pt;}
.y17f{bottom:522.471733pt;}
.ye7{bottom:522.547867pt;}
.y19{bottom:523.497467pt;}
.y1b6{bottom:525.307867pt;}
.y7f{bottom:528.099867pt;}
.y143{bottom:529.560533pt;}
.y130{bottom:531.093867pt;}
.y3c{bottom:535.006933pt;}
.ya1{bottom:536.507867pt;}
.yc9{bottom:536.521200pt;}
.y18{bottom:536.830800pt;}
.y101{bottom:538.067867pt;}
.y1b5{bottom:538.107867pt;}
.y17e{bottom:538.471733pt;}
.y7e{bottom:542.763867pt;}
.y142{bottom:545.867200pt;}
.y12f{bottom:547.093867pt;}
.y3b{bottom:549.670933pt;}
.y1b4{bottom:550.907867pt;}
.ya0{bottom:552.507867pt;}
.yc8{bottom:552.521200pt;}
.y100{bottom:554.107867pt;}
.y17d{bottom:554.471733pt;}
.y7d{bottom:557.438533pt;}
.y17{bottom:562.164133pt;}
.y141{bottom:562.173867pt;}
.y12e{bottom:563.093867pt;}
.y1b3{bottom:563.707867pt;}
.y3a{bottom:564.334933pt;}
.y9f{bottom:568.507867pt;}
.yc7{bottom:568.521200pt;}
.yff{bottom:570.147867pt;}
.y17c{bottom:570.471733pt;}
.y7c{bottom:572.102533pt;}
.y16{bottom:575.497467pt;}
.y1b2{bottom:576.507867pt;}
.y140{bottom:578.480533pt;}
.y39{bottom:578.998933pt;}
.y12d{bottom:579.093867pt;}
.y9e{bottom:584.507867pt;}
.yc6{bottom:584.521200pt;}
.yfe{bottom:586.187867pt;}
.y17b{bottom:586.471733pt;}
.y7b{bottom:586.766533pt;}
.y15{bottom:588.830800pt;}
.y38{bottom:593.662933pt;}
.y1b1{bottom:594.641200pt;}
.y13f{bottom:594.787200pt;}
.y12c{bottom:595.093867pt;}
.y9d{bottom:600.507867pt;}
.yc5{bottom:600.521200pt;}
.y7a{bottom:601.430533pt;}
.y14{bottom:602.164133pt;}
.yfd{bottom:602.227867pt;}
.y17a{bottom:602.471733pt;}
.y37{bottom:608.326933pt;}
.y12b{bottom:611.093867pt;}
.y1b0{bottom:612.774533pt;}
.y13{bottom:615.497467pt;}
.y79{bottom:616.107867pt;}
.y9c{bottom:616.507867pt;}
.yc4{bottom:616.521200pt;}
.yfc{bottom:618.267867pt;}
.y179{bottom:618.471733pt;}
.y36{bottom:622.990933pt;}
.y12{bottom:628.830800pt;}
.y78{bottom:630.771867pt;}
.y1af{bottom:630.907867pt;}
.y9b{bottom:632.507867pt;}
.yc3{bottom:632.521200pt;}
.yfb{bottom:634.307867pt;}
.y178{bottom:634.471733pt;}
.y35{bottom:637.654933pt;}
.y1ae{bottom:643.707867pt;}
.y77{bottom:645.435867pt;}
.y9a{bottom:648.507867pt;}
.yc2{bottom:648.521200pt;}
.y83{bottom:649.050440pt;}
.y11{bottom:650.164133pt;}
.yfa{bottom:650.347867pt;}
.y177{bottom:650.471733pt;}
.y34{bottom:652.318933pt;}
.y16e{bottom:655.133733pt;}
.y76{bottom:660.099867pt;}
.y1ad{bottom:661.841200pt;}
.y10{bottom:663.497467pt;}
.y99{bottom:664.507867pt;}
.yc1{bottom:664.521200pt;}
.yf9{bottom:666.387867pt;}
.y176{bottom:666.471733pt;}
.y33{bottom:666.982933pt;}
.y75{bottom:674.763867pt;}
.yf{bottom:676.830800pt;}
.y16d{bottom:678.732133pt;}
.y98{bottom:680.507867pt;}
.yc0{bottom:680.521200pt;}
.y32{bottom:681.646933pt;}
.yf8{bottom:682.427867pt;}
.y175{bottom:682.471733pt;}
.y74{bottom:689.435867pt;}
.ye{bottom:690.164133pt;}
.y31{bottom:696.310933pt;}
.y97{bottom:696.507867pt;}
.ybf{bottom:696.521200pt;}
.y16c{bottom:696.636133pt;}
.yf7{bottom:698.467867pt;}
.y1ac{bottom:698.641200pt;}
.yd{bottom:703.497467pt;}
.y73{bottom:704.099867pt;}
.y30{bottom:710.974933pt;}
.y1ab{bottom:711.441200pt;}
.y96{bottom:712.507867pt;}
.ybe{bottom:712.521200pt;}
.y174{bottom:714.467867pt;}
.yf6{bottom:714.507867pt;}
.y16b{bottom:715.872133pt;}
.yc{bottom:716.830800pt;}
.y72{bottom:718.763867pt;}
.y2f{bottom:725.638933pt;}
.y95{bottom:728.507867pt;}
.ybd{bottom:728.521200pt;}
.y1aa{bottom:729.574533pt;}
.yb{bottom:730.164133pt;}
.y173{bottom:730.467867pt;}
.yf5{bottom:730.547867pt;}
.y16a{bottom:735.108133pt;}
.y2e{bottom:740.302933pt;}
.y1a9{bottom:742.374533pt;}
.ya{bottom:743.497467pt;}
.y94{bottom:744.507867pt;}
.y172{bottom:746.467867pt;}
.yf4{bottom:746.587867pt;}
.y71{bottom:746.969467pt;}
.y1f1{bottom:748.467867pt;}
.y206{bottom:748.667867pt;}
.y169{bottom:754.344133pt;}
.y2d{bottom:754.969600pt;}
.y1a8{bottom:755.174533pt;}
.y9{bottom:756.830800pt;}
.y1f0{bottom:759.797867pt;}
.y93{bottom:760.507867pt;}
.y205{bottom:760.557867pt;}
.y171{bottom:762.467867pt;}
.yf3{bottom:762.627867pt;}
.y1ef{bottom:771.191200pt;}
.y204{bottom:772.447867pt;}
.y1a7{bottom:773.307867pt;}
.y168{bottom:773.580133pt;}
.y92{bottom:776.507867pt;}
.y170{bottom:778.467867pt;}
.yf2{bottom:778.667867pt;}
.y1ee{bottom:782.521200pt;}
.y203{bottom:784.337867pt;}
.y1a6{bottom:786.107867pt;}
.y91{bottom:792.507867pt;}
.y167{bottom:792.816133pt;}
.y1ed{bottom:793.851200pt;}
.y16f{bottom:794.467867pt;}
.y202{bottom:796.227867pt;}
.y1a5{bottom:798.907867pt;}
.y1ec{bottom:805.181200pt;}
.y201{bottom:808.117867pt;}
.y90{bottom:808.507867pt;}
.y1a4{bottom:811.707867pt;}
.y166{bottom:812.052133pt;}
.y8{bottom:816.302800pt;}
.y1eb{bottom:816.511200pt;}
.y200{bottom:820.007867pt;}
.y8f{bottom:824.507867pt;}
.y1ea{bottom:827.841200pt;}
.y165{bottom:831.288133pt;}
.y1ff{bottom:831.897867pt;}
.y12a{bottom:834.145867pt;}
.y1a3{bottom:837.307867pt;}
.y1e9{bottom:839.171200pt;}
.y8e{bottom:840.507867pt;}
.y1fe{bottom:843.787867pt;}
.y129{bottom:847.479200pt;}
.y1a2{bottom:850.107867pt;}
.y1e8{bottom:850.501200pt;}
.y164{bottom:850.524133pt;}
.y1fd{bottom:855.677867pt;}
.y8d{bottom:856.507867pt;}
.y1e7{bottom:861.831200pt;}
.y1a1{bottom:862.907867pt;}
.y1fc{bottom:867.567867pt;}
.y7{bottom:868.286800pt;}
.y163{bottom:869.760133pt;}
.y128{bottom:871.090667pt;}
.y8c{bottom:872.507867pt;}
.y1e6{bottom:873.161200pt;}
.y1a0{bottom:875.707867pt;}
.y1fb{bottom:879.457867pt;}
.y1e5{bottom:884.491200pt;}
.y162{bottom:887.664133pt;}
.y8b{bottom:888.507867pt;}
.y127{bottom:888.994667pt;}
.y1fa{bottom:891.347867pt;}
.y1e4{bottom:895.821200pt;}
.y6{bottom:902.958800pt;}
.y1f9{bottom:903.237867pt;}
.y8a{bottom:904.507867pt;}
.y19f{bottom:904.511733pt;}
.y126{bottom:906.898667pt;}
.y1e3{bottom:907.151200pt;}
.y160{bottom:909.564133pt;}
.y1f8{bottom:915.127867pt;}
.y1e2{bottom:918.481200pt;}
.y89{bottom:920.507867pt;}
.y19e{bottom:920.511733pt;}
.y1f7{bottom:927.017867pt;}
.y125{bottom:928.798667pt;}
.y161{bottom:928.800133pt;}
.y1e1{bottom:929.811200pt;}
.y88{bottom:936.507867pt;}
.y19d{bottom:936.511733pt;}
.y5{bottom:937.630800pt;}
.y1f6{bottom:938.907867pt;}
.y1e0{bottom:941.141200pt;}
.y124{bottom:948.371867pt;}
.y1f5{bottom:950.797867pt;}
.y1df{bottom:952.471200pt;}
.y87{bottom:952.507867pt;}
.y19c{bottom:952.511733pt;}
.y1f4{bottom:962.687867pt;}
.y123{bottom:963.035867pt;}
.y1de{bottom:963.801200pt;}
.y86{bottom:968.507867pt;}
.y19b{bottom:968.511733pt;}
.y4{bottom:972.302800pt;}
.y1f3{bottom:974.577867pt;}
.y1dd{bottom:975.131200pt;}
.y122{bottom:977.699867pt;}
.y85{bottom:984.507867pt;}
.y19a{bottom:984.511733pt;}
.y1dc{bottom:986.461200pt;}
.y1f2{bottom:986.467867pt;}
.y3{bottom:1014.174400pt;}
.y84{bottom:1014.174533pt;}
.h8{height:20.593664pt;}
.h11{height:29.240000pt;}
.h3{height:31.061333pt;}
.hf{height:31.189333pt;}
.h7{height:32.000000pt;}
.h9{height:34.944000pt;}
.he{height:35.088000pt;}
.h12{height:37.132787pt;}
.h2{height:38.826667pt;}
.h4{height:38.986667pt;}
.ha{height:47.466667pt;}
.h6{height:54.832976pt;}
.hb{height:55.448533pt;}
.hc{height:55.470400pt;}
.h10{height:55.485867pt;}
.h5{height:85.250000pt;}
.hd{height:98.062500pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:54.000000pt;}
.x3{left:59.066667pt;}
.x6{left:62.577733pt;}
.xd{left:66.000000pt;}
.x17{left:75.260000pt;}
.x13{left:155.701333pt;}
.x4{left:195.892800pt;}
.x2{left:224.000133pt;}
.x15{left:253.009333pt;}
.x14{left:350.365333pt;}
.xe{left:409.177467pt;}
.x11{left:414.517333pt;}
.xf{left:421.177467pt;}
.x16{left:430.444000pt;}
.x8{left:477.799467pt;}
.x9{left:485.794533pt;}
.xa{left:496.351867pt;}
.xb{left:501.794533pt;}
.x12{left:563.701333pt;}
.x10{left:643.296800pt;}
.x7{left:668.502400pt;}
.x1{left:733.300800pt;}
.xc{left:758.666627pt;}
}




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