
    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_b353cc12fd7161abf0921774.woff')format("woff");}.ff1{font-family:ff1;line-height:0.730957;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_3eed31a2f1457f8fc995cd14.woff')format("woff");}.ff2{font-family:ff2;line-height:0.812000;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_d82c84e82516ef4db2389349.woff')format("woff");}.ff3{font-family:ff3;line-height:0.943359;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_ebe79c3a595f260085116163.woff')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_81289577061a858d741490fe.woff')format("woff");}.ff5{font-family:ff5;line-height:0.936000;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_4e5fa0d87a4f14dac3f600ff.woff')format("woff");}.ff6{font-family:ff6;line-height:0.912308;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_aac308a393a4b10b598c6f4a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_ffb9280eb2b7156d1c64e54b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_3942a2c1121a35bebbe77bbb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_81289577061a858d741490fe.woff')format("woff");}.ffa{font-family:ffa;line-height:0.936000;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_81289577061a858d741490fe.woff')format("woff");}.ffb{font-family:ffb;line-height:0.936000;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_81289577061a858d741490fe.woff')format("woff");}.ffc{font-family:ffc;line-height:0.936000;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_1100595eb72f7cc8e20d1499.woff')format("woff");}.ffd{font-family:ffd;line-height:0.890137;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_6f272c8c933f764735117ffe.woff')format("woff");}.ffe{font-family:ffe;line-height:1.057617;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_ca17eedef30e0dd2ebad6a4d.woff')format("woff");}.fff{font-family:fff;line-height:0.781000;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_15bf16411cc0017d257f5b30.woff')format("woff");}.ff10{font-family:ff10;line-height:0.912308;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_614c094126df17f7bbd06b35.woff')format("woff");}.ff11{font-family:ff11;line-height:0.890137;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_a1bd37b99d6048a524cd9e9a.woff')format("woff");}.ff12{font-family:ff12;line-height:1.057617;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_5b3ac527e10a5e8f470350ae.woff')format("woff");}.ff13{font-family:ff13;line-height:0.890137;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_b29764f901a1670986a5eb47.woff')format("woff");}.ff14{font-family:ff14;line-height:1.057617;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_81289577061a858d741490fe.woff')format("woff");}.ff15{font-family:ff15;line-height:0.936000;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_ca17eedef30e0dd2ebad6a4d.woff')format("woff");}.ff16{font-family:ff16;line-height:0.781000;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_15bf16411cc0017d257f5b30.woff')format("woff");}.ff17{font-family:ff17;line-height:0.912308;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_5b3ac527e10a5e8f470350ae.woff')format("woff");}.ff18{font-family:ff18;line-height:0.890137;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_b29764f901a1670986a5eb47.woff')format("woff");}.ff19{font-family:ff19;line-height:1.057617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_81289577061a858d741490fe.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_ca17eedef30e0dd2ebad6a4d.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.781000;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:ff1c;src:url('chunks/assets/font_15bf16411cc0017d257f5b30.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.912308;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:ff1d;src:url('chunks/assets/font_e5d2741bc85ec2cbab7c7090.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.893555;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.142000px;}
.v2{vertical-align:19.980000px;}
.lsb{letter-spacing:-3.552000px;}
.lsa{letter-spacing:-2.588520px;}
.lsd{letter-spacing:-1.650000px;}
.lsc{letter-spacing:-1.320000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.004920px;}
.ls7{letter-spacing:0.005520px;}
.ls5{letter-spacing:8.640000px;}
.ls1{letter-spacing:10.800000px;}
.ls3{letter-spacing:13.200000px;}
.ls9{letter-spacing:14.400000px;}
.ls2{letter-spacing:19.585200px;}
.ls6{letter-spacing:28.800000px;}
.ls4{letter-spacing:36.000000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-98.766600px;}
.wsb{word-spacing:-92.160000px;}
.ws15{word-spacing:-72.479400px;}
.wsa{word-spacing:-36.180000px;}
.ws17{word-spacing:-31.680000px;}
.ws5{word-spacing:-25.812000px;}
.wsa2{word-spacing:-20.016000px;}
.ws22{word-spacing:-16.680000px;}
.ws18{word-spacing:-15.012000px;}
.wsc{word-spacing:-14.520000px;}
.ws24{word-spacing:-14.400000px;}
.ws23{word-spacing:-13.344000px;}
.ws6{word-spacing:-12.960000px;}
.ws10{word-spacing:-10.560000px;}
.ws6c{word-spacing:-9.792000px;}
.ws6a{word-spacing:-9.724440px;}
.ws11{word-spacing:-9.570000px;}
.ws39{word-spacing:-7.920000px;}
.wsf{word-spacing:-7.656000px;}
.ws13{word-spacing:-7.194000px;}
.ws6b{word-spacing:-7.135920px;}
.ws7a{word-spacing:-6.300000px;}
.ws5c{word-spacing:-6.060000px;}
.ws51{word-spacing:-5.700000px;}
.ws96{word-spacing:-5.460000px;}
.ws8d{word-spacing:-5.280000px;}
.ws6e{word-spacing:-5.160000px;}
.ws73{word-spacing:-4.980000px;}
.ws32{word-spacing:-4.560000px;}
.wse{word-spacing:-4.290000px;}
.ws58{word-spacing:-4.140000px;}
.ws1f{word-spacing:-4.050000px;}
.ws40{word-spacing:-3.960000px;}
.ws12{word-spacing:-3.894000px;}
.ws3d{word-spacing:-3.780000px;}
.wsd{word-spacing:-3.696000px;}
.ws82{word-spacing:-3.660000px;}
.ws53{word-spacing:-3.240000px;}
.ws84{word-spacing:-3.000000px;}
.ws57{word-spacing:-2.940000px;}
.ws9e{word-spacing:-2.754000px;}
.ws9a{word-spacing:-2.376000px;}
.ws71{word-spacing:-2.280000px;}
.ws1{word-spacing:-2.220000px;}
.ws4f{word-spacing:-2.160000px;}
.ws4e{word-spacing:-2.100000px;}
.ws2{word-spacing:-1.998000px;}
.ws61{word-spacing:-1.980000px;}
.ws3c{word-spacing:-1.920000px;}
.ws95{word-spacing:-1.860000px;}
.ws9c{word-spacing:-1.836000px;}
.ws6d{word-spacing:-1.740000px;}
.ws9f{word-spacing:-1.728000px;}
.ws46{word-spacing:-1.320000px;}
.ws2d{word-spacing:-1.260000px;}
.ws31{word-spacing:-1.200000px;}
.ws1d{word-spacing:-1.080000px;}
.ws3{word-spacing:-0.972000px;}
.ws69{word-spacing:-0.576000px;}
.ws60{word-spacing:-0.540000px;}
.ws9d{word-spacing:-0.486000px;}
.ws94{word-spacing:-0.480000px;}
.ws5f{word-spacing:-0.240000px;}
.ws0{word-spacing:0.000000px;}
.ws38{word-spacing:0.060000px;}
.ws2a{word-spacing:0.120000px;}
.ws68{word-spacing:0.240000px;}
.ws65{word-spacing:0.300000px;}
.ws3a{word-spacing:0.420000px;}
.ws1b{word-spacing:0.540000px;}
.ws3f{word-spacing:0.720000px;}
.ws6f{word-spacing:0.780000px;}
.ws9b{word-spacing:0.918000px;}
.ws77{word-spacing:1.500000px;}
.wsa3{word-spacing:1.650000px;}
.ws8c{word-spacing:1.680000px;}
.ws48{word-spacing:1.728000px;}
.ws5a{word-spacing:1.800000px;}
.ws34{word-spacing:1.980000px;}
.ws5d{word-spacing:2.160000px;}
.ws92{word-spacing:2.340000px;}
.wsa0{word-spacing:2.430000px;}
.ws27{word-spacing:2.520000px;}
.ws7b{word-spacing:2.580000px;}
.ws89{word-spacing:2.592000px;}
.ws5b{word-spacing:2.760000px;}
.ws8a{word-spacing:2.820000px;}
.ws50{word-spacing:3.000000px;}
.ws2b{word-spacing:3.120000px;}
.ws79{word-spacing:3.180000px;}
.ws70{word-spacing:3.480000px;}
.ws8e{word-spacing:3.600000px;}
.ws37{word-spacing:3.660000px;}
.ws74{word-spacing:3.900000px;}
.ws1a{word-spacing:4.050000px;}
.ws75{word-spacing:4.200000px;}
.ws2f{word-spacing:4.560000px;}
.ws93{word-spacing:4.620000px;}
.ws54{word-spacing:4.920000px;}
.ws3e{word-spacing:5.040000px;}
.ws25{word-spacing:5.340000px;}
.ws30{word-spacing:5.580000px;}
.ws8f{word-spacing:5.760000px;}
.ws86{word-spacing:5.880000px;}
.ws43{word-spacing:6.060000px;}
.ws55{word-spacing:6.120000px;}
.ws20{word-spacing:6.318000px;}
.ws52{word-spacing:6.420000px;}
.ws8b{word-spacing:6.600000px;}
.ws4a{word-spacing:6.720000px;}
.ws4d{word-spacing:6.780000px;}
.ws67{word-spacing:6.840000px;}
.ws87{word-spacing:7.020000px;}
.ws78{word-spacing:7.080000px;}
.ws85{word-spacing:7.140000px;}
.ws45{word-spacing:7.320000px;}
.ws7d{word-spacing:7.440000px;}
.ws5e{word-spacing:8.160000px;}
.ws4b{word-spacing:8.640000px;}
.ws21{word-spacing:8.964000px;}
.ws91{word-spacing:9.000000px;}
.ws47{word-spacing:9.060000px;}
.ws81{word-spacing:9.480000px;}
.ws28{word-spacing:9.720000px;}
.ws1e{word-spacing:9.828000px;}
.ws59{word-spacing:10.020000px;}
.ws97{word-spacing:10.080000px;}
.ws41{word-spacing:10.380000px;}
.ws3b{word-spacing:10.440000px;}
.wsa1{word-spacing:10.638000px;}
.ws44{word-spacing:10.980000px;}
.ws90{word-spacing:11.160000px;}
.ws26{word-spacing:11.220000px;}
.ws64{word-spacing:11.580000px;}
.ws1c{word-spacing:12.312000px;}
.ws7e{word-spacing:12.360000px;}
.ws49{word-spacing:12.540000px;}
.ws33{word-spacing:13.140000px;}
.ws76{word-spacing:13.440000px;}
.ws98{word-spacing:13.620000px;}
.ws35{word-spacing:13.980000px;}
.ws99{word-spacing:14.700000px;}
.ws36{word-spacing:15.060000px;}
.ws2e{word-spacing:15.600000px;}
.ws19{word-spacing:16.686000px;}
.ws2c{word-spacing:17.340000px;}
.ws80{word-spacing:17.580000px;}
.ws56{word-spacing:18.360000px;}
.ws62{word-spacing:18.900000px;}
.ws7c{word-spacing:19.140000px;}
.ws66{word-spacing:19.800000px;}
.ws7{word-spacing:20.574000px;}
.ws63{word-spacing:20.580000px;}
.ws7f{word-spacing:21.660000px;}
.ws29{word-spacing:22.980000px;}
.ws42{word-spacing:23.160000px;}
.ws83{word-spacing:24.360000px;}
.ws4c{word-spacing:24.960000px;}
.ws72{word-spacing:27.240000px;}
.ws88{word-spacing:79.008000px;}
.ws8{word-spacing:81.017400px;}
.ws16{word-spacing:92.554800px;}
.ws4{word-spacing:101.888400px;}
.ws14{word-spacing:107.243400px;}
._11{margin-left:-2067.594000px;}
._37{margin-left:-1881.991200px;}
._2c{margin-left:-1734.116400px;}
._2e{margin-left:-1721.301600px;}
._3e{margin-left:-1718.930400px;}
._41{margin-left:-1698.882600px;}
._35{margin-left:-1598.005800px;}
._39{margin-left:-1535.939400px;}
._26{margin-left:-1473.912000px;}
._30{margin-left:-1406.215800px;}
._28{margin-left:-1347.900600px;}
._9{margin-left:-1344.464400px;}
._31{margin-left:-1314.651000px;}
._18{margin-left:-1272.573000px;}
._f{margin-left:-1238.490600px;}
._33{margin-left:-1212.406200px;}
._2a{margin-left:-1194.616200px;}
._13{margin-left:-1134.312600px;}
._d{margin-left:-1121.347800px;}
._2b{margin-left:-1086.210000px;}
._1d{margin-left:-1068.892800px;}
._15{margin-left:-1065.258000px;}
._3c{margin-left:-1057.346400px;}
._a{margin-left:-1053.270000px;}
._1f{margin-left:-1029.294000px;}
._b{margin-left:-998.220000px;}
._16{margin-left:-951.156000px;}
._36{margin-left:-937.644000px;}
._24{margin-left:-927.258600px;}
._12{margin-left:-924.264000px;}
._22{margin-left:-915.300000px;}
._19{margin-left:-897.210000px;}
._40{margin-left:-882.744000px;}
._60{margin-left:-880.344000px;}
._21{margin-left:-878.310000px;}
._14{margin-left:-861.192000px;}
._3d{margin-left:-858.276000px;}
._1b{margin-left:-851.532000px;}
._32{margin-left:-840.294000px;}
._1c{margin-left:-838.662000px;}
._e{margin-left:-813.078000px;}
._17{margin-left:-796.932000px;}
._23{margin-left:-786.240000px;}
._1e{margin-left:-781.908000px;}
._20{margin-left:-775.644000px;}
._34{margin-left:-767.508000px;}
._42{margin-left:-762.156000px;}
._25{margin-left:-724.668000px;}
._3b{margin-left:-705.240000px;}
._2d{margin-left:-696.222000px;}
._8{margin-left:-693.252000px;}
._61{margin-left:-672.223200px;}
._5c{margin-left:-648.144000px;}
._3f{margin-left:-609.336000px;}
._7{margin-left:-571.860000px;}
._5f{margin-left:-567.961200px;}
._43{margin-left:-563.239800px;}
._5d{margin-left:-504.180600px;}
._1a{margin-left:-479.364000px;}
._2f{margin-left:-441.126000px;}
._10{margin-left:-399.114000px;}
._29{margin-left:-389.346000px;}
._3a{margin-left:-378.162000px;}
._38{margin-left:-366.120000px;}
._5e{margin-left:-360.000000px;}
._27{margin-left:-264.060000px;}
._4d{margin-left:-14.145000px;}
._3{margin-left:-12.834000px;}
._44{margin-left:-10.800000px;}
._4{margin-left:-9.672000px;}
._4b{margin-left:-8.294400px;}
._c{margin-left:-6.993000px;}
._45{margin-left:-5.940600px;}
._4a{margin-left:-4.897200px;}
._0{margin-left:-3.720000px;}
._5{margin-left:-2.442000px;}
._6{margin-left:-1.043400px;}
._49{width:1.015200px;}
._1{width:2.418000px;}
._4c{width:3.590400px;}
._2{width:4.817400px;}
._53{width:6.519000px;}
._48{width:8.532000px;}
._47{width:10.492200px;}
._4e{width:11.658600px;}
._50{width:13.621800px;}
._54{width:15.480600px;}
._4f{width:16.523400px;}
._46{width:20.593200px;}
._52{width:27.976200px;}
._51{width:29.074800px;}
._5b{width:33.880200px;}
._59{width:49.743000px;}
._57{width:52.335000px;}
._58{width:55.837800px;}
._5a{width:59.007000px;}
._55{width:77.280000px;}
._56{width:79.008000px;}
.fcd{color:rgb(246,131,19);}
.fc0{color:rgb(213,185,16);}
.fc2{color:rgb(217,182,26);}
.fc3{color:rgb(35,31,32);}
.fc4{color:rgb(255,255,255);}
.fc6{color:rgb(48,169,64);}
.fcb{color:rgb(0,0,0);}
.fc5{color:rgb(61,123,199);}
.fcc{color:rgb(5,99,193);}
.fc1{color:rgb(0,60,120);}
.fc7{color:transparent;}
.fc8{color:rgb(210,32,39);}
.fce{color:rgb(105,198,71);}
.fca{color:rgb(90,198,243);}
.fc9{color:rgb(47,92,179);}
.fsc{font-size:34.980000px;}
.fsa{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fsd{font-size:90.000000px;}
.fs3{font-size:96.000000px;}
.fsb{font-size:144.000000px;}
.fs8{font-size:180.000000px;}
.fs1{font-size:186.000000px;}
.fs9{font-size:288.000000px;}
.fs0{font-size:300.000000px;}
.fs2{font-size:401.280000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.957000px;}
.y5{bottom:83.368950px;}
.y6{bottom:83.904450px;}
.y35{bottom:84.471900px;}
.y9f{bottom:85.007400px;}
.y118{bottom:124.074600px;}
.y5b{bottom:127.558950px;}
.y9a{bottom:127.559100px;}
.y34{bottom:133.155900px;}
.y5f{bottom:135.315750px;}
.y117{bottom:138.474600px;}
.y14c{bottom:141.958950px;}
.y181{bottom:141.959100px;}
.y99{bottom:142.600050px;}
.y5a{bottom:148.011000px;}
.ye0{bottom:148.440600px;}
.y5e{bottom:151.515750px;}
.y33{bottom:152.407800px;}
.y116{bottom:152.874600px;}
.y14b{bottom:156.358950px;}
.y180{bottom:156.359100px;}
.y98{bottom:160.600050px;}
.ydf{bottom:164.940600px;}
.y115{bottom:167.274600px;}
.y5d{bottom:167.715750px;}
.y59{bottom:168.463050px;}
.y17f{bottom:170.759100px;}
.y32{bottom:171.659850px;}
.y19f{bottom:171.815100px;}
.y97{bottom:178.600050px;}
.y5c{bottom:183.915750px;}
.y17e{bottom:185.159100px;}
.y19e{bottom:188.015100px;}
.y58{bottom:188.914950px;}
.yde{bottom:189.944550px;}
.y31{bottom:190.911750px;}
.y114{bottom:194.430450px;}
.y96{bottom:196.600050px;}
.y17d{bottom:199.559100px;}
.y19d{bottom:204.215100px;}
.ydd{bottom:206.444550px;}
.y57{bottom:209.366850px;}
.y30{bottom:210.163800px;}
.y14a{bottom:211.911000px;}
.y113{bottom:212.430450px;}
.y17c{bottom:213.959100px;}
.y95{bottom:214.600050px;}
.y19c{bottom:220.415100px;}
.ydc{bottom:222.944550px;}
.y17b{bottom:228.359100px;}
.y2f{bottom:229.415700px;}
.y56{bottom:229.818900px;}
.y149{bottom:229.911000px;}
.y112{bottom:230.430450px;}
.y94{bottom:232.600050px;}
.y19b{bottom:236.614950px;}
.ydb{bottom:239.444550px;}
.y17a{bottom:242.759100px;}
.y8e{bottom:244.855350px;}
.y148{bottom:247.911000px;}
.y111{bottom:248.430450px;}
.y2e{bottom:248.667600px;}
.y55{bottom:250.270800px;}
.y93{bottom:250.600050px;}
.y19a{bottom:252.815100px;}
.y1a1{bottom:253.855950px;}
.yda{bottom:255.944550px;}
.y179{bottom:257.159100px;}
.y8d{bottom:265.307400px;}
.y147{bottom:265.911000px;}
.y110{bottom:266.430450px;}
.y2d{bottom:267.919650px;}
.y92{bottom:268.600050px;}
.y199{bottom:269.015100px;}
.y54{bottom:270.722850px;}
.y178{bottom:271.559100px;}
.y1a0{bottom:271.855950px;}
.yd9{bottom:272.444550px;}
.y146{bottom:283.911000px;}
.y10f{bottom:284.430450px;}
.y198{bottom:285.215100px;}
.y8c{bottom:285.759300px;}
.y177{bottom:285.959100px;}
.y2c{bottom:287.171700px;}
.yd8{bottom:288.944550px;}
.y53{bottom:291.174750px;}
.y91{bottom:295.104000px;}
.y197{bottom:301.415100px;}
.y145{bottom:301.911000px;}
.y10e{bottom:302.430450px;}
.y1b8{bottom:305.730000px;}
.y8b{bottom:306.211200px;}
.y2b{bottom:306.423600px;}
.yd7{bottom:310.773000px;}
.y52{bottom:311.626800px;}
.y90{bottom:313.104000px;}
.y196{bottom:317.614950px;}
.y144{bottom:319.911000px;}
.y10d{bottom:320.430450px;}
.y1b7{bottom:325.530000px;}
.y2a{bottom:325.675500px;}
.y176{bottom:326.119050px;}
.y8a{bottom:326.663250px;}
.yd6{bottom:327.273000px;}
.y51{bottom:332.078700px;}
.y195{bottom:333.815100px;}
.y143{bottom:337.911000px;}
.y10c{bottom:338.430450px;}
.y8f{bottom:339.607950px;}
.y175{bottom:344.119050px;}
.y29{bottom:344.927550px;}
.y1b6{bottom:345.330000px;}
.y89{bottom:347.115150px;}
.y194{bottom:350.015100px;}
.yd5{bottom:352.276950px;}
.y50{bottom:352.530600px;}
.y142{bottom:355.911000px;}
.y10b{bottom:356.430450px;}
.y174{bottom:362.119050px;}
.y28{bottom:364.179450px;}
.y1b5{bottom:365.130000px;}
.y193{bottom:366.215100px;}
.y88{bottom:367.567200px;}
.yd4{bottom:368.776950px;}
.y4f{bottom:372.982650px;}
.y141{bottom:373.911000px;}
.y10a{bottom:374.430450px;}
.y173{bottom:380.119050px;}
.y192{bottom:382.415100px;}
.y27{bottom:383.431500px;}
.y1b4{bottom:384.930000px;}
.yd3{bottom:385.276950px;}
.y87{bottom:388.019100px;}
.y140{bottom:391.911000px;}
.y109{bottom:392.430450px;}
.y4e{bottom:393.434550px;}
.y172{bottom:398.119050px;}
.y191{bottom:398.615100px;}
.yd2{bottom:401.776950px;}
.y26{bottom:402.683400px;}
.y86{bottom:408.471150px;}
.y13f{bottom:409.911000px;}
.y108{bottom:410.430450px;}
.y4d{bottom:413.886600px;}
.y190{bottom:414.815100px;}
.y171{bottom:416.119050px;}
.yd1{bottom:418.276950px;}
.y25{bottom:421.935450px;}
.y13e{bottom:427.911000px;}
.y107{bottom:428.430450px;}
.y85{bottom:428.923050px;}
.y18f{bottom:431.015100px;}
.y1ad{bottom:432.045300px;}
.y170{bottom:434.119050px;}
.y4c{bottom:434.338500px;}
.yd0{bottom:434.776950px;}
.y24{bottom:441.187350px;}
.y13d{bottom:445.911000px;}
.y106{bottom:446.430450px;}
.y18e{bottom:447.215100px;}
.y84{bottom:449.375100px;}
.y1ac{bottom:451.845300px;}
.y16f{bottom:452.119050px;}
.y4b{bottom:454.790550px;}
.ycf{bottom:456.605250px;}
.y23{bottom:460.439400px;}
.y18d{bottom:463.415100px;}
.y13c{bottom:463.911000px;}
.y105{bottom:464.430450px;}
.y83{bottom:469.827000px;}
.y16e{bottom:470.119050px;}
.y1ab{bottom:471.645300px;}
.yce{bottom:473.105250px;}
.y4a{bottom:475.242450px;}
.y18c{bottom:479.615100px;}
.y22{bottom:479.691300px;}
.y13b{bottom:481.911000px;}
.y104{bottom:482.430450px;}
.y16d{bottom:488.119050px;}
.y82{bottom:490.279050px;}
.y49{bottom:495.694500px;}
.y18b{bottom:495.815100px;}
.ycd{bottom:498.109200px;}
.y21{bottom:498.943200px;}
.y13a{bottom:499.911000px;}
.y103{bottom:500.430450px;}
.y16c{bottom:506.119050px;}
.y81{bottom:510.730950px;}
.ycc{bottom:514.609200px;}
.y48{bottom:516.146400px;}
.y139{bottom:517.911000px;}
.y20{bottom:518.195250px;}
.y102{bottom:518.430450px;}
.y1b3{bottom:518.760750px;}
.y16b{bottom:524.119050px;}
.y18a{bottom:530.015100px;}
.ycb{bottom:531.109200px;}
.y80{bottom:531.182850px;}
.y138{bottom:535.911000px;}
.y101{bottom:536.430450px;}
.y47{bottom:536.598450px;}
.y1f{bottom:537.447300px;}
.y1b2{bottom:538.560750px;}
.y16a{bottom:542.119050px;}
.yca{bottom:547.609200px;}
.y189{bottom:548.015100px;}
.y7f{bottom:551.634900px;}
.y137{bottom:553.911000px;}
.y100{bottom:554.430450px;}
.y1e{bottom:556.699200px;}
.y46{bottom:557.050350px;}
.y1b1{bottom:558.360600px;}
.y169{bottom:560.119050px;}
.yc9{bottom:564.109200px;}
.y188{bottom:566.015100px;}
.y136{bottom:571.911000px;}
.y7e{bottom:572.086800px;}
.yff{bottom:572.430450px;}
.y1d{bottom:575.951100px;}
.y45{bottom:577.502400px;}
.y168{bottom:578.119050px;}
.y1b0{bottom:578.160750px;}
.yc8{bottom:580.609200px;}
.y187{bottom:584.015100px;}
.y135{bottom:589.911000px;}
.yfe{bottom:590.430450px;}
.y1c{bottom:595.203150px;}
.y167{bottom:596.119050px;}
.y44{bottom:597.954300px;}
.y1af{bottom:597.960600px;}
.y186{bottom:602.015100px;}
.y134{bottom:607.911000px;}
.yfd{bottom:608.430450px;}
.y166{bottom:614.119050px;}
.y1b{bottom:614.455050px;}
.y1ae{bottom:617.760750px;}
.y43{bottom:618.406200px;}
.y185{bottom:620.015100px;}
.y7d{bottom:624.187350px;}
.y133{bottom:625.911000px;}
.yfc{bottom:626.430450px;}
.y165{bottom:632.119050px;}
.y1a{bottom:633.707100px;}
.y184{bottom:638.015100px;}
.yc7{bottom:638.437500px;}
.y42{bottom:638.858250px;}
.y7c{bottom:643.439250px;}
.y132{bottom:643.911000px;}
.yfb{bottom:644.430450px;}
.y164{bottom:650.119050px;}
.y19{bottom:652.959000px;}
.y183{bottom:656.015100px;}
.y2{bottom:657.200850px;}
.yc6{bottom:658.237500px;}
.y41{bottom:659.310150px;}
.y131{bottom:661.911000px;}
.yfa{bottom:662.430450px;}
.y1aa{bottom:662.461950px;}
.y7b{bottom:662.691300px;}
.y163{bottom:668.119050px;}
.y18{bottom:672.211050px;}
.yc5{bottom:678.037500px;}
.y40{bottom:679.762200px;}
.y130{bottom:679.911000px;}
.yf9{bottom:680.430450px;}
.y7a{bottom:681.943200px;}
.y1a9{bottom:682.261950px;}
.y182{bottom:682.519050px;}
.y162{bottom:686.119050px;}
.y17{bottom:691.462950px;}
.yc4{bottom:697.837500px;}
.y12f{bottom:697.911000px;}
.yf8{bottom:698.430450px;}
.y3f{bottom:700.214100px;}
.y79{bottom:701.195250px;}
.y1a8{bottom:702.061950px;}
.y161{bottom:704.119050px;}
.yb4{bottom:704.586150px;}
.y16{bottom:710.714850px;}
.y12e{bottom:715.911000px;}
.yf7{bottom:716.430450px;}
.yc3{bottom:717.637500px;}
.yb3{bottom:718.986150px;}
.y78{bottom:720.447150px;}
.y3e{bottom:720.666150px;}
.y1a7{bottom:721.861950px;}
.y160{bottom:722.119050px;}
.y15{bottom:729.966900px;}
.y12d{bottom:733.911000px;}
.yf6{bottom:734.430450px;}
.yb2{bottom:735.486150px;}
.yc2{bottom:737.437500px;}
.y77{bottom:739.699200px;}
.y15f{bottom:740.119050px;}
.y3d{bottom:741.118050px;}
.y4{bottom:746.266650px;}
.y14{bottom:749.218800px;}
.y12c{bottom:751.911000px;}
.yc1{bottom:757.237500px;}
.y1a3{bottom:757.857000px;}
.y15e{bottom:758.119050px;}
.y76{bottom:758.951100px;}
.yb1{bottom:760.489950px;}
.yf5{bottom:760.934400px;}
.y3c{bottom:761.570100px;}
.y13{bottom:768.470850px;}
.y12b{bottom:769.911000px;}
.y3{bottom:772.562400px;}
.yb0{bottom:774.890100px;}
.y15d{bottom:776.119050px;}
.y75{bottom:778.203150px;}
.y3b{bottom:782.022000px;}
.y1a2{bottom:784.857000px;}
.y12{bottom:787.722900px;}
.y12a{bottom:787.911000px;}
.yaf{bottom:791.390100px;}
.y15c{bottom:794.119050px;}
.yc0{bottom:796.837500px;}
.y74{bottom:797.455050px;}
.yf4{bottom:800.534400px;}
.y3a{bottom:802.474050px;}
.y129{bottom:805.911000px;}
.y11{bottom:806.974800px;}
.y15b{bottom:812.119050px;}
.yae{bottom:816.393900px;}
.ybf{bottom:816.637500px;}
.y73{bottom:816.707100px;}
.yf3{bottom:818.534400px;}
.y39{bottom:822.925950px;}
.y128{bottom:823.911000px;}
.y10{bottom:826.226700px;}
.y15a{bottom:830.119050px;}
.yad{bottom:830.794050px;}
.y1a6{bottom:833.229900px;}
.y72{bottom:835.959000px;}
.ybe{bottom:836.437500px;}
.yf2{bottom:836.534400px;}
.y127{bottom:841.911000px;}
.y38{bottom:843.378000px;}
.yf{bottom:845.478750px;}
.yac{bottom:847.294050px;}
.y159{bottom:848.119050px;}
.yf1{bottom:854.534400px;}
.y71{bottom:855.210900px;}
.y126{bottom:859.911000px;}
.y1a5{bottom:863.334000px;}
.y37{bottom:863.829900px;}
.y158{bottom:866.119050px;}
.yab{bottom:872.298000px;}
.yf0{bottom:872.534400px;}
.yc{bottom:874.342950px;}
.y70{bottom:874.462950px;}
.ybd{bottom:876.037500px;}
.y125{bottom:877.911000px;}
.y157{bottom:884.119050px;}
.y36{bottom:884.281800px;}
.yaa{bottom:886.698000px;}
.yef{bottom:890.534400px;}
.yb{bottom:892.342950px;}
.y1a4{bottom:893.437800px;}
.y6f{bottom:893.714850px;}
.ybc{bottom:895.837500px;}
.y124{bottom:895.911000px;}
.y156{bottom:902.119050px;}
.ya9{bottom:903.198000px;}
.yee{bottom:908.534400px;}
.ybb{bottom:915.637500px;}
.ya{bottom:918.846900px;}
.ya8{bottom:919.698000px;}
.y155{bottom:920.119050px;}
.y123{bottom:922.415100px;}
.yed{bottom:926.534400px;}
.y6e{bottom:933.495300px;}
.y9{bottom:936.846900px;}
.y154{bottom:938.119050px;}
.yec{bottom:944.534400px;}
.ya7{bottom:944.701950px;}
.y6d{bottom:952.747350px;}
.yba{bottom:955.237500px;}
.y153{bottom:956.119050px;}
.ye{bottom:957.566700px;}
.ya6{bottom:959.101800px;}
.y122{bottom:962.015100px;}
.yeb{bottom:962.534400px;}
.y8{bottom:963.350850px;}
.y6c{bottom:971.999250px;}
.y152{bottom:974.119050px;}
.yb9{bottom:975.037500px;}
.yd{bottom:979.166700px;}
.y121{bottom:980.015100px;}
.yea{bottom:980.534400px;}
.y7{bottom:981.350850px;}
.ya5{bottom:984.105900px;}
.y6b{bottom:991.251300px;}
.y151{bottom:992.119050px;}
.yb8{bottom:994.837500px;}
.y120{bottom:998.015100px;}
.ya4{bottom:998.505900px;}
.ye9{bottom:998.534400px;}
.y150{bottom:1010.119050px;}
.y6a{bottom:1010.503200px;}
.ya3{bottom:1015.005900px;}
.y11f{bottom:1016.015100px;}
.ye8{bottom:1016.534400px;}
.y14f{bottom:1028.119050px;}
.y69{bottom:1029.755100px;}
.ye7{bottom:1034.534400px;}
.ya2{bottom:1040.009850px;}
.y11e{bottom:1042.518900px;}
.y14e{bottom:1046.119050px;}
.y68{bottom:1049.007150px;}
.yb7{bottom:1050.637500px;}
.ye6{bottom:1052.534400px;}
.ya1{bottom:1054.409850px;}
.y14d{bottom:1064.119050px;}
.y67{bottom:1068.259050px;}
.ye5{bottom:1070.534400px;}
.y11d{bottom:1082.119050px;}
.y66{bottom:1087.511100px;}
.ye4{bottom:1088.534400px;}
.yb6{bottom:1093.837500px;}
.y11c{bottom:1100.119050px;}
.ye3{bottom:1106.534400px;}
.y65{bottom:1106.763000px;}
.ya0{bottom:1109.035500px;}
.y11b{bottom:1118.119050px;}
.ye2{bottom:1124.534400px;}
.y64{bottom:1126.015050px;}
.y11a{bottom:1136.119050px;}
.yb5{bottom:1137.037500px;}
.y63{bottom:1145.267100px;}
.ye1{bottom:1151.038350px;}
.y119{bottom:1154.119050px;}
.y62{bottom:1164.518850px;}
.y61{bottom:1183.770900px;}
.y9e{bottom:1186.917600px;}
.y9b{bottom:1201.511100px;}
.y60{bottom:1203.022950px;}
.y9d{bottom:1203.117600px;}
.y9c{bottom:1219.317600px;}
.h14{height:34.945312px;}
.h1d{height:34.992188px;}
.h1e{height:35.179688px;}
.h7{height:39.312000px;}
.ha{height:39.313477px;}
.hb{height:39.366211px;}
.h6{height:39.474000px;}
.hd{height:39.577148px;}
.hc{height:41.454000px;}
.h8{height:43.681641px;}
.h19{height:43.740234px;}
.h1a{height:43.974609px;}
.h21{height:45.479957px;}
.h1c{height:45.480557px;}
.h1f{height:45.481157px;}
.h20{height:45.617197px;}
.h15{height:46.116211px;}
.h18{height:48.049805px;}
.he{height:48.114258px;}
.hf{height:48.372070px;}
.h9{height:52.417969px;}
.h23{height:52.488281px;}
.h11{height:52.560000px;}
.h13{height:57.169922px;}
.h22{height:60.996094px;}
.h1b{height:62.367188px;}
.h5{height:69.984375px;}
.h17{height:124.734375px;}
.h3{height:131.688000px;}
.h10{height:155.917969px;}
.h16{height:155.918569px;}
.h12{height:201.234375px;}
.h2{height:215.625000px;}
.h4{height:294.102187px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:16.751850px;}
.x4{left:22.124700px;}
.x2{left:46.743600px;}
.xb{left:68.031450px;}
.x2f{left:72.776850px;}
.x2e{left:74.031450px;}
.x1e{left:83.819250px;}
.x7{left:97.795200px;}
.xc{left:104.598450px;}
.xd{left:106.299150px;}
.x6{left:108.374100px;}
.x1a{left:109.479750px;}
.x1d{left:110.551200px;}
.x3b{left:117.879900px;}
.x3f{left:123.708900px;}
.x3e{left:124.732050px;}
.x34{left:127.559100px;}
.x3a{left:133.513800px;}
.x3c{left:135.354750px;}
.x5{left:142.368300px;}
.x41{left:197.802150px;}
.x30{left:208.346400px;}
.x1c{left:215.016000px;}
.x1f{left:220.682550px;}
.x46{left:227.937750px;}
.x40{left:231.714300px;}
.x47{left:242.157600px;}
.x45{left:248.409600px;}
.x48{left:256.192350px;}
.x19{left:280.629900px;}
.x38{left:283.345950px;}
.x35{left:286.271400px;}
.x3d{left:329.282100px;}
.x42{left:345.007050px;}
.x36{left:368.097600px;}
.x39{left:373.488900px;}
.x43{left:389.464350px;}
.x44{left:399.251700px;}
.x25{left:434.136600px;}
.x9{left:455.679750px;}
.x37{left:461.720700px;}
.x2b{left:475.818750px;}
.x22{left:496.619550px;}
.x26{left:499.952100px;}
.xa{left:511.976100px;}
.x2d{left:522.276300px;}
.x28{left:530.159400px;}
.x29{left:534.170850px;}
.x20{left:575.022450px;}
.x12{left:581.778450px;}
.x2c{left:589.988700px;}
.xe{left:596.738100px;}
.x11{left:605.154750px;}
.x23{left:608.343150px;}
.x14{left:611.128800px;}
.x13{left:612.957600px;}
.x17{left:615.692850px;}
.xf{left:617.239800px;}
.x16{left:618.444150px;}
.x8{left:621.432750px;}
.x10{left:634.041900px;}
.x21{left:639.278550px;}
.x24{left:642.887850px;}
.x2a{left:647.542350px;}
.x15{left:652.837950px;}
.x31{left:667.093350px;}
.x32{left:668.288400px;}
.x33{left:679.668600px;}
.x27{left:712.596150px;}
.x1{left:724.371150px;}
.x1b{left:776.033700px;}
.x18{left:855.139050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.904000pt;}
.v2{vertical-align:17.760000pt;}
.lsb{letter-spacing:-3.157333pt;}
.lsa{letter-spacing:-2.300907pt;}
.lsd{letter-spacing:-1.466667pt;}
.lsc{letter-spacing:-1.173333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.004373pt;}
.ls7{letter-spacing:0.004907pt;}
.ls5{letter-spacing:7.680000pt;}
.ls1{letter-spacing:9.600000pt;}
.ls3{letter-spacing:11.733333pt;}
.ls9{letter-spacing:12.800000pt;}
.ls2{letter-spacing:17.409067pt;}
.ls6{letter-spacing:25.600000pt;}
.ls4{letter-spacing:32.000000pt;}
.ws9{word-spacing:-87.792533pt;}
.wsb{word-spacing:-81.920000pt;}
.ws15{word-spacing:-64.426133pt;}
.wsa{word-spacing:-32.160000pt;}
.ws17{word-spacing:-28.160000pt;}
.ws5{word-spacing:-22.944000pt;}
.wsa2{word-spacing:-17.792000pt;}
.ws22{word-spacing:-14.826667pt;}
.ws18{word-spacing:-13.344000pt;}
.wsc{word-spacing:-12.906667pt;}
.ws24{word-spacing:-12.800000pt;}
.ws23{word-spacing:-11.861333pt;}
.ws6{word-spacing:-11.520000pt;}
.ws10{word-spacing:-9.386667pt;}
.ws6c{word-spacing:-8.704000pt;}
.ws6a{word-spacing:-8.643947pt;}
.ws11{word-spacing:-8.506667pt;}
.ws39{word-spacing:-7.040000pt;}
.wsf{word-spacing:-6.805333pt;}
.ws13{word-spacing:-6.394667pt;}
.ws6b{word-spacing:-6.343040pt;}
.ws7a{word-spacing:-5.600000pt;}
.ws5c{word-spacing:-5.386667pt;}
.ws51{word-spacing:-5.066667pt;}
.ws96{word-spacing:-4.853333pt;}
.ws8d{word-spacing:-4.693333pt;}
.ws6e{word-spacing:-4.586667pt;}
.ws73{word-spacing:-4.426667pt;}
.ws32{word-spacing:-4.053333pt;}
.wse{word-spacing:-3.813333pt;}
.ws58{word-spacing:-3.680000pt;}
.ws1f{word-spacing:-3.600000pt;}
.ws40{word-spacing:-3.520000pt;}
.ws12{word-spacing:-3.461333pt;}
.ws3d{word-spacing:-3.360000pt;}
.wsd{word-spacing:-3.285333pt;}
.ws82{word-spacing:-3.253333pt;}
.ws53{word-spacing:-2.880000pt;}
.ws84{word-spacing:-2.666667pt;}
.ws57{word-spacing:-2.613333pt;}
.ws9e{word-spacing:-2.448000pt;}
.ws9a{word-spacing:-2.112000pt;}
.ws71{word-spacing:-2.026667pt;}
.ws1{word-spacing:-1.973333pt;}
.ws4f{word-spacing:-1.920000pt;}
.ws4e{word-spacing:-1.866667pt;}
.ws2{word-spacing:-1.776000pt;}
.ws61{word-spacing:-1.760000pt;}
.ws3c{word-spacing:-1.706667pt;}
.ws95{word-spacing:-1.653333pt;}
.ws9c{word-spacing:-1.632000pt;}
.ws6d{word-spacing:-1.546667pt;}
.ws9f{word-spacing:-1.536000pt;}
.ws46{word-spacing:-1.173333pt;}
.ws2d{word-spacing:-1.120000pt;}
.ws31{word-spacing:-1.066667pt;}
.ws1d{word-spacing:-0.960000pt;}
.ws3{word-spacing:-0.864000pt;}
.ws69{word-spacing:-0.512000pt;}
.ws60{word-spacing:-0.480000pt;}
.ws9d{word-spacing:-0.432000pt;}
.ws94{word-spacing:-0.426667pt;}
.ws5f{word-spacing:-0.213333pt;}
.ws0{word-spacing:0.000000pt;}
.ws38{word-spacing:0.053333pt;}
.ws2a{word-spacing:0.106667pt;}
.ws68{word-spacing:0.213333pt;}
.ws65{word-spacing:0.266667pt;}
.ws3a{word-spacing:0.373333pt;}
.ws1b{word-spacing:0.480000pt;}
.ws3f{word-spacing:0.640000pt;}
.ws6f{word-spacing:0.693333pt;}
.ws9b{word-spacing:0.816000pt;}
.ws77{word-spacing:1.333333pt;}
.wsa3{word-spacing:1.466667pt;}
.ws8c{word-spacing:1.493333pt;}
.ws48{word-spacing:1.536000pt;}
.ws5a{word-spacing:1.600000pt;}
.ws34{word-spacing:1.760000pt;}
.ws5d{word-spacing:1.920000pt;}
.ws92{word-spacing:2.080000pt;}
.wsa0{word-spacing:2.160000pt;}
.ws27{word-spacing:2.240000pt;}
.ws7b{word-spacing:2.293333pt;}
.ws89{word-spacing:2.304000pt;}
.ws5b{word-spacing:2.453333pt;}
.ws8a{word-spacing:2.506667pt;}
.ws50{word-spacing:2.666667pt;}
.ws2b{word-spacing:2.773333pt;}
.ws79{word-spacing:2.826667pt;}
.ws70{word-spacing:3.093333pt;}
.ws8e{word-spacing:3.200000pt;}
.ws37{word-spacing:3.253333pt;}
.ws74{word-spacing:3.466667pt;}
.ws1a{word-spacing:3.600000pt;}
.ws75{word-spacing:3.733333pt;}
.ws2f{word-spacing:4.053333pt;}
.ws93{word-spacing:4.106667pt;}
.ws54{word-spacing:4.373333pt;}
.ws3e{word-spacing:4.480000pt;}
.ws25{word-spacing:4.746667pt;}
.ws30{word-spacing:4.960000pt;}
.ws8f{word-spacing:5.120000pt;}
.ws86{word-spacing:5.226667pt;}
.ws43{word-spacing:5.386667pt;}
.ws55{word-spacing:5.440000pt;}
.ws20{word-spacing:5.616000pt;}
.ws52{word-spacing:5.706667pt;}
.ws8b{word-spacing:5.866667pt;}
.ws4a{word-spacing:5.973333pt;}
.ws4d{word-spacing:6.026667pt;}
.ws67{word-spacing:6.080000pt;}
.ws87{word-spacing:6.240000pt;}
.ws78{word-spacing:6.293333pt;}
.ws85{word-spacing:6.346667pt;}
.ws45{word-spacing:6.506667pt;}
.ws7d{word-spacing:6.613333pt;}
.ws5e{word-spacing:7.253333pt;}
.ws4b{word-spacing:7.680000pt;}
.ws21{word-spacing:7.968000pt;}
.ws91{word-spacing:8.000000pt;}
.ws47{word-spacing:8.053333pt;}
.ws81{word-spacing:8.426667pt;}
.ws28{word-spacing:8.640000pt;}
.ws1e{word-spacing:8.736000pt;}
.ws59{word-spacing:8.906667pt;}
.ws97{word-spacing:8.960000pt;}
.ws41{word-spacing:9.226667pt;}
.ws3b{word-spacing:9.280000pt;}
.wsa1{word-spacing:9.456000pt;}
.ws44{word-spacing:9.760000pt;}
.ws90{word-spacing:9.920000pt;}
.ws26{word-spacing:9.973333pt;}
.ws64{word-spacing:10.293333pt;}
.ws1c{word-spacing:10.944000pt;}
.ws7e{word-spacing:10.986667pt;}
.ws49{word-spacing:11.146667pt;}
.ws33{word-spacing:11.680000pt;}
.ws76{word-spacing:11.946667pt;}
.ws98{word-spacing:12.106667pt;}
.ws35{word-spacing:12.426667pt;}
.ws99{word-spacing:13.066667pt;}
.ws36{word-spacing:13.386667pt;}
.ws2e{word-spacing:13.866667pt;}
.ws19{word-spacing:14.832000pt;}
.ws2c{word-spacing:15.413333pt;}
.ws80{word-spacing:15.626667pt;}
.ws56{word-spacing:16.320000pt;}
.ws62{word-spacing:16.800000pt;}
.ws7c{word-spacing:17.013333pt;}
.ws66{word-spacing:17.600000pt;}
.ws7{word-spacing:18.288000pt;}
.ws63{word-spacing:18.293333pt;}
.ws7f{word-spacing:19.253333pt;}
.ws29{word-spacing:20.426667pt;}
.ws42{word-spacing:20.586667pt;}
.ws83{word-spacing:21.653333pt;}
.ws4c{word-spacing:22.186667pt;}
.ws72{word-spacing:24.213333pt;}
.ws88{word-spacing:70.229333pt;}
.ws8{word-spacing:72.015467pt;}
.ws16{word-spacing:82.270933pt;}
.ws4{word-spacing:90.567467pt;}
.ws14{word-spacing:95.327467pt;}
._11{margin-left:-1837.861333pt;}
._37{margin-left:-1672.881067pt;}
._2c{margin-left:-1541.436800pt;}
._2e{margin-left:-1530.045867pt;}
._3e{margin-left:-1527.938133pt;}
._41{margin-left:-1510.117867pt;}
._35{margin-left:-1420.449600pt;}
._39{margin-left:-1365.279467pt;}
._26{margin-left:-1310.144000pt;}
._30{margin-left:-1249.969600pt;}
._28{margin-left:-1198.133867pt;}
._9{margin-left:-1195.079467pt;}
._31{margin-left:-1168.578667pt;}
._18{margin-left:-1131.176000pt;}
._f{margin-left:-1100.880533pt;}
._33{margin-left:-1077.694400pt;}
._2a{margin-left:-1061.881067pt;}
._13{margin-left:-1008.277867pt;}
._d{margin-left:-996.753600pt;}
._2b{margin-left:-965.520000pt;}
._1d{margin-left:-950.126933pt;}
._15{margin-left:-946.896000pt;}
._3c{margin-left:-939.863467pt;}
._a{margin-left:-936.240000pt;}
._1f{margin-left:-914.928000pt;}
._b{margin-left:-887.306667pt;}
._16{margin-left:-845.472000pt;}
._36{margin-left:-833.461333pt;}
._24{margin-left:-824.229867pt;}
._12{margin-left:-821.568000pt;}
._22{margin-left:-813.600000pt;}
._19{margin-left:-797.520000pt;}
._40{margin-left:-784.661333pt;}
._60{margin-left:-782.528000pt;}
._21{margin-left:-780.720000pt;}
._14{margin-left:-765.504000pt;}
._3d{margin-left:-762.912000pt;}
._1b{margin-left:-756.917333pt;}
._32{margin-left:-746.928000pt;}
._1c{margin-left:-745.477333pt;}
._e{margin-left:-722.736000pt;}
._17{margin-left:-708.384000pt;}
._23{margin-left:-698.880000pt;}
._1e{margin-left:-695.029333pt;}
._20{margin-left:-689.461333pt;}
._34{margin-left:-682.229333pt;}
._42{margin-left:-677.472000pt;}
._25{margin-left:-644.149333pt;}
._3b{margin-left:-626.880000pt;}
._2d{margin-left:-618.864000pt;}
._8{margin-left:-616.224000pt;}
._61{margin-left:-597.531733pt;}
._5c{margin-left:-576.128000pt;}
._3f{margin-left:-541.632000pt;}
._7{margin-left:-508.320000pt;}
._5f{margin-left:-504.854400pt;}
._43{margin-left:-500.657600pt;}
._5d{margin-left:-448.160533pt;}
._1a{margin-left:-426.101333pt;}
._2f{margin-left:-392.112000pt;}
._10{margin-left:-354.768000pt;}
._29{margin-left:-346.085333pt;}
._3a{margin-left:-336.144000pt;}
._38{margin-left:-325.440000pt;}
._5e{margin-left:-320.000000pt;}
._27{margin-left:-234.720000pt;}
._4d{margin-left:-12.573333pt;}
._3{margin-left:-11.408000pt;}
._44{margin-left:-9.600000pt;}
._4{margin-left:-8.597333pt;}
._4b{margin-left:-7.372800pt;}
._c{margin-left:-6.216000pt;}
._45{margin-left:-5.280533pt;}
._4a{margin-left:-4.353067pt;}
._0{margin-left:-3.306667pt;}
._5{margin-left:-2.170667pt;}
._6{margin-left:-0.927467pt;}
._49{width:0.902400pt;}
._1{width:2.149333pt;}
._4c{width:3.191467pt;}
._2{width:4.282133pt;}
._53{width:5.794667pt;}
._48{width:7.584000pt;}
._47{width:9.326400pt;}
._4e{width:10.363200pt;}
._50{width:12.108267pt;}
._54{width:13.760533pt;}
._4f{width:14.687467pt;}
._46{width:18.305067pt;}
._52{width:24.867733pt;}
._51{width:25.844267pt;}
._5b{width:30.115733pt;}
._59{width:44.216000pt;}
._57{width:46.520000pt;}
._58{width:49.633600pt;}
._5a{width:52.450667pt;}
._55{width:68.693333pt;}
._56{width:70.229333pt;}
.fsc{font-size:31.093333pt;}
.fsa{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fsd{font-size:80.000000pt;}
.fs3{font-size:85.333333pt;}
.fsb{font-size:128.000000pt;}
.fs8{font-size:160.000000pt;}
.fs1{font-size:165.333333pt;}
.fs9{font-size:256.000000pt;}
.fs0{font-size:266.666667pt;}
.fs2{font-size:356.693333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.850667pt;}
.y5{bottom:74.105733pt;}
.y6{bottom:74.581733pt;}
.y35{bottom:75.086133pt;}
.y9f{bottom:75.562133pt;}
.y118{bottom:110.288533pt;}
.y5b{bottom:113.385733pt;}
.y9a{bottom:113.385867pt;}
.y34{bottom:118.360800pt;}
.y5f{bottom:120.280667pt;}
.y117{bottom:123.088533pt;}
.y14c{bottom:126.185733pt;}
.y181{bottom:126.185867pt;}
.y99{bottom:126.755600pt;}
.y5a{bottom:131.565333pt;}
.ye0{bottom:131.947200pt;}
.y5e{bottom:134.680667pt;}
.y33{bottom:135.473600pt;}
.y116{bottom:135.888533pt;}
.y14b{bottom:138.985733pt;}
.y180{bottom:138.985867pt;}
.y98{bottom:142.755600pt;}
.ydf{bottom:146.613867pt;}
.y115{bottom:148.688533pt;}
.y5d{bottom:149.080667pt;}
.y59{bottom:149.744933pt;}
.y17f{bottom:151.785867pt;}
.y32{bottom:152.586533pt;}
.y19f{bottom:152.724533pt;}
.y97{bottom:158.755600pt;}
.y5c{bottom:163.480667pt;}
.y17e{bottom:164.585867pt;}
.y19e{bottom:167.124533pt;}
.y58{bottom:167.924400pt;}
.yde{bottom:168.839600pt;}
.y31{bottom:169.699333pt;}
.y114{bottom:172.827067pt;}
.y96{bottom:174.755600pt;}
.y17d{bottom:177.385867pt;}
.y19d{bottom:181.524533pt;}
.ydd{bottom:183.506267pt;}
.y57{bottom:186.103867pt;}
.y30{bottom:186.812267pt;}
.y14a{bottom:188.365333pt;}
.y113{bottom:188.827067pt;}
.y17c{bottom:190.185867pt;}
.y95{bottom:190.755600pt;}
.y19c{bottom:195.924533pt;}
.ydc{bottom:198.172933pt;}
.y17b{bottom:202.985867pt;}
.y2f{bottom:203.925067pt;}
.y56{bottom:204.283467pt;}
.y149{bottom:204.365333pt;}
.y112{bottom:204.827067pt;}
.y94{bottom:206.755600pt;}
.y19b{bottom:210.324400pt;}
.ydb{bottom:212.839600pt;}
.y17a{bottom:215.785867pt;}
.y8e{bottom:217.649200pt;}
.y148{bottom:220.365333pt;}
.y111{bottom:220.827067pt;}
.y2e{bottom:221.037867pt;}
.y55{bottom:222.462933pt;}
.y93{bottom:222.755600pt;}
.y19a{bottom:224.724533pt;}
.y1a1{bottom:225.649733pt;}
.yda{bottom:227.506267pt;}
.y179{bottom:228.585867pt;}
.y8d{bottom:235.828800pt;}
.y147{bottom:236.365333pt;}
.y110{bottom:236.827067pt;}
.y2d{bottom:238.150800pt;}
.y92{bottom:238.755600pt;}
.y199{bottom:239.124533pt;}
.y54{bottom:240.642533pt;}
.y178{bottom:241.385867pt;}
.y1a0{bottom:241.649733pt;}
.yd9{bottom:242.172933pt;}
.y146{bottom:252.365333pt;}
.y10f{bottom:252.827067pt;}
.y198{bottom:253.524533pt;}
.y8c{bottom:254.008267pt;}
.y177{bottom:254.185867pt;}
.y2c{bottom:255.263733pt;}
.yd8{bottom:256.839600pt;}
.y53{bottom:258.822000pt;}
.y91{bottom:262.314667pt;}
.y197{bottom:267.924533pt;}
.y145{bottom:268.365333pt;}
.y10e{bottom:268.827067pt;}
.y1b8{bottom:271.760000pt;}
.y8b{bottom:272.187733pt;}
.y2b{bottom:272.376533pt;}
.yd7{bottom:276.242667pt;}
.y52{bottom:277.001600pt;}
.y90{bottom:278.314667pt;}
.y196{bottom:282.324400pt;}
.y144{bottom:284.365333pt;}
.y10d{bottom:284.827067pt;}
.y1b7{bottom:289.360000pt;}
.y2a{bottom:289.489333pt;}
.y176{bottom:289.883600pt;}
.y8a{bottom:290.367333pt;}
.yd6{bottom:290.909333pt;}
.y51{bottom:295.181067pt;}
.y195{bottom:296.724533pt;}
.y143{bottom:300.365333pt;}
.y10c{bottom:300.827067pt;}
.y8f{bottom:301.873733pt;}
.y175{bottom:305.883600pt;}
.y29{bottom:306.602267pt;}
.y1b6{bottom:306.960000pt;}
.y89{bottom:308.546800pt;}
.y194{bottom:311.124533pt;}
.yd5{bottom:313.135067pt;}
.y50{bottom:313.360533pt;}
.y142{bottom:316.365333pt;}
.y10b{bottom:316.827067pt;}
.y174{bottom:321.883600pt;}
.y28{bottom:323.715067pt;}
.y1b5{bottom:324.560000pt;}
.y193{bottom:325.524533pt;}
.y88{bottom:326.726400pt;}
.yd4{bottom:327.801733pt;}
.y4f{bottom:331.540133pt;}
.y141{bottom:332.365333pt;}
.y10a{bottom:332.827067pt;}
.y173{bottom:337.883600pt;}
.y192{bottom:339.924533pt;}
.y27{bottom:340.828000pt;}
.y1b4{bottom:342.160000pt;}
.yd3{bottom:342.468400pt;}
.y87{bottom:344.905867pt;}
.y140{bottom:348.365333pt;}
.y109{bottom:348.827067pt;}
.y4e{bottom:349.719600pt;}
.y172{bottom:353.883600pt;}
.y191{bottom:354.324533pt;}
.yd2{bottom:357.135067pt;}
.y26{bottom:357.940800pt;}
.y86{bottom:363.085467pt;}
.y13f{bottom:364.365333pt;}
.y108{bottom:364.827067pt;}
.y4d{bottom:367.899200pt;}
.y190{bottom:368.724533pt;}
.y171{bottom:369.883600pt;}
.yd1{bottom:371.801733pt;}
.y25{bottom:375.053733pt;}
.y13e{bottom:380.365333pt;}
.y107{bottom:380.827067pt;}
.y85{bottom:381.264933pt;}
.y18f{bottom:383.124533pt;}
.y1ad{bottom:384.040267pt;}
.y170{bottom:385.883600pt;}
.y4c{bottom:386.078667pt;}
.yd0{bottom:386.468400pt;}
.y24{bottom:392.166533pt;}
.y13d{bottom:396.365333pt;}
.y106{bottom:396.827067pt;}
.y18e{bottom:397.524533pt;}
.y84{bottom:399.444533pt;}
.y1ac{bottom:401.640267pt;}
.y16f{bottom:401.883600pt;}
.y4b{bottom:404.258267pt;}
.ycf{bottom:405.871333pt;}
.y23{bottom:409.279467pt;}
.y18d{bottom:411.924533pt;}
.y13c{bottom:412.365333pt;}
.y105{bottom:412.827067pt;}
.y83{bottom:417.624000pt;}
.y16e{bottom:417.883600pt;}
.y1ab{bottom:419.240267pt;}
.yce{bottom:420.538000pt;}
.y4a{bottom:422.437733pt;}
.y18c{bottom:426.324533pt;}
.y22{bottom:426.392267pt;}
.y13b{bottom:428.365333pt;}
.y104{bottom:428.827067pt;}
.y16d{bottom:433.883600pt;}
.y82{bottom:435.803600pt;}
.y49{bottom:440.617333pt;}
.y18b{bottom:440.724533pt;}
.ycd{bottom:442.763733pt;}
.y21{bottom:443.505067pt;}
.y13a{bottom:444.365333pt;}
.y103{bottom:444.827067pt;}
.y16c{bottom:449.883600pt;}
.y81{bottom:453.983067pt;}
.ycc{bottom:457.430400pt;}
.y48{bottom:458.796800pt;}
.y139{bottom:460.365333pt;}
.y20{bottom:460.618000pt;}
.y102{bottom:460.827067pt;}
.y1b3{bottom:461.120667pt;}
.y16b{bottom:465.883600pt;}
.y18a{bottom:471.124533pt;}
.ycb{bottom:472.097067pt;}
.y80{bottom:472.162533pt;}
.y138{bottom:476.365333pt;}
.y101{bottom:476.827067pt;}
.y47{bottom:476.976400pt;}
.y1f{bottom:477.730933pt;}
.y1b2{bottom:478.720667pt;}
.y16a{bottom:481.883600pt;}
.yca{bottom:486.763733pt;}
.y189{bottom:487.124533pt;}
.y7f{bottom:490.342133pt;}
.y137{bottom:492.365333pt;}
.y100{bottom:492.827067pt;}
.y1e{bottom:494.843733pt;}
.y46{bottom:495.155867pt;}
.y1b1{bottom:496.320533pt;}
.y169{bottom:497.883600pt;}
.yc9{bottom:501.430400pt;}
.y188{bottom:503.124533pt;}
.y136{bottom:508.365333pt;}
.y7e{bottom:508.521600pt;}
.yff{bottom:508.827067pt;}
.y1d{bottom:511.956533pt;}
.y45{bottom:513.335467pt;}
.y168{bottom:513.883600pt;}
.y1b0{bottom:513.920667pt;}
.yc8{bottom:516.097067pt;}
.y187{bottom:519.124533pt;}
.y135{bottom:524.365333pt;}
.yfe{bottom:524.827067pt;}
.y1c{bottom:529.069467pt;}
.y167{bottom:529.883600pt;}
.y44{bottom:531.514933pt;}
.y1af{bottom:531.520533pt;}
.y186{bottom:535.124533pt;}
.y134{bottom:540.365333pt;}
.yfd{bottom:540.827067pt;}
.y166{bottom:545.883600pt;}
.y1b{bottom:546.182267pt;}
.y1ae{bottom:549.120667pt;}
.y43{bottom:549.694400pt;}
.y185{bottom:551.124533pt;}
.y7d{bottom:554.833200pt;}
.y133{bottom:556.365333pt;}
.yfc{bottom:556.827067pt;}
.y165{bottom:561.883600pt;}
.y1a{bottom:563.295200pt;}
.y184{bottom:567.124533pt;}
.yc7{bottom:567.500000pt;}
.y42{bottom:567.874000pt;}
.y7c{bottom:571.946000pt;}
.y132{bottom:572.365333pt;}
.yfb{bottom:572.827067pt;}
.y164{bottom:577.883600pt;}
.y19{bottom:580.408000pt;}
.y183{bottom:583.124533pt;}
.y2{bottom:584.178533pt;}
.yc6{bottom:585.100000pt;}
.y41{bottom:586.053467pt;}
.y131{bottom:588.365333pt;}
.yfa{bottom:588.827067pt;}
.y1aa{bottom:588.855067pt;}
.y7b{bottom:589.058933pt;}
.y163{bottom:593.883600pt;}
.y18{bottom:597.520933pt;}
.yc5{bottom:602.700000pt;}
.y40{bottom:604.233067pt;}
.y130{bottom:604.365333pt;}
.yf9{bottom:604.827067pt;}
.y7a{bottom:606.171733pt;}
.y1a9{bottom:606.455067pt;}
.y182{bottom:606.683600pt;}
.y162{bottom:609.883600pt;}
.y17{bottom:614.633733pt;}
.yc4{bottom:620.300000pt;}
.y12f{bottom:620.365333pt;}
.yf8{bottom:620.827067pt;}
.y3f{bottom:622.412533pt;}
.y79{bottom:623.284667pt;}
.y1a8{bottom:624.055067pt;}
.y161{bottom:625.883600pt;}
.yb4{bottom:626.298800pt;}
.y16{bottom:631.746533pt;}
.y12e{bottom:636.365333pt;}
.yf7{bottom:636.827067pt;}
.yc3{bottom:637.900000pt;}
.yb3{bottom:639.098800pt;}
.y78{bottom:640.397467pt;}
.y3e{bottom:640.592133pt;}
.y1a7{bottom:641.655067pt;}
.y160{bottom:641.883600pt;}
.y15{bottom:648.859467pt;}
.y12d{bottom:652.365333pt;}
.yf6{bottom:652.827067pt;}
.yb2{bottom:653.765467pt;}
.yc2{bottom:655.500000pt;}
.y77{bottom:657.510400pt;}
.y15f{bottom:657.883600pt;}
.y3d{bottom:658.771600pt;}
.y4{bottom:663.348133pt;}
.y14{bottom:665.972267pt;}
.y12c{bottom:668.365333pt;}
.yc1{bottom:673.100000pt;}
.y1a3{bottom:673.650667pt;}
.y15e{bottom:673.883600pt;}
.y76{bottom:674.623200pt;}
.yb1{bottom:675.991067pt;}
.yf5{bottom:676.386133pt;}
.y3c{bottom:676.951200pt;}
.y13{bottom:683.085200pt;}
.y12b{bottom:684.365333pt;}
.y3{bottom:686.722133pt;}
.yb0{bottom:688.791200pt;}
.y15d{bottom:689.883600pt;}
.y75{bottom:691.736133pt;}
.y3b{bottom:695.130667pt;}
.y1a2{bottom:697.650667pt;}
.y12{bottom:700.198133pt;}
.y12a{bottom:700.365333pt;}
.yaf{bottom:703.457867pt;}
.y15c{bottom:705.883600pt;}
.yc0{bottom:708.300000pt;}
.y74{bottom:708.848933pt;}
.yf4{bottom:711.586133pt;}
.y3a{bottom:713.310267pt;}
.y129{bottom:716.365333pt;}
.y11{bottom:717.310933pt;}
.y15b{bottom:721.883600pt;}
.yae{bottom:725.683467pt;}
.ybf{bottom:725.900000pt;}
.y73{bottom:725.961867pt;}
.yf3{bottom:727.586133pt;}
.y39{bottom:731.489733pt;}
.y128{bottom:732.365333pt;}
.y10{bottom:734.423733pt;}
.y15a{bottom:737.883600pt;}
.yad{bottom:738.483600pt;}
.y1a6{bottom:740.648800pt;}
.y72{bottom:743.074667pt;}
.ybe{bottom:743.500000pt;}
.yf2{bottom:743.586133pt;}
.y127{bottom:748.365333pt;}
.y38{bottom:749.669333pt;}
.yf{bottom:751.536667pt;}
.yac{bottom:753.150267pt;}
.y159{bottom:753.883600pt;}
.yf1{bottom:759.586133pt;}
.y71{bottom:760.187467pt;}
.y126{bottom:764.365333pt;}
.y1a5{bottom:767.408000pt;}
.y37{bottom:767.848800pt;}
.y158{bottom:769.883600pt;}
.yab{bottom:775.376000pt;}
.yf0{bottom:775.586133pt;}
.yc{bottom:777.193733pt;}
.y70{bottom:777.300400pt;}
.ybd{bottom:778.700000pt;}
.y125{bottom:780.365333pt;}
.y157{bottom:785.883600pt;}
.y36{bottom:786.028267pt;}
.yaa{bottom:788.176000pt;}
.yef{bottom:791.586133pt;}
.yb{bottom:793.193733pt;}
.y1a4{bottom:794.166933pt;}
.y6f{bottom:794.413200pt;}
.ybc{bottom:796.300000pt;}
.y124{bottom:796.365333pt;}
.y156{bottom:801.883600pt;}
.ya9{bottom:802.842667pt;}
.yee{bottom:807.586133pt;}
.ybb{bottom:813.900000pt;}
.ya{bottom:816.752800pt;}
.ya8{bottom:817.509333pt;}
.y155{bottom:817.883600pt;}
.y123{bottom:819.924533pt;}
.yed{bottom:823.586133pt;}
.y6e{bottom:829.773600pt;}
.y9{bottom:832.752800pt;}
.y154{bottom:833.883600pt;}
.yec{bottom:839.586133pt;}
.ya7{bottom:839.735067pt;}
.y6d{bottom:846.886533pt;}
.yba{bottom:849.100000pt;}
.y153{bottom:849.883600pt;}
.ye{bottom:851.170400pt;}
.ya6{bottom:852.534933pt;}
.y122{bottom:855.124533pt;}
.yeb{bottom:855.586133pt;}
.y8{bottom:856.311867pt;}
.y6c{bottom:863.999333pt;}
.y152{bottom:865.883600pt;}
.yb9{bottom:866.700000pt;}
.yd{bottom:870.370400pt;}
.y121{bottom:871.124533pt;}
.yea{bottom:871.586133pt;}
.y7{bottom:872.311867pt;}
.ya5{bottom:874.760800pt;}
.y6b{bottom:881.112267pt;}
.y151{bottom:881.883600pt;}
.yb8{bottom:884.300000pt;}
.y120{bottom:887.124533pt;}
.ya4{bottom:887.560800pt;}
.ye9{bottom:887.586133pt;}
.y150{bottom:897.883600pt;}
.y6a{bottom:898.225067pt;}
.ya3{bottom:902.227467pt;}
.y11f{bottom:903.124533pt;}
.ye8{bottom:903.586133pt;}
.y14f{bottom:913.883600pt;}
.y69{bottom:915.337867pt;}
.ye7{bottom:919.586133pt;}
.ya2{bottom:924.453200pt;}
.y11e{bottom:926.683467pt;}
.y14e{bottom:929.883600pt;}
.y68{bottom:932.450800pt;}
.yb7{bottom:933.900000pt;}
.ye6{bottom:935.586133pt;}
.ya1{bottom:937.253200pt;}
.y14d{bottom:945.883600pt;}
.y67{bottom:949.563600pt;}
.ye5{bottom:951.586133pt;}
.y11d{bottom:961.883600pt;}
.y66{bottom:966.676533pt;}
.ye4{bottom:967.586133pt;}
.yb6{bottom:972.300000pt;}
.y11c{bottom:977.883600pt;}
.ye3{bottom:983.586133pt;}
.y65{bottom:983.789333pt;}
.ya0{bottom:985.809333pt;}
.y11b{bottom:993.883600pt;}
.ye2{bottom:999.586133pt;}
.y64{bottom:1000.902267pt;}
.y11a{bottom:1009.883600pt;}
.yb5{bottom:1010.700000pt;}
.y63{bottom:1018.015200pt;}
.ye1{bottom:1023.145200pt;}
.y119{bottom:1025.883600pt;}
.y62{bottom:1035.127867pt;}
.y61{bottom:1052.240800pt;}
.y9e{bottom:1055.037867pt;}
.y9b{bottom:1068.009867pt;}
.y60{bottom:1069.353733pt;}
.y9d{bottom:1069.437867pt;}
.y9c{bottom:1083.837867pt;}
.h14{height:31.062500pt;}
.h1d{height:31.104167pt;}
.h1e{height:31.270833pt;}
.h7{height:34.944000pt;}
.ha{height:34.945312pt;}
.hb{height:34.992188pt;}
.h6{height:35.088000pt;}
.hd{height:35.179688pt;}
.hc{height:36.848000pt;}
.h8{height:38.828125pt;}
.h19{height:38.880208pt;}
.h1a{height:39.088542pt;}
.h21{height:40.426628pt;}
.h1c{height:40.427161pt;}
.h1f{height:40.427695pt;}
.h20{height:40.548620pt;}
.h15{height:40.992188pt;}
.h18{height:42.710938pt;}
.he{height:42.768229pt;}
.hf{height:42.997396pt;}
.h9{height:46.593750pt;}
.h23{height:46.656250pt;}
.h11{height:46.720000pt;}
.h13{height:50.817708pt;}
.h22{height:54.218750pt;}
.h1b{height:55.437500pt;}
.h5{height:62.208333pt;}
.h17{height:110.875000pt;}
.h3{height:117.056000pt;}
.h10{height:138.593750pt;}
.h16{height:138.594283pt;}
.h12{height:178.875000pt;}
.h2{height:191.666667pt;}
.h4{height:261.424167pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:14.890533pt;}
.x4{left:19.666400pt;}
.x2{left:41.549867pt;}
.xb{left:60.472400pt;}
.x2f{left:64.690533pt;}
.x2e{left:65.805733pt;}
.x1e{left:74.506000pt;}
.x7{left:86.929067pt;}
.xc{left:92.976400pt;}
.xd{left:94.488133pt;}
.x6{left:96.332533pt;}
.x1a{left:97.315333pt;}
.x1d{left:98.267733pt;}
.x3b{left:104.782133pt;}
.x3f{left:109.963467pt;}
.x3e{left:110.872933pt;}
.x34{left:113.385867pt;}
.x3a{left:118.678933pt;}
.x3c{left:120.315333pt;}
.x5{left:126.549600pt;}
.x41{left:175.824133pt;}
.x30{left:185.196800pt;}
.x1c{left:191.125333pt;}
.x1f{left:196.162267pt;}
.x46{left:202.611333pt;}
.x40{left:205.968267pt;}
.x47{left:215.251200pt;}
.x45{left:220.808533pt;}
.x48{left:227.726533pt;}
.x19{left:249.448800pt;}
.x38{left:251.863067pt;}
.x35{left:254.463467pt;}
.x3d{left:292.695200pt;}
.x42{left:306.672933pt;}
.x36{left:327.197867pt;}
.x39{left:331.990133pt;}
.x43{left:346.190533pt;}
.x44{left:354.890400pt;}
.x25{left:385.899200pt;}
.x9{left:405.048667pt;}
.x37{left:410.418400pt;}
.x2b{left:422.950000pt;}
.x22{left:441.439600pt;}
.x26{left:444.401867pt;}
.xa{left:455.089867pt;}
.x2d{left:464.245600pt;}
.x28{left:471.252800pt;}
.x29{left:474.818533pt;}
.x20{left:511.131067pt;}
.x12{left:517.136400pt;}
.x2c{left:524.434400pt;}
.xe{left:530.433867pt;}
.x11{left:537.915333pt;}
.x23{left:540.749467pt;}
.x14{left:543.225600pt;}
.x13{left:544.851200pt;}
.x17{left:547.282533pt;}
.xf{left:548.657600pt;}
.x16{left:549.728133pt;}
.x8{left:552.384667pt;}
.x10{left:563.592800pt;}
.x21{left:568.247600pt;}
.x24{left:571.455867pt;}
.x2a{left:575.593200pt;}
.x15{left:580.300400pt;}
.x31{left:592.971867pt;}
.x32{left:594.034133pt;}
.x33{left:604.149867pt;}
.x27{left:633.418800pt;}
.x1{left:643.885467pt;}
.x1b{left:689.807733pt;}
.x18{left:760.123600pt;}
}




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