
    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_4e244dfb837906f8a6015ee5.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_fe4b977e7ede50806e57884a.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_dac89b6e6010604101c826f9.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_131c843ddbe86aaeca357233.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_5632886367ff1a8efcf4243d.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_ab0b8598a06e708a6c62cb38.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_41ddd3d98f1ab5c34a066a46.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_cc459284603c0697dd84a64c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.925293;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_370d86c9b1e730fab41b3c60.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_5632886367ff1a8efcf4243d.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_5632886367ff1a8efcf4243d.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_5632886367ff1a8efcf4243d.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_feca834d069bce03f5f9aad3.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_325b4afd139ed2a32cbb4e22.woff')format("woff");}.ffe{font-family:ffe;line-height:0.927734;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_5aa8cbadf5065b0c329c55a3.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_24b35fc7ec254a1aea029163.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_bfa9409c44f608d90004ada7.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_c6131e16e249775325fa0177.woff')format("woff");}.ff12{font-family:ff12;line-height:0.927734;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_3e22272d68c81389ce0aecbc.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_620c68b08d1aa4dd306d451e.woff')format("woff");}.ff14{font-family:ff14;line-height:0.927734;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_5632886367ff1a8efcf4243d.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_5aa8cbadf5065b0c329c55a3.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_24b35fc7ec254a1aea029163.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_3e22272d68c81389ce0aecbc.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_620c68b08d1aa4dd306d451e.woff')format("woff");}.ff19{font-family:ff19;line-height:0.927734;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_5632886367ff1a8efcf4243d.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_5aa8cbadf5065b0c329c55a3.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_24b35fc7ec254a1aea029163.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_5d73558a5dc393dfba8932a2.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.895508;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:ff1e;src:url('chunks/assets/font_0180f3252fd155b93b24d0a6.woff')format("woff");}.ff1e{font-family:ff1e;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;}
.lsa{letter-spacing:-1.650000px;}
.ls9{letter-spacing:-1.320000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.004920px;}
.ls5{letter-spacing:8.640000px;}
.ls1{letter-spacing:10.800000px;}
.ls3{letter-spacing:13.200000px;}
.ls8{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;}
.ws10{word-spacing:-72.479400px;}
.wsa{word-spacing:-36.180000px;}
.ws5{word-spacing:-25.812000px;}
.ws84{word-spacing:-20.016000px;}
.ws11{word-spacing:-16.680000px;}
.ws12{word-spacing:-15.012000px;}
.ws24{word-spacing:-14.400000px;}
.ws6{word-spacing:-12.960000px;}
.ws7e{word-spacing:-9.060000px;}
.ws3a{word-spacing:-8.520000px;}
.wse{word-spacing:-7.656000px;}
.ws49{word-spacing:-6.660000px;}
.ws4c{word-spacing:-5.820000px;}
.ws33{word-spacing:-5.460000px;}
.ws18{word-spacing:-5.130000px;}
.ws4f{word-spacing:-4.920000px;}
.ws15{word-spacing:-4.482000px;}
.ws66{word-spacing:-4.320000px;}
.wsd{word-spacing:-4.290000px;}
.ws85{word-spacing:-3.960000px;}
.ws48{word-spacing:-3.840000px;}
.wsc{word-spacing:-3.696000px;}
.ws30{word-spacing:-3.600000px;}
.ws40{word-spacing:-3.300000px;}
.ws57{word-spacing:-3.240000px;}
.ws13{word-spacing:-2.442000px;}
.ws7c{word-spacing:-2.280000px;}
.ws1{word-spacing:-2.220000px;}
.ws2{word-spacing:-1.998000px;}
.ws58{word-spacing:-1.920000px;}
.ws2a{word-spacing:-1.800000px;}
.ws5f{word-spacing:-1.620000px;}
.ws64{word-spacing:-1.500000px;}
.ws72{word-spacing:-1.380000px;}
.ws2b{word-spacing:-1.260000px;}
.ws3{word-spacing:-0.972000px;}
.ws19{word-spacing:-0.918000px;}
.ws22{word-spacing:-0.702000px;}
.ws63{word-spacing:-0.660000px;}
.ws21{word-spacing:-0.648000px;}
.ws25{word-spacing:-0.300000px;}
.ws51{word-spacing:-0.240000px;}
.ws0{word-spacing:0.000000px;}
.ws5e{word-spacing:0.180000px;}
.ws59{word-spacing:0.300000px;}
.ws81{word-spacing:0.378000px;}
.ws77{word-spacing:0.420000px;}
.ws26{word-spacing:0.600000px;}
.ws79{word-spacing:0.900000px;}
.ws20{word-spacing:1.080000px;}
.ws39{word-spacing:1.140000px;}
.ws34{word-spacing:1.200000px;}
.ws42{word-spacing:1.320000px;}
.ws38{word-spacing:1.380000px;}
.ws86{word-spacing:1.650000px;}
.ws41{word-spacing:1.680000px;}
.ws1a{word-spacing:2.106000px;}
.ws31{word-spacing:2.460000px;}
.ws17{word-spacing:2.484000px;}
.ws28{word-spacing:2.640000px;}
.ws7a{word-spacing:2.700000px;}
.ws6c{word-spacing:3.000000px;}
.ws14{word-spacing:3.024000px;}
.ws71{word-spacing:3.360000px;}
.ws1f{word-spacing:3.888000px;}
.ws50{word-spacing:3.900000px;}
.ws75{word-spacing:3.960000px;}
.ws62{word-spacing:4.020000px;}
.ws6d{word-spacing:4.140000px;}
.ws69{word-spacing:4.260000px;}
.ws7d{word-spacing:4.380000px;}
.ws47{word-spacing:4.440000px;}
.ws2f{word-spacing:4.560000px;}
.ws52{word-spacing:4.920000px;}
.ws3f{word-spacing:5.100000px;}
.ws4a{word-spacing:5.160000px;}
.ws65{word-spacing:5.340000px;}
.ws55{word-spacing:5.640000px;}
.ws37{word-spacing:5.760000px;}
.ws82{word-spacing:5.778000px;}
.ws4b{word-spacing:6.300000px;}
.ws56{word-spacing:6.480000px;}
.ws6a{word-spacing:6.720000px;}
.ws61{word-spacing:6.840000px;}
.ws54{word-spacing:7.140000px;}
.ws2d{word-spacing:7.380000px;}
.ws67{word-spacing:7.440000px;}
.ws4d{word-spacing:8.040000px;}
.ws78{word-spacing:8.220000px;}
.ws43{word-spacing:8.760000px;}
.ws1e{word-spacing:8.964000px;}
.ws6f{word-spacing:9.000000px;}
.ws2c{word-spacing:9.060000px;}
.ws4e{word-spacing:9.240000px;}
.ws6e{word-spacing:9.420000px;}
.ws73{word-spacing:9.660000px;}
.ws53{word-spacing:9.840000px;}
.ws80{word-spacing:10.152000px;}
.ws60{word-spacing:10.380000px;}
.ws3b{word-spacing:10.500000px;}
.ws1c{word-spacing:10.530000px;}
.ws5b{word-spacing:10.620000px;}
.ws44{word-spacing:11.040000px;}
.ws1d{word-spacing:11.448000px;}
.ws68{word-spacing:11.520000px;}
.ws2e{word-spacing:11.880000px;}
.ws5c{word-spacing:12.060000px;}
.ws83{word-spacing:12.204000px;}
.ws16{word-spacing:12.798000px;}
.ws3c{word-spacing:12.840000px;}
.ws46{word-spacing:13.380000px;}
.ws32{word-spacing:13.680000px;}
.ws36{word-spacing:14.460000px;}
.ws7f{word-spacing:15.000000px;}
.ws35{word-spacing:15.240000px;}
.ws5d{word-spacing:15.720000px;}
.ws27{word-spacing:16.080000px;}
.ws7b{word-spacing:16.140000px;}
.ws1b{word-spacing:16.524000px;}
.ws6b{word-spacing:16.680000px;}
.ws3d{word-spacing:17.340000px;}
.ws29{word-spacing:20.340000px;}
.ws7{word-spacing:20.574000px;}
.ws45{word-spacing:21.180000px;}
.ws70{word-spacing:22.080000px;}
.ws76{word-spacing:22.380000px;}
.ws5a{word-spacing:26.100000px;}
.ws3e{word-spacing:29.640000px;}
.ws74{word-spacing:29.700000px;}
.ws8{word-spacing:81.017400px;}
.ws23{word-spacing:92.554800px;}
.ws4{word-spacing:101.888400px;}
.wsf{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;}
._5b{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;}
._5c{margin-left:-672.223200px;}
._57{margin-left:-648.144000px;}
._3f{margin-left:-609.336000px;}
._7{margin-left:-571.860000px;}
._5a{margin-left:-567.961800px;}
._43{margin-left:-563.239800px;}
._58{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;}
._59{margin-left:-360.000000px;}
._27{margin-left:-264.060000px;}
._4d{margin-left:-15.339600px;}
._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;}
._51{width:5.821200px;}
._50{width:7.273200px;}
._48{width:8.532000px;}
._47{width:10.492200px;}
._4e{width:11.804400px;}
._4f{width:13.705200px;}
._54{width:14.886000px;}
._46{width:20.593200px;}
._53{width:22.300800px;}
._52{width:23.539800px;}
._56{width:59.007000px;}
._55{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);}
.fcc{color:rgb(0,0,0);}
.fc5{color:rgb(61,123,199);}
.fcb{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;}
.y132{bottom:121.950300px;}
.y10b{bottom:122.770650px;}
.y5b{bottom:127.558950px;}
.y9a{bottom:127.559100px;}
.y34{bottom:133.155900px;}
.y5f{bottom:135.315750px;}
.y10a{bottom:137.170650px;}
.y151{bottom:139.568550px;}
.y99{bottom:142.600050px;}
.yd5{bottom:143.471100px;}
.y5a{bottom:148.011000px;}
.y5e{bottom:151.515750px;}
.y33{bottom:152.407800px;}
.yd4{bottom:159.971100px;}
.y98{bottom:160.600050px;}
.y109{bottom:164.326500px;}
.y5d{bottom:167.715750px;}
.y59{bottom:168.463050px;}
.y32{bottom:171.659850px;}
.yd3{bottom:176.471100px;}
.y97{bottom:178.600050px;}
.y108{bottom:182.326500px;}
.y5c{bottom:183.915750px;}
.y58{bottom:188.914950px;}
.y31{bottom:190.911750px;}
.y96{bottom:196.600050px;}
.yd2{bottom:201.475050px;}
.y107{bottom:208.830450px;}
.y57{bottom:209.366850px;}
.y30{bottom:210.163800px;}
.y95{bottom:214.600050px;}
.yd1{bottom:217.975050px;}
.y2f{bottom:229.415700px;}
.y56{bottom:229.818900px;}
.y94{bottom:232.600050px;}
.yd0{bottom:234.475050px;}
.y8e{bottom:244.855350px;}
.y106{bottom:248.430450px;}
.y2e{bottom:248.667600px;}
.y55{bottom:250.270800px;}
.y93{bottom:250.600050px;}
.ycf{bottom:250.975050px;}
.y161{bottom:253.855950px;}
.y8d{bottom:265.307400px;}
.y105{bottom:266.430450px;}
.yce{bottom:267.475050px;}
.y2d{bottom:267.919650px;}
.y92{bottom:268.600050px;}
.y54{bottom:270.722850px;}
.y160{bottom:271.855950px;}
.ycd{bottom:283.975050px;}
.y104{bottom:284.430450px;}
.y8c{bottom:285.759300px;}
.y2c{bottom:287.171700px;}
.y53{bottom:291.174750px;}
.y91{bottom:295.104000px;}
.ycc{bottom:300.475050px;}
.y103{bottom:302.430450px;}
.y178{bottom:305.730000px;}
.y8b{bottom:306.211200px;}
.y2b{bottom:306.423600px;}
.y52{bottom:311.626800px;}
.y90{bottom:313.104000px;}
.ycb{bottom:316.975050px;}
.y102{bottom:320.430450px;}
.y177{bottom:325.530000px;}
.y2a{bottom:325.675500px;}
.y8a{bottom:326.663250px;}
.y51{bottom:332.078700px;}
.y101{bottom:338.430450px;}
.y8f{bottom:339.607950px;}
.y29{bottom:344.927550px;}
.y176{bottom:345.330000px;}
.y89{bottom:347.115150px;}
.yca{bottom:349.945650px;}
.y50{bottom:352.530600px;}
.y100{bottom:356.430450px;}
.y28{bottom:364.179450px;}
.y175{bottom:365.130000px;}
.yc9{bottom:366.445650px;}
.y88{bottom:367.567200px;}
.y4f{bottom:372.982650px;}
.yff{bottom:374.430450px;}
.y27{bottom:383.431500px;}
.y174{bottom:384.930000px;}
.y87{bottom:388.019100px;}
.yc8{bottom:391.449600px;}
.yfe{bottom:392.430450px;}
.y4e{bottom:393.434550px;}
.y26{bottom:402.683400px;}
.yc7{bottom:407.949600px;}
.y86{bottom:408.471150px;}
.yfd{bottom:410.430450px;}
.y4d{bottom:413.886600px;}
.y25{bottom:421.935450px;}
.yc6{bottom:424.449600px;}
.yfc{bottom:428.430450px;}
.y85{bottom:428.923050px;}
.y16d{bottom:432.045300px;}
.y4c{bottom:434.338500px;}
.yc5{bottom:440.949600px;}
.y24{bottom:441.187350px;}
.yfb{bottom:446.430450px;}
.y84{bottom:449.375100px;}
.y16c{bottom:451.845300px;}
.y4b{bottom:454.790550px;}
.yc4{bottom:457.449600px;}
.y131{bottom:458.015100px;}
.y23{bottom:460.439400px;}
.yfa{bottom:464.430450px;}
.y83{bottom:469.827000px;}
.y16b{bottom:471.645300px;}
.yc3{bottom:473.949600px;}
.y4a{bottom:475.242450px;}
.y130{bottom:476.015100px;}
.y22{bottom:479.691300px;}
.yf9{bottom:482.430450px;}
.y82{bottom:490.279050px;}
.yc2{bottom:490.449600px;}
.y12f{bottom:494.015100px;}
.y49{bottom:495.694500px;}
.y21{bottom:498.943200px;}
.yf8{bottom:500.430450px;}
.y81{bottom:510.730950px;}
.y12e{bottom:512.015100px;}
.y48{bottom:516.146400px;}
.y20{bottom:518.195250px;}
.y173{bottom:518.760750px;}
.yc1{bottom:523.420050px;}
.yf7{bottom:526.934400px;}
.y12d{bottom:530.015100px;}
.y80{bottom:531.182850px;}
.y47{bottom:536.598450px;}
.y1f{bottom:537.447300px;}
.y172{bottom:538.560750px;}
.yc0{bottom:539.920050px;}
.y12c{bottom:548.015100px;}
.y7f{bottom:551.634900px;}
.y1e{bottom:556.699200px;}
.y46{bottom:557.050350px;}
.y171{bottom:558.360600px;}
.y150{bottom:560.119050px;}
.ybf{bottom:564.924000px;}
.y12b{bottom:566.015100px;}
.yf6{bottom:566.534400px;}
.y7e{bottom:572.086800px;}
.y1d{bottom:575.951100px;}
.y45{bottom:577.502400px;}
.y14f{bottom:578.119050px;}
.y170{bottom:578.160750px;}
.ybe{bottom:581.424000px;}
.y12a{bottom:584.015100px;}
.yf5{bottom:584.534400px;}
.y15f{bottom:589.414950px;}
.y1c{bottom:595.203150px;}
.y14e{bottom:596.119050px;}
.ybd{bottom:597.924000px;}
.y44{bottom:597.954300px;}
.y16f{bottom:597.960600px;}
.y129{bottom:602.015100px;}
.yf4{bottom:602.534400px;}
.y15e{bottom:605.614950px;}
.y14d{bottom:614.119050px;}
.ybc{bottom:614.424000px;}
.y1b{bottom:614.455050px;}
.y16e{bottom:617.760750px;}
.y43{bottom:618.406200px;}
.y128{bottom:620.015100px;}
.yf3{bottom:620.534400px;}
.y15d{bottom:621.814950px;}
.y7d{bottom:624.187350px;}
.ybb{bottom:630.924000px;}
.y14c{bottom:632.119050px;}
.y1a{bottom:633.707100px;}
.y15c{bottom:638.014950px;}
.y127{bottom:638.015100px;}
.yf2{bottom:638.534400px;}
.y42{bottom:638.858250px;}
.y7c{bottom:643.439250px;}
.yba{bottom:647.424000px;}
.y14b{bottom:650.119050px;}
.y19{bottom:652.959000px;}
.y15b{bottom:654.214950px;}
.y126{bottom:656.015100px;}
.yf1{bottom:656.534400px;}
.y2{bottom:657.200850px;}
.y41{bottom:659.310150px;}
.y16a{bottom:662.461950px;}
.y7b{bottom:662.691300px;}
.yb9{bottom:663.924000px;}
.y14a{bottom:668.119050px;}
.y15a{bottom:670.414950px;}
.y18{bottom:672.211050px;}
.y125{bottom:674.015100px;}
.yf0{bottom:674.534400px;}
.y40{bottom:679.762200px;}
.yb8{bottom:680.424000px;}
.y7a{bottom:681.943200px;}
.y169{bottom:682.261950px;}
.y149{bottom:686.119050px;}
.y159{bottom:686.614950px;}
.y17{bottom:691.462950px;}
.y124{bottom:692.015100px;}
.yef{bottom:692.534400px;}
.yb7{bottom:696.924000px;}
.y3f{bottom:700.214100px;}
.y79{bottom:701.195250px;}
.y168{bottom:702.061950px;}
.y158{bottom:702.814950px;}
.y148{bottom:704.119050px;}
.y123{bottom:710.015100px;}
.yee{bottom:710.534400px;}
.y16{bottom:710.714850px;}
.y157{bottom:719.014950px;}
.y78{bottom:720.447150px;}
.y3e{bottom:720.666150px;}
.y167{bottom:721.861950px;}
.y147{bottom:722.119050px;}
.y122{bottom:728.015100px;}
.yed{bottom:728.534400px;}
.y15{bottom:729.966900px;}
.y156{bottom:735.214950px;}
.y77{bottom:739.699200px;}
.y146{bottom:740.119050px;}
.y3d{bottom:741.118050px;}
.y121{bottom:746.015100px;}
.y4{bottom:746.266650px;}
.yec{bottom:746.534400px;}
.y14{bottom:749.218800px;}
.y155{bottom:751.414950px;}
.y163{bottom:757.857000px;}
.y145{bottom:758.119050px;}
.y76{bottom:758.951100px;}
.yb6{bottom:760.837500px;}
.y3c{bottom:761.570100px;}
.y120{bottom:764.015100px;}
.yeb{bottom:764.534400px;}
.y154{bottom:767.614950px;}
.y13{bottom:768.470850px;}
.y3{bottom:772.562400px;}
.y144{bottom:776.119050px;}
.y75{bottom:778.203150px;}
.yb5{bottom:780.637500px;}
.y11f{bottom:782.015100px;}
.y3b{bottom:782.022000px;}
.yea{bottom:782.534400px;}
.y153{bottom:783.814950px;}
.y162{bottom:784.857000px;}
.y12{bottom:787.722900px;}
.y143{bottom:794.119050px;}
.y74{bottom:797.455050px;}
.y11e{bottom:800.015100px;}
.yb4{bottom:800.437500px;}
.ye9{bottom:800.534400px;}
.y3a{bottom:802.474050px;}
.y11{bottom:806.974800px;}
.y142{bottom:812.119050px;}
.y73{bottom:816.707100px;}
.y11d{bottom:818.015100px;}
.ye8{bottom:818.534400px;}
.yb3{bottom:820.237500px;}
.y39{bottom:822.925950px;}
.y10{bottom:826.226700px;}
.y141{bottom:830.119050px;}
.y166{bottom:833.229900px;}
.y72{bottom:835.959000px;}
.y11c{bottom:836.015100px;}
.ye7{bottom:836.534400px;}
.y38{bottom:843.378000px;}
.yf{bottom:845.478750px;}
.y140{bottom:848.119050px;}
.y11b{bottom:854.015100px;}
.ye6{bottom:854.534400px;}
.y71{bottom:855.210900px;}
.yb2{bottom:859.837500px;}
.y165{bottom:863.334000px;}
.y37{bottom:863.829900px;}
.y13f{bottom:866.119050px;}
.y11a{bottom:872.015100px;}
.ye5{bottom:872.534400px;}
.yc{bottom:874.342950px;}
.y70{bottom:874.462950px;}
.yb1{bottom:879.637500px;}
.y13e{bottom:884.119050px;}
.y36{bottom:884.281800px;}
.y119{bottom:890.015100px;}
.ye4{bottom:890.534400px;}
.yb{bottom:892.342950px;}
.y164{bottom:893.437800px;}
.y6f{bottom:893.714850px;}
.yb0{bottom:899.437500px;}
.y13d{bottom:902.119050px;}
.y118{bottom:908.015100px;}
.ye3{bottom:908.534400px;}
.ya{bottom:918.846900px;}
.yaf{bottom:919.237500px;}
.y13c{bottom:920.119050px;}
.y117{bottom:926.015100px;}
.ye2{bottom:926.534400px;}
.y6e{bottom:933.495300px;}
.y9{bottom:936.846900px;}
.y13b{bottom:938.119050px;}
.y116{bottom:944.015100px;}
.ye1{bottom:944.534400px;}
.ya7{bottom:944.701950px;}
.y6d{bottom:952.747350px;}
.y13a{bottom:956.119050px;}
.ye{bottom:957.566700px;}
.yae{bottom:958.837500px;}
.ya6{bottom:959.101800px;}
.y115{bottom:962.015100px;}
.ye0{bottom:962.534400px;}
.y8{bottom:963.350850px;}
.y6c{bottom:971.999250px;}
.y139{bottom:974.119050px;}
.yad{bottom:978.637500px;}
.yd{bottom:979.166700px;}
.y114{bottom:980.015100px;}
.ydf{bottom:980.534400px;}
.y7{bottom:981.350850px;}
.ya5{bottom:984.105900px;}
.y6b{bottom:991.251300px;}
.y138{bottom:992.119050px;}
.y113{bottom:998.015100px;}
.yac{bottom:998.437350px;}
.ya4{bottom:998.505900px;}
.yde{bottom:998.534400px;}
.y152{bottom:1006.518900px;}
.y137{bottom:1010.119050px;}
.y6a{bottom:1010.503200px;}
.ya3{bottom:1015.005900px;}
.y112{bottom:1016.015100px;}
.ydd{bottom:1016.534400px;}
.yab{bottom:1018.237500px;}
.y136{bottom:1028.119050px;}
.y69{bottom:1029.755100px;}
.y111{bottom:1034.015100px;}
.ydc{bottom:1034.534400px;}
.yaa{bottom:1038.037500px;}
.ya2{bottom:1040.009850px;}
.y135{bottom:1046.119050px;}
.y68{bottom:1049.007150px;}
.ydb{bottom:1052.534400px;}
.ya1{bottom:1054.409850px;}
.y110{bottom:1060.518900px;}
.y134{bottom:1064.119050px;}
.y67{bottom:1068.259050px;}
.yda{bottom:1070.534400px;}
.y133{bottom:1082.119050px;}
.y66{bottom:1087.511100px;}
.yd9{bottom:1088.534400px;}
.ya9{bottom:1093.837500px;}
.y10f{bottom:1100.119050px;}
.yd8{bottom:1106.534400px;}
.y65{bottom:1106.763000px;}
.ya0{bottom:1109.035500px;}
.y10e{bottom:1118.119050px;}
.yd7{bottom:1124.534400px;}
.y64{bottom:1126.015050px;}
.y10d{bottom:1136.119050px;}
.ya8{bottom:1137.037500px;}
.y63{bottom:1145.267100px;}
.yd6{bottom:1151.038350px;}
.y10c{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;}
.h1e{height:34.968750px;}
.h1d{height:35.179688px;}
.h7{height:39.312000px;}
.ha{height:39.313477px;}
.hb{height:39.339844px;}
.h6{height:39.474000px;}
.hd{height:39.577148px;}
.hc{height:41.454000px;}
.h1f{height:42.568359px;}
.h8{height:43.681641px;}
.h19{height:43.710938px;}
.h1a{height:43.974609px;}
.h1c{height:45.463477px;}
.h15{height:46.116211px;}
.h13{height:46.825195px;}
.h18{height:48.049805px;}
.he{height:48.082031px;}
.hf{height:48.372070px;}
.h1b{height:51.082031px;}
.h9{height:52.417969px;}
.h21{height:52.453125px;}
.h11{height:52.560000px;}
.h20{height:60.996094px;}
.h5{height:69.937500px;}
.h17{height:102.164062px;}
.h10{height:127.705078px;}
.h16{height:127.705678px;}
.h3{height:131.688000px;}
.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;}
.x1e{left:72.776850px;}
.x2a{left:88.116150px;}
.x2d{left:93.945150px;}
.x2c{left:94.968300px;}
.x7{left:97.795200px;}
.xc{left:104.598450px;}
.xd{left:106.299150px;}
.x6{left:108.374100px;}
.x1a{left:109.479750px;}
.x1d{left:110.551200px;}
.x23{left:127.559100px;}
.x5{left:142.368300px;}
.x2f{left:168.038400px;}
.x29{left:178.582650px;}
.x34{left:198.173850px;}
.x2e{left:201.950550px;}
.x1f{left:208.346400px;}
.x35{left:212.393850px;}
.x1c{left:215.016000px;}
.x33{left:218.645850px;}
.x36{left:226.428600px;}
.x27{left:253.582200px;}
.x24{left:256.507650px;}
.x19{left:280.629900px;}
.x2b{left:299.518350px;}
.x30{left:315.243300px;}
.x25{left:338.333850px;}
.x28{left:343.725000px;}
.x31{left:359.700600px;}
.x32{left:369.487800px;}
.x26{left:431.956950px;}
.x9{left:455.679750px;}
.xa{left:511.976100px;}
.x12{left:581.778450px;}
.xe{left:596.738100px;}
.x11{left:605.154750px;}
.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;}
.x15{left:652.837950px;}
.x20{left:667.093350px;}
.x21{left:668.288400px;}
.x22{left:679.668600px;}
.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;}
.lsa{letter-spacing:-1.466667pt;}
.ls9{letter-spacing:-1.173333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.004373pt;}
.ls5{letter-spacing:7.680000pt;}
.ls1{letter-spacing:9.600000pt;}
.ls3{letter-spacing:11.733333pt;}
.ls8{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;}
.ws10{word-spacing:-64.426133pt;}
.wsa{word-spacing:-32.160000pt;}
.ws5{word-spacing:-22.944000pt;}
.ws84{word-spacing:-17.792000pt;}
.ws11{word-spacing:-14.826667pt;}
.ws12{word-spacing:-13.344000pt;}
.ws24{word-spacing:-12.800000pt;}
.ws6{word-spacing:-11.520000pt;}
.ws7e{word-spacing:-8.053333pt;}
.ws3a{word-spacing:-7.573333pt;}
.wse{word-spacing:-6.805333pt;}
.ws49{word-spacing:-5.920000pt;}
.ws4c{word-spacing:-5.173333pt;}
.ws33{word-spacing:-4.853333pt;}
.ws18{word-spacing:-4.560000pt;}
.ws4f{word-spacing:-4.373333pt;}
.ws15{word-spacing:-3.984000pt;}
.ws66{word-spacing:-3.840000pt;}
.wsd{word-spacing:-3.813333pt;}
.ws85{word-spacing:-3.520000pt;}
.ws48{word-spacing:-3.413333pt;}
.wsc{word-spacing:-3.285333pt;}
.ws30{word-spacing:-3.200000pt;}
.ws40{word-spacing:-2.933333pt;}
.ws57{word-spacing:-2.880000pt;}
.ws13{word-spacing:-2.170667pt;}
.ws7c{word-spacing:-2.026667pt;}
.ws1{word-spacing:-1.973333pt;}
.ws2{word-spacing:-1.776000pt;}
.ws58{word-spacing:-1.706667pt;}
.ws2a{word-spacing:-1.600000pt;}
.ws5f{word-spacing:-1.440000pt;}
.ws64{word-spacing:-1.333333pt;}
.ws72{word-spacing:-1.226667pt;}
.ws2b{word-spacing:-1.120000pt;}
.ws3{word-spacing:-0.864000pt;}
.ws19{word-spacing:-0.816000pt;}
.ws22{word-spacing:-0.624000pt;}
.ws63{word-spacing:-0.586667pt;}
.ws21{word-spacing:-0.576000pt;}
.ws25{word-spacing:-0.266667pt;}
.ws51{word-spacing:-0.213333pt;}
.ws0{word-spacing:0.000000pt;}
.ws5e{word-spacing:0.160000pt;}
.ws59{word-spacing:0.266667pt;}
.ws81{word-spacing:0.336000pt;}
.ws77{word-spacing:0.373333pt;}
.ws26{word-spacing:0.533333pt;}
.ws79{word-spacing:0.800000pt;}
.ws20{word-spacing:0.960000pt;}
.ws39{word-spacing:1.013333pt;}
.ws34{word-spacing:1.066667pt;}
.ws42{word-spacing:1.173333pt;}
.ws38{word-spacing:1.226667pt;}
.ws86{word-spacing:1.466667pt;}
.ws41{word-spacing:1.493333pt;}
.ws1a{word-spacing:1.872000pt;}
.ws31{word-spacing:2.186667pt;}
.ws17{word-spacing:2.208000pt;}
.ws28{word-spacing:2.346667pt;}
.ws7a{word-spacing:2.400000pt;}
.ws6c{word-spacing:2.666667pt;}
.ws14{word-spacing:2.688000pt;}
.ws71{word-spacing:2.986667pt;}
.ws1f{word-spacing:3.456000pt;}
.ws50{word-spacing:3.466667pt;}
.ws75{word-spacing:3.520000pt;}
.ws62{word-spacing:3.573333pt;}
.ws6d{word-spacing:3.680000pt;}
.ws69{word-spacing:3.786667pt;}
.ws7d{word-spacing:3.893333pt;}
.ws47{word-spacing:3.946667pt;}
.ws2f{word-spacing:4.053333pt;}
.ws52{word-spacing:4.373333pt;}
.ws3f{word-spacing:4.533333pt;}
.ws4a{word-spacing:4.586667pt;}
.ws65{word-spacing:4.746667pt;}
.ws55{word-spacing:5.013333pt;}
.ws37{word-spacing:5.120000pt;}
.ws82{word-spacing:5.136000pt;}
.ws4b{word-spacing:5.600000pt;}
.ws56{word-spacing:5.760000pt;}
.ws6a{word-spacing:5.973333pt;}
.ws61{word-spacing:6.080000pt;}
.ws54{word-spacing:6.346667pt;}
.ws2d{word-spacing:6.560000pt;}
.ws67{word-spacing:6.613333pt;}
.ws4d{word-spacing:7.146667pt;}
.ws78{word-spacing:7.306667pt;}
.ws43{word-spacing:7.786667pt;}
.ws1e{word-spacing:7.968000pt;}
.ws6f{word-spacing:8.000000pt;}
.ws2c{word-spacing:8.053333pt;}
.ws4e{word-spacing:8.213333pt;}
.ws6e{word-spacing:8.373333pt;}
.ws73{word-spacing:8.586667pt;}
.ws53{word-spacing:8.746667pt;}
.ws80{word-spacing:9.024000pt;}
.ws60{word-spacing:9.226667pt;}
.ws3b{word-spacing:9.333333pt;}
.ws1c{word-spacing:9.360000pt;}
.ws5b{word-spacing:9.440000pt;}
.ws44{word-spacing:9.813333pt;}
.ws1d{word-spacing:10.176000pt;}
.ws68{word-spacing:10.240000pt;}
.ws2e{word-spacing:10.560000pt;}
.ws5c{word-spacing:10.720000pt;}
.ws83{word-spacing:10.848000pt;}
.ws16{word-spacing:11.376000pt;}
.ws3c{word-spacing:11.413333pt;}
.ws46{word-spacing:11.893333pt;}
.ws32{word-spacing:12.160000pt;}
.ws36{word-spacing:12.853333pt;}
.ws7f{word-spacing:13.333333pt;}
.ws35{word-spacing:13.546667pt;}
.ws5d{word-spacing:13.973333pt;}
.ws27{word-spacing:14.293333pt;}
.ws7b{word-spacing:14.346667pt;}
.ws1b{word-spacing:14.688000pt;}
.ws6b{word-spacing:14.826667pt;}
.ws3d{word-spacing:15.413333pt;}
.ws29{word-spacing:18.080000pt;}
.ws7{word-spacing:18.288000pt;}
.ws45{word-spacing:18.826667pt;}
.ws70{word-spacing:19.626667pt;}
.ws76{word-spacing:19.893333pt;}
.ws5a{word-spacing:23.200000pt;}
.ws3e{word-spacing:26.346667pt;}
.ws74{word-spacing:26.400000pt;}
.ws8{word-spacing:72.015467pt;}
.ws23{word-spacing:82.270933pt;}
.ws4{word-spacing:90.567467pt;}
.wsf{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;}
._5b{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;}
._5c{margin-left:-597.531733pt;}
._57{margin-left:-576.128000pt;}
._3f{margin-left:-541.632000pt;}
._7{margin-left:-508.320000pt;}
._5a{margin-left:-504.854933pt;}
._43{margin-left:-500.657600pt;}
._58{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;}
._59{margin-left:-320.000000pt;}
._27{margin-left:-234.720000pt;}
._4d{margin-left:-13.635200pt;}
._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;}
._51{width:5.174400pt;}
._50{width:6.465067pt;}
._48{width:7.584000pt;}
._47{width:9.326400pt;}
._4e{width:10.492800pt;}
._4f{width:12.182400pt;}
._54{width:13.232000pt;}
._46{width:18.305067pt;}
._53{width:19.822933pt;}
._52{width:20.924267pt;}
._56{width:52.450667pt;}
._55{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;}
.y132{bottom:108.400267pt;}
.y10b{bottom:109.129467pt;}
.y5b{bottom:113.385733pt;}
.y9a{bottom:113.385867pt;}
.y34{bottom:118.360800pt;}
.y5f{bottom:120.280667pt;}
.y10a{bottom:121.929467pt;}
.y151{bottom:124.060933pt;}
.y99{bottom:126.755600pt;}
.yd5{bottom:127.529867pt;}
.y5a{bottom:131.565333pt;}
.y5e{bottom:134.680667pt;}
.y33{bottom:135.473600pt;}
.yd4{bottom:142.196533pt;}
.y98{bottom:142.755600pt;}
.y109{bottom:146.068000pt;}
.y5d{bottom:149.080667pt;}
.y59{bottom:149.744933pt;}
.y32{bottom:152.586533pt;}
.yd3{bottom:156.863200pt;}
.y97{bottom:158.755600pt;}
.y108{bottom:162.068000pt;}
.y5c{bottom:163.480667pt;}
.y58{bottom:167.924400pt;}
.y31{bottom:169.699333pt;}
.y96{bottom:174.755600pt;}
.yd2{bottom:179.088933pt;}
.y107{bottom:185.627067pt;}
.y57{bottom:186.103867pt;}
.y30{bottom:186.812267pt;}
.y95{bottom:190.755600pt;}
.yd1{bottom:193.755600pt;}
.y2f{bottom:203.925067pt;}
.y56{bottom:204.283467pt;}
.y94{bottom:206.755600pt;}
.yd0{bottom:208.422267pt;}
.y8e{bottom:217.649200pt;}
.y106{bottom:220.827067pt;}
.y2e{bottom:221.037867pt;}
.y55{bottom:222.462933pt;}
.y93{bottom:222.755600pt;}
.ycf{bottom:223.088933pt;}
.y161{bottom:225.649733pt;}
.y8d{bottom:235.828800pt;}
.y105{bottom:236.827067pt;}
.yce{bottom:237.755600pt;}
.y2d{bottom:238.150800pt;}
.y92{bottom:238.755600pt;}
.y54{bottom:240.642533pt;}
.y160{bottom:241.649733pt;}
.ycd{bottom:252.422267pt;}
.y104{bottom:252.827067pt;}
.y8c{bottom:254.008267pt;}
.y2c{bottom:255.263733pt;}
.y53{bottom:258.822000pt;}
.y91{bottom:262.314667pt;}
.ycc{bottom:267.088933pt;}
.y103{bottom:268.827067pt;}
.y178{bottom:271.760000pt;}
.y8b{bottom:272.187733pt;}
.y2b{bottom:272.376533pt;}
.y52{bottom:277.001600pt;}
.y90{bottom:278.314667pt;}
.ycb{bottom:281.755600pt;}
.y102{bottom:284.827067pt;}
.y177{bottom:289.360000pt;}
.y2a{bottom:289.489333pt;}
.y8a{bottom:290.367333pt;}
.y51{bottom:295.181067pt;}
.y101{bottom:300.827067pt;}
.y8f{bottom:301.873733pt;}
.y29{bottom:306.602267pt;}
.y176{bottom:306.960000pt;}
.y89{bottom:308.546800pt;}
.yca{bottom:311.062800pt;}
.y50{bottom:313.360533pt;}
.y100{bottom:316.827067pt;}
.y28{bottom:323.715067pt;}
.y175{bottom:324.560000pt;}
.yc9{bottom:325.729467pt;}
.y88{bottom:326.726400pt;}
.y4f{bottom:331.540133pt;}
.yff{bottom:332.827067pt;}
.y27{bottom:340.828000pt;}
.y174{bottom:342.160000pt;}
.y87{bottom:344.905867pt;}
.yc8{bottom:347.955200pt;}
.yfe{bottom:348.827067pt;}
.y4e{bottom:349.719600pt;}
.y26{bottom:357.940800pt;}
.yc7{bottom:362.621867pt;}
.y86{bottom:363.085467pt;}
.yfd{bottom:364.827067pt;}
.y4d{bottom:367.899200pt;}
.y25{bottom:375.053733pt;}
.yc6{bottom:377.288533pt;}
.yfc{bottom:380.827067pt;}
.y85{bottom:381.264933pt;}
.y16d{bottom:384.040267pt;}
.y4c{bottom:386.078667pt;}
.yc5{bottom:391.955200pt;}
.y24{bottom:392.166533pt;}
.yfb{bottom:396.827067pt;}
.y84{bottom:399.444533pt;}
.y16c{bottom:401.640267pt;}
.y4b{bottom:404.258267pt;}
.yc4{bottom:406.621867pt;}
.y131{bottom:407.124533pt;}
.y23{bottom:409.279467pt;}
.yfa{bottom:412.827067pt;}
.y83{bottom:417.624000pt;}
.y16b{bottom:419.240267pt;}
.yc3{bottom:421.288533pt;}
.y4a{bottom:422.437733pt;}
.y130{bottom:423.124533pt;}
.y22{bottom:426.392267pt;}
.yf9{bottom:428.827067pt;}
.y82{bottom:435.803600pt;}
.yc2{bottom:435.955200pt;}
.y12f{bottom:439.124533pt;}
.y49{bottom:440.617333pt;}
.y21{bottom:443.505067pt;}
.yf8{bottom:444.827067pt;}
.y81{bottom:453.983067pt;}
.y12e{bottom:455.124533pt;}
.y48{bottom:458.796800pt;}
.y20{bottom:460.618000pt;}
.y173{bottom:461.120667pt;}
.yc1{bottom:465.262267pt;}
.yf7{bottom:468.386133pt;}
.y12d{bottom:471.124533pt;}
.y80{bottom:472.162533pt;}
.y47{bottom:476.976400pt;}
.y1f{bottom:477.730933pt;}
.y172{bottom:478.720667pt;}
.yc0{bottom:479.928933pt;}
.y12c{bottom:487.124533pt;}
.y7f{bottom:490.342133pt;}
.y1e{bottom:494.843733pt;}
.y46{bottom:495.155867pt;}
.y171{bottom:496.320533pt;}
.y150{bottom:497.883600pt;}
.ybf{bottom:502.154667pt;}
.y12b{bottom:503.124533pt;}
.yf6{bottom:503.586133pt;}
.y7e{bottom:508.521600pt;}
.y1d{bottom:511.956533pt;}
.y45{bottom:513.335467pt;}
.y14f{bottom:513.883600pt;}
.y170{bottom:513.920667pt;}
.ybe{bottom:516.821333pt;}
.y12a{bottom:519.124533pt;}
.yf5{bottom:519.586133pt;}
.y15f{bottom:523.924400pt;}
.y1c{bottom:529.069467pt;}
.y14e{bottom:529.883600pt;}
.ybd{bottom:531.488000pt;}
.y44{bottom:531.514933pt;}
.y16f{bottom:531.520533pt;}
.y129{bottom:535.124533pt;}
.yf4{bottom:535.586133pt;}
.y15e{bottom:538.324400pt;}
.y14d{bottom:545.883600pt;}
.ybc{bottom:546.154667pt;}
.y1b{bottom:546.182267pt;}
.y16e{bottom:549.120667pt;}
.y43{bottom:549.694400pt;}
.y128{bottom:551.124533pt;}
.yf3{bottom:551.586133pt;}
.y15d{bottom:552.724400pt;}
.y7d{bottom:554.833200pt;}
.ybb{bottom:560.821333pt;}
.y14c{bottom:561.883600pt;}
.y1a{bottom:563.295200pt;}
.y15c{bottom:567.124400pt;}
.y127{bottom:567.124533pt;}
.yf2{bottom:567.586133pt;}
.y42{bottom:567.874000pt;}
.y7c{bottom:571.946000pt;}
.yba{bottom:575.488000pt;}
.y14b{bottom:577.883600pt;}
.y19{bottom:580.408000pt;}
.y15b{bottom:581.524400pt;}
.y126{bottom:583.124533pt;}
.yf1{bottom:583.586133pt;}
.y2{bottom:584.178533pt;}
.y41{bottom:586.053467pt;}
.y16a{bottom:588.855067pt;}
.y7b{bottom:589.058933pt;}
.yb9{bottom:590.154667pt;}
.y14a{bottom:593.883600pt;}
.y15a{bottom:595.924400pt;}
.y18{bottom:597.520933pt;}
.y125{bottom:599.124533pt;}
.yf0{bottom:599.586133pt;}
.y40{bottom:604.233067pt;}
.yb8{bottom:604.821333pt;}
.y7a{bottom:606.171733pt;}
.y169{bottom:606.455067pt;}
.y149{bottom:609.883600pt;}
.y159{bottom:610.324400pt;}
.y17{bottom:614.633733pt;}
.y124{bottom:615.124533pt;}
.yef{bottom:615.586133pt;}
.yb7{bottom:619.488000pt;}
.y3f{bottom:622.412533pt;}
.y79{bottom:623.284667pt;}
.y168{bottom:624.055067pt;}
.y158{bottom:624.724400pt;}
.y148{bottom:625.883600pt;}
.y123{bottom:631.124533pt;}
.yee{bottom:631.586133pt;}
.y16{bottom:631.746533pt;}
.y157{bottom:639.124400pt;}
.y78{bottom:640.397467pt;}
.y3e{bottom:640.592133pt;}
.y167{bottom:641.655067pt;}
.y147{bottom:641.883600pt;}
.y122{bottom:647.124533pt;}
.yed{bottom:647.586133pt;}
.y15{bottom:648.859467pt;}
.y156{bottom:653.524400pt;}
.y77{bottom:657.510400pt;}
.y146{bottom:657.883600pt;}
.y3d{bottom:658.771600pt;}
.y121{bottom:663.124533pt;}
.y4{bottom:663.348133pt;}
.yec{bottom:663.586133pt;}
.y14{bottom:665.972267pt;}
.y155{bottom:667.924400pt;}
.y163{bottom:673.650667pt;}
.y145{bottom:673.883600pt;}
.y76{bottom:674.623200pt;}
.yb6{bottom:676.300000pt;}
.y3c{bottom:676.951200pt;}
.y120{bottom:679.124533pt;}
.yeb{bottom:679.586133pt;}
.y154{bottom:682.324400pt;}
.y13{bottom:683.085200pt;}
.y3{bottom:686.722133pt;}
.y144{bottom:689.883600pt;}
.y75{bottom:691.736133pt;}
.yb5{bottom:693.900000pt;}
.y11f{bottom:695.124533pt;}
.y3b{bottom:695.130667pt;}
.yea{bottom:695.586133pt;}
.y153{bottom:696.724400pt;}
.y162{bottom:697.650667pt;}
.y12{bottom:700.198133pt;}
.y143{bottom:705.883600pt;}
.y74{bottom:708.848933pt;}
.y11e{bottom:711.124533pt;}
.yb4{bottom:711.500000pt;}
.ye9{bottom:711.586133pt;}
.y3a{bottom:713.310267pt;}
.y11{bottom:717.310933pt;}
.y142{bottom:721.883600pt;}
.y73{bottom:725.961867pt;}
.y11d{bottom:727.124533pt;}
.ye8{bottom:727.586133pt;}
.yb3{bottom:729.100000pt;}
.y39{bottom:731.489733pt;}
.y10{bottom:734.423733pt;}
.y141{bottom:737.883600pt;}
.y166{bottom:740.648800pt;}
.y72{bottom:743.074667pt;}
.y11c{bottom:743.124533pt;}
.ye7{bottom:743.586133pt;}
.y38{bottom:749.669333pt;}
.yf{bottom:751.536667pt;}
.y140{bottom:753.883600pt;}
.y11b{bottom:759.124533pt;}
.ye6{bottom:759.586133pt;}
.y71{bottom:760.187467pt;}
.yb2{bottom:764.300000pt;}
.y165{bottom:767.408000pt;}
.y37{bottom:767.848800pt;}
.y13f{bottom:769.883600pt;}
.y11a{bottom:775.124533pt;}
.ye5{bottom:775.586133pt;}
.yc{bottom:777.193733pt;}
.y70{bottom:777.300400pt;}
.yb1{bottom:781.900000pt;}
.y13e{bottom:785.883600pt;}
.y36{bottom:786.028267pt;}
.y119{bottom:791.124533pt;}
.ye4{bottom:791.586133pt;}
.yb{bottom:793.193733pt;}
.y164{bottom:794.166933pt;}
.y6f{bottom:794.413200pt;}
.yb0{bottom:799.500000pt;}
.y13d{bottom:801.883600pt;}
.y118{bottom:807.124533pt;}
.ye3{bottom:807.586133pt;}
.ya{bottom:816.752800pt;}
.yaf{bottom:817.100000pt;}
.y13c{bottom:817.883600pt;}
.y117{bottom:823.124533pt;}
.ye2{bottom:823.586133pt;}
.y6e{bottom:829.773600pt;}
.y9{bottom:832.752800pt;}
.y13b{bottom:833.883600pt;}
.y116{bottom:839.124533pt;}
.ye1{bottom:839.586133pt;}
.ya7{bottom:839.735067pt;}
.y6d{bottom:846.886533pt;}
.y13a{bottom:849.883600pt;}
.ye{bottom:851.170400pt;}
.yae{bottom:852.300000pt;}
.ya6{bottom:852.534933pt;}
.y115{bottom:855.124533pt;}
.ye0{bottom:855.586133pt;}
.y8{bottom:856.311867pt;}
.y6c{bottom:863.999333pt;}
.y139{bottom:865.883600pt;}
.yad{bottom:869.900000pt;}
.yd{bottom:870.370400pt;}
.y114{bottom:871.124533pt;}
.ydf{bottom:871.586133pt;}
.y7{bottom:872.311867pt;}
.ya5{bottom:874.760800pt;}
.y6b{bottom:881.112267pt;}
.y138{bottom:881.883600pt;}
.y113{bottom:887.124533pt;}
.yac{bottom:887.499867pt;}
.ya4{bottom:887.560800pt;}
.yde{bottom:887.586133pt;}
.y152{bottom:894.683467pt;}
.y137{bottom:897.883600pt;}
.y6a{bottom:898.225067pt;}
.ya3{bottom:902.227467pt;}
.y112{bottom:903.124533pt;}
.ydd{bottom:903.586133pt;}
.yab{bottom:905.100000pt;}
.y136{bottom:913.883600pt;}
.y69{bottom:915.337867pt;}
.y111{bottom:919.124533pt;}
.ydc{bottom:919.586133pt;}
.yaa{bottom:922.700000pt;}
.ya2{bottom:924.453200pt;}
.y135{bottom:929.883600pt;}
.y68{bottom:932.450800pt;}
.ydb{bottom:935.586133pt;}
.ya1{bottom:937.253200pt;}
.y110{bottom:942.683467pt;}
.y134{bottom:945.883600pt;}
.y67{bottom:949.563600pt;}
.yda{bottom:951.586133pt;}
.y133{bottom:961.883600pt;}
.y66{bottom:966.676533pt;}
.yd9{bottom:967.586133pt;}
.ya9{bottom:972.300000pt;}
.y10f{bottom:977.883600pt;}
.yd8{bottom:983.586133pt;}
.y65{bottom:983.789333pt;}
.ya0{bottom:985.809333pt;}
.y10e{bottom:993.883600pt;}
.yd7{bottom:999.586133pt;}
.y64{bottom:1000.902267pt;}
.y10d{bottom:1009.883600pt;}
.ya8{bottom:1010.700000pt;}
.y63{bottom:1018.015200pt;}
.yd6{bottom:1023.145200pt;}
.y10c{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;}
.h1e{height:31.083333pt;}
.h1d{height:31.270833pt;}
.h7{height:34.944000pt;}
.ha{height:34.945312pt;}
.hb{height:34.968750pt;}
.h6{height:35.088000pt;}
.hd{height:35.179688pt;}
.hc{height:36.848000pt;}
.h1f{height:37.838542pt;}
.h8{height:38.828125pt;}
.h19{height:38.854167pt;}
.h1a{height:39.088542pt;}
.h1c{height:40.411979pt;}
.h15{height:40.992188pt;}
.h13{height:41.622396pt;}
.h18{height:42.710938pt;}
.he{height:42.739583pt;}
.hf{height:42.997396pt;}
.h1b{height:45.406250pt;}
.h9{height:46.593750pt;}
.h21{height:46.625000pt;}
.h11{height:46.720000pt;}
.h20{height:54.218750pt;}
.h5{height:62.166667pt;}
.h17{height:90.812500pt;}
.h10{height:113.515625pt;}
.h16{height:113.516158pt;}
.h3{height:117.056000pt;}
.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;}
.x1e{left:64.690533pt;}
.x2a{left:78.325467pt;}
.x2d{left:83.506800pt;}
.x2c{left:84.416267pt;}
.x7{left:86.929067pt;}
.xc{left:92.976400pt;}
.xd{left:94.488133pt;}
.x6{left:96.332533pt;}
.x1a{left:97.315333pt;}
.x1d{left:98.267733pt;}
.x23{left:113.385867pt;}
.x5{left:126.549600pt;}
.x2f{left:149.367467pt;}
.x29{left:158.740133pt;}
.x34{left:176.154533pt;}
.x2e{left:179.511600pt;}
.x1f{left:185.196800pt;}
.x35{left:188.794533pt;}
.x1c{left:191.125333pt;}
.x33{left:194.351867pt;}
.x36{left:201.269867pt;}
.x27{left:225.406400pt;}
.x24{left:228.006800pt;}
.x19{left:249.448800pt;}
.x2b{left:266.238533pt;}
.x30{left:280.216267pt;}
.x25{left:300.741200pt;}
.x28{left:305.533333pt;}
.x31{left:319.733867pt;}
.x32{left:328.433600pt;}
.x26{left:383.961733pt;}
.x9{left:405.048667pt;}
.xa{left:455.089867pt;}
.x12{left:517.136400pt;}
.xe{left:530.433867pt;}
.x11{left:537.915333pt;}
.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;}
.x15{left:580.300400pt;}
.x20{left:592.971867pt;}
.x21{left:594.034133pt;}
.x22{left:604.149867pt;}
.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; }
  