
    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_aea91ad0b54c8ce8f95b746f.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_12e1451901ce009bf38c2f9c.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_26323c8b2b318ecea78b9388.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_d8f808b40b186881d7aa59d4.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_d0cfe710539e171e61d10ea5.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_d6cca43e3aa93e78ddd164a0.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_fefa1921abac310adc22b967.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_582550828bcbbaf2b82ab853.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_ca76ef09b2d5720e480e9517.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_d0cfe710539e171e61d10ea5.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_d0cfe710539e171e61d10ea5.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_d0cfe710539e171e61d10ea5.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_38daafe2f9596f5109ad09fb.woff')format("woff");}.ffd{font-family:ffd;line-height:0.916992;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_c92618a413339c7cbe871c00.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_eef0f0d2108861b6114cbb7c.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_dedc0d4c9fcfc3000676a1ee.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_fe45cd0b8335b1f9a4e119bb.woff')format("woff");}.ff11{font-family:ff11;line-height:0.916992;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_c02f83da6890e576e5725480.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_85f7fe0c7eb195a4c3045cb7.woff')format("woff");}.ff13{font-family:ff13;line-height:0.916992;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_73d14f9449253e3e87cb06a6.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_d0cfe710539e171e61d10ea5.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_eef0f0d2108861b6114cbb7c.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_dedc0d4c9fcfc3000676a1ee.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_85f7fe0c7eb195a4c3045cb7.woff')format("woff");}.ff18{font-family:ff18;line-height:0.916992;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_73d14f9449253e3e87cb06a6.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_d0cfe710539e171e61d10ea5.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_eef0f0d2108861b6114cbb7c.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_dedc0d4c9fcfc3000676a1ee.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_4b6b3a0627058518e2978def.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:32.400000px;}
.ls8{letter-spacing:-1.998000px;}
.lsa{letter-spacing:-1.650000px;}
.ls9{letter-spacing:-1.320000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:8.640000px;}
.ls1{letter-spacing:10.800000px;}
.ls3{letter-spacing:13.200000px;}
.ls7{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;}
.wsf{word-spacing:-72.479400px;}
.wsa{word-spacing:-36.180000px;}
.ws11{word-spacing:-31.680000px;}
.ws5{word-spacing:-25.812000px;}
.ws66{word-spacing:-20.016000px;}
.ws13{word-spacing:-16.680000px;}
.ws12{word-spacing:-15.012000px;}
.ws20{word-spacing:-14.400000px;}
.ws6{word-spacing:-12.960000px;}
.ws55{word-spacing:-8.460000px;}
.ws59{word-spacing:-6.960000px;}
.ws3e{word-spacing:-5.700000px;}
.ws52{word-spacing:-4.800000px;}
.wsd{word-spacing:-4.290000px;}
.ws4e{word-spacing:-4.020000px;}
.ws67{word-spacing:-3.960000px;}
.wsc{word-spacing:-3.696000px;}
.ws48{word-spacing:-3.240000px;}
.ws3b{word-spacing:-3.060000px;}
.ws24{word-spacing:-3.000000px;}
.ws64{word-spacing:-2.970000px;}
.ws3d{word-spacing:-2.760000px;}
.ws5b{word-spacing:-2.700000px;}
.ws3c{word-spacing:-2.640000px;}
.ws14{word-spacing:-2.442000px;}
.ws2b{word-spacing:-2.400000px;}
.ws1{word-spacing:-2.220000px;}
.ws1a{word-spacing:-2.052000px;}
.ws2{word-spacing:-1.998000px;}
.ws47{word-spacing:-1.920000px;}
.ws56{word-spacing:-1.680000px;}
.ws49{word-spacing:-1.560000px;}
.ws5a{word-spacing:-1.440000px;}
.ws19{word-spacing:-1.350000px;}
.ws4c{word-spacing:-1.260000px;}
.ws5e{word-spacing:-1.020000px;}
.ws3{word-spacing:-0.972000px;}
.ws2e{word-spacing:-0.540000px;}
.ws3a{word-spacing:-0.480000px;}
.ws46{word-spacing:-0.240000px;}
.ws39{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws45{word-spacing:0.780000px;}
.ws16{word-spacing:0.972000px;}
.ws28{word-spacing:1.260000px;}
.ws68{word-spacing:1.650000px;}
.ws62{word-spacing:1.944000px;}
.ws65{word-spacing:2.268000px;}
.ws1c{word-spacing:2.376000px;}
.ws5f{word-spacing:3.078000px;}
.ws31{word-spacing:3.240000px;}
.ws1e{word-spacing:3.348000px;}
.ws3f{word-spacing:3.360000px;}
.ws63{word-spacing:3.726000px;}
.ws60{word-spacing:3.888000px;}
.ws2c{word-spacing:3.900000px;}
.ws27{word-spacing:4.080000px;}
.ws26{word-spacing:4.140000px;}
.ws2f{word-spacing:4.500000px;}
.ws5d{word-spacing:5.340000px;}
.ws29{word-spacing:5.940000px;}
.ws43{word-spacing:6.060000px;}
.ws17{word-spacing:6.264000px;}
.ws44{word-spacing:6.840000px;}
.ws1b{word-spacing:7.074000px;}
.ws15{word-spacing:7.506000px;}
.ws42{word-spacing:8.160000px;}
.ws57{word-spacing:8.220000px;}
.ws23{word-spacing:8.400000px;}
.ws4d{word-spacing:8.580000px;}
.ws2a{word-spacing:8.700000px;}
.ws1d{word-spacing:8.964000px;}
.ws22{word-spacing:9.120000px;}
.ws51{word-spacing:9.900000px;}
.ws61{word-spacing:10.962000px;}
.ws54{word-spacing:11.280000px;}
.ws4a{word-spacing:11.400000px;}
.ws4b{word-spacing:11.700000px;}
.ws50{word-spacing:13.020000px;}
.ws4f{word-spacing:13.440000px;}
.ws5c{word-spacing:13.500000px;}
.ws58{word-spacing:15.120000px;}
.ws53{word-spacing:15.360000px;}
.ws18{word-spacing:15.822000px;}
.ws21{word-spacing:16.800000px;}
.ws30{word-spacing:16.920000px;}
.ws2d{word-spacing:17.100000px;}
.ws25{word-spacing:17.640000px;}
.ws1f{word-spacing:18.144000px;}
.ws7{word-spacing:20.574000px;}
.ws40{word-spacing:20.760000px;}
.ws41{word-spacing:30.420000px;}
.ws8{word-spacing:81.017400px;}
.ws10{word-spacing:92.554800px;}
.ws4{word-spacing:101.888400px;}
.wse{word-spacing:107.243400px;}
.ws32{word-spacing:264.771000px;}
.ws37{word-spacing:349.577400px;}
.ws38{word-spacing:408.852600px;}
.ws33{word-spacing:427.317600px;}
.ws35{word-spacing:446.140800px;}
.ws36{word-spacing:446.890800px;}
.ws34{word-spacing:461.899200px;}
._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;}
._66{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;}
._67{margin-left:-672.223200px;}
._62{margin-left:-648.144000px;}
._3f{margin-left:-609.336000px;}
._7{margin-left:-571.860000px;}
._65{margin-left:-567.961200px;}
._43{margin-left:-563.239800px;}
._63{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;}
._64{margin-left:-360.000000px;}
._27{margin-left:-264.060000px;}
._4d{margin-left:-14.716800px;}
._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;}
._4e{width:6.079800px;}
._4f{width:7.193400px;}
._48{width:8.532000px;}
._47{width:10.492200px;}
._5f{width:11.759400px;}
._51{width:13.673400px;}
._60{width:14.802000px;}
._46{width:20.593200px;}
._50{width:23.495400px;}
._61{width:47.952000px;}
._52{width:112.456200px;}
._5b{width:423.864600px;}
._55{width:461.152800px;}
._57{width:464.796600px;}
._58{width:472.790400px;}
._56{width:474.793800px;}
._54{width:476.911200px;}
._53{width:487.806000px;}
._59{width:637.315800px;}
._5c{width:983.230200px;}
._5a{width:986.254200px;}
._5e{width:1001.320200px;}
._5d{width:1047.301200px;}
.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);}
.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);}
.fcd{color:rgb(105,198,71);}
.fca{color:rgb(90,198,243);}
.fc9{color:rgb(47,92,179);}
.fcc{color:rgb(246,131,19);}
.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;}
.fsc{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;}
.y5b{bottom:127.558950px;}
.y9a{bottom:127.559100px;}
.ye7{bottom:130.455450px;}
.y113{bottom:131.092950px;}
.y34{bottom:133.155900px;}
.y5f{bottom:135.315750px;}
.y99{bottom:142.600050px;}
.y12a{bottom:143.274900px;}
.y5a{bottom:148.011000px;}
.ye6{bottom:148.455450px;}
.y112{bottom:149.092950px;}
.y5e{bottom:151.515750px;}
.yc6{bottom:152.040450px;}
.y33{bottom:152.407800px;}
.y98{bottom:160.600050px;}
.y129{bottom:161.274900px;}
.ye5{bottom:166.455450px;}
.y111{bottom:167.092950px;}
.y5d{bottom:167.715750px;}
.y59{bottom:168.463050px;}
.yc5{bottom:168.540450px;}
.y32{bottom:171.659850px;}
.y97{bottom:178.600050px;}
.y128{bottom:179.274900px;}
.y5c{bottom:183.915750px;}
.ye4{bottom:184.455450px;}
.y110{bottom:185.092950px;}
.y58{bottom:188.914950px;}
.y31{bottom:190.911750px;}
.yc4{bottom:193.544400px;}
.y96{bottom:196.600050px;}
.y127{bottom:197.274900px;}
.ye3{bottom:202.455450px;}
.y10f{bottom:203.092950px;}
.y57{bottom:209.366850px;}
.yc3{bottom:210.044400px;}
.y30{bottom:210.163800px;}
.y95{bottom:214.600050px;}
.y126{bottom:215.274900px;}
.ye2{bottom:220.455450px;}
.y10e{bottom:221.092950px;}
.yc2{bottom:226.544400px;}
.y2f{bottom:229.415700px;}
.y56{bottom:229.818900px;}
.y94{bottom:232.600050px;}
.ye1{bottom:238.455450px;}
.y10d{bottom:239.092950px;}
.y125{bottom:241.778850px;}
.yc1{bottom:243.044400px;}
.y8e{bottom:244.855350px;}
.y2e{bottom:248.667600px;}
.y55{bottom:250.270800px;}
.y93{bottom:250.600050px;}
.y146{bottom:253.855950px;}
.ye0{bottom:256.455450px;}
.y10c{bottom:257.092950px;}
.yc0{bottom:259.544400px;}
.y8d{bottom:265.307400px;}
.y2d{bottom:267.919650px;}
.y92{bottom:268.600050px;}
.y54{bottom:270.722850px;}
.y145{bottom:271.855950px;}
.y10b{bottom:275.092950px;}
.ybf{bottom:276.044400px;}
.y124{bottom:281.378850px;}
.ydf{bottom:282.959400px;}
.y8c{bottom:285.759300px;}
.y2c{bottom:287.171700px;}
.y53{bottom:291.174750px;}
.ybe{bottom:292.544400px;}
.y10a{bottom:293.092950px;}
.y91{bottom:295.104000px;}
.y123{bottom:299.378850px;}
.y144{bottom:303.964350px;}
.y15d{bottom:305.730000px;}
.y8b{bottom:306.211200px;}
.y2b{bottom:306.423600px;}
.y109{bottom:311.092950px;}
.y52{bottom:311.626800px;}
.y90{bottom:313.104000px;}
.ybd{bottom:314.372700px;}
.y122{bottom:317.378850px;}
.y143{bottom:320.164350px;}
.yde{bottom:322.559400px;}
.y15c{bottom:325.530000px;}
.y2a{bottom:325.675500px;}
.y8a{bottom:326.663250px;}
.ybc{bottom:330.872700px;}
.y51{bottom:332.078700px;}
.y121{bottom:335.378850px;}
.y142{bottom:336.364350px;}
.y108{bottom:337.596750px;}
.y8f{bottom:339.607950px;}
.ydd{bottom:340.559400px;}
.y29{bottom:344.927550px;}
.y15b{bottom:345.330000px;}
.y89{bottom:347.115150px;}
.y50{bottom:352.530600px;}
.y141{bottom:352.564350px;}
.y120{bottom:353.378850px;}
.ybb{bottom:355.876650px;}
.ydc{bottom:358.559400px;}
.y28{bottom:364.179450px;}
.y15a{bottom:365.130000px;}
.y88{bottom:367.567200px;}
.y140{bottom:368.764500px;}
.y11f{bottom:371.378850px;}
.yba{bottom:372.376650px;}
.y4f{bottom:372.982650px;}
.ydb{bottom:376.559400px;}
.y27{bottom:383.431500px;}
.y159{bottom:384.930000px;}
.y13f{bottom:384.964350px;}
.y87{bottom:388.019100px;}
.yb9{bottom:388.876650px;}
.y4e{bottom:393.434550px;}
.yda{bottom:394.559400px;}
.y107{bottom:397.598700px;}
.y13e{bottom:401.164350px;}
.y26{bottom:402.683400px;}
.yb8{bottom:405.376650px;}
.y11e{bottom:407.378850px;}
.y86{bottom:408.471150px;}
.yd9{bottom:412.559400px;}
.y4d{bottom:413.886600px;}
.y13d{bottom:417.364350px;}
.yb7{bottom:421.876650px;}
.y25{bottom:421.935450px;}
.y85{bottom:428.923050px;}
.yd8{bottom:430.559400px;}
.y152{bottom:432.045300px;}
.y13c{bottom:433.564350px;}
.y4c{bottom:434.338500px;}
.yb6{bottom:438.376650px;}
.y24{bottom:441.187350px;}
.y84{bottom:449.375100px;}
.y13b{bottom:449.764350px;}
.y151{bottom:451.845300px;}
.y106{bottom:452.779200px;}
.y4b{bottom:454.790550px;}
.yb5{bottom:460.205100px;}
.y23{bottom:460.439400px;}
.y13a{bottom:465.964350px;}
.yd7{bottom:466.559400px;}
.y83{bottom:469.827000px;}
.y150{bottom:471.645300px;}
.y4a{bottom:475.242450px;}
.yb4{bottom:476.705100px;}
.y22{bottom:479.691300px;}
.y139{bottom:482.164350px;}
.y82{bottom:490.279050px;}
.y49{bottom:495.694500px;}
.y138{bottom:498.364350px;}
.y21{bottom:498.943200px;}
.y105{bottom:499.859550px;}
.yb3{bottom:501.709050px;}
.y104{bottom:507.959400px;}
.y81{bottom:510.730950px;}
.y137{bottom:514.564350px;}
.y48{bottom:516.146400px;}
.y20{bottom:518.195250px;}
.yb2{bottom:518.209050px;}
.y158{bottom:518.760750px;}
.y136{bottom:530.764350px;}
.y80{bottom:531.182850px;}
.yb1{bottom:534.709050px;}
.y47{bottom:536.598450px;}
.y1f{bottom:537.447300px;}
.y157{bottom:538.560750px;}
.y135{bottom:546.964350px;}
.yb0{bottom:551.209050px;}
.y7f{bottom:551.634900px;}
.y103{bottom:553.386300px;}
.y1e{bottom:556.699200px;}
.y46{bottom:557.050350px;}
.y156{bottom:558.360600px;}
.yaf{bottom:567.709050px;}
.y7e{bottom:572.086800px;}
.y1d{bottom:575.951100px;}
.y45{bottom:577.502400px;}
.y155{bottom:578.160750px;}
.y134{bottom:581.164350px;}
.yae{bottom:584.209050px;}
.y102{bottom:590.713050px;}
.y1c{bottom:595.203150px;}
.y44{bottom:597.954300px;}
.y154{bottom:597.960600px;}
.y101{bottom:598.813050px;}
.y133{bottom:599.164350px;}
.y1b{bottom:614.455050px;}
.y132{bottom:617.164350px;}
.y153{bottom:617.760750px;}
.y43{bottom:618.406200px;}
.y7d{bottom:624.187350px;}
.y1a{bottom:633.707100px;}
.y131{bottom:635.164350px;}
.y42{bottom:638.858250px;}
.y100{bottom:641.043450px;}
.y7c{bottom:643.439250px;}
.yad{bottom:645.637350px;}
.y19{bottom:652.959000px;}
.y130{bottom:653.164350px;}
.y2{bottom:657.200850px;}
.y41{bottom:659.310150px;}
.y14f{bottom:662.461950px;}
.y7b{bottom:662.691300px;}
.yac{bottom:665.437350px;}
.y12f{bottom:671.164350px;}
.y18{bottom:672.211050px;}
.yff{bottom:677.043450px;}
.yc9{bottom:677.175000px;}
.y40{bottom:679.762200px;}
.y7a{bottom:681.943200px;}
.y14e{bottom:682.261950px;}
.yab{bottom:685.237350px;}
.y12e{bottom:689.164350px;}
.y17{bottom:691.462950px;}
.yfe{bottom:695.043450px;}
.yc8{bottom:696.975000px;}
.y3f{bottom:700.214100px;}
.y79{bottom:701.195250px;}
.y14d{bottom:702.061950px;}
.yaa{bottom:705.037350px;}
.y12d{bottom:707.164350px;}
.y16{bottom:710.714850px;}
.yfd{bottom:713.043450px;}
.yc7{bottom:716.775000px;}
.y78{bottom:720.447150px;}
.y3e{bottom:720.666150px;}
.y14c{bottom:721.861950px;}
.ya9{bottom:724.837350px;}
.y12c{bottom:725.164350px;}
.y15{bottom:729.966900px;}
.yfc{bottom:731.043450px;}
.y77{bottom:739.699200px;}
.y3d{bottom:741.118050px;}
.y4{bottom:746.266650px;}
.yfb{bottom:749.043450px;}
.y14{bottom:749.218800px;}
.y148{bottom:757.857000px;}
.y76{bottom:758.951100px;}
.y12b{bottom:761.164350px;}
.y3c{bottom:761.570100px;}
.yfa{bottom:767.043450px;}
.y13{bottom:768.470850px;}
.y3{bottom:772.562400px;}
.y75{bottom:778.203150px;}
.y3b{bottom:782.022000px;}
.y147{bottom:784.857000px;}
.yf9{bottom:785.043450px;}
.y12{bottom:787.722900px;}
.y74{bottom:797.455050px;}
.y3a{bottom:802.474050px;}
.yf8{bottom:803.043450px;}
.y11{bottom:806.974800px;}
.y73{bottom:816.707100px;}
.yf7{bottom:821.043450px;}
.y39{bottom:822.925950px;}
.y10{bottom:826.226700px;}
.y14b{bottom:833.229900px;}
.y72{bottom:835.959000px;}
.yf6{bottom:839.043450px;}
.y38{bottom:843.378000px;}
.yf{bottom:845.478750px;}
.y71{bottom:855.210900px;}
.yf5{bottom:857.043450px;}
.y14a{bottom:863.334000px;}
.y37{bottom:863.829900px;}
.yc{bottom:874.342950px;}
.y70{bottom:874.462950px;}
.yf4{bottom:875.043450px;}
.y36{bottom:884.281800px;}
.yb{bottom:892.342950px;}
.yf3{bottom:893.043450px;}
.y149{bottom:893.437800px;}
.y6f{bottom:893.714850px;}
.ya{bottom:918.846900px;}
.yd6{bottom:926.534400px;}
.y6e{bottom:933.495300px;}
.yf2{bottom:936.054300px;}
.y9{bottom:936.846900px;}
.yd5{bottom:944.534400px;}
.y6d{bottom:952.747350px;}
.ye{bottom:957.566700px;}
.yd4{bottom:962.534400px;}
.y8{bottom:963.350850px;}
.yf1{bottom:970.404300px;}
.y6c{bottom:971.999250px;}
.yd{bottom:979.166700px;}
.yd3{bottom:980.534400px;}
.y7{bottom:981.350850px;}
.ya5{bottom:984.105900px;}
.y6b{bottom:991.251300px;}
.y11d{bottom:992.119050px;}
.ya4{bottom:998.505900px;}
.yd2{bottom:998.534400px;}
.yf0{bottom:1003.966800px;}
.y11c{bottom:1010.119050px;}
.y6a{bottom:1010.503200px;}
.ya3{bottom:1015.005900px;}
.yd1{bottom:1016.534400px;}
.y11b{bottom:1028.119050px;}
.y69{bottom:1029.755100px;}
.yd0{bottom:1034.534400px;}
.yef{bottom:1037.529300px;}
.ya2{bottom:1040.009850px;}
.y11a{bottom:1046.119050px;}
.y68{bottom:1049.007150px;}
.ya8{bottom:1050.637500px;}
.ycf{bottom:1052.534400px;}
.ya1{bottom:1054.409850px;}
.y119{bottom:1064.119050px;}
.y67{bottom:1068.259050px;}
.yce{bottom:1070.534400px;}
.yee{bottom:1071.091800px;}
.y118{bottom:1082.119050px;}
.y66{bottom:1087.511100px;}
.ycd{bottom:1088.534400px;}
.ya7{bottom:1093.837500px;}
.yed{bottom:1098.393450px;}
.y117{bottom:1100.119050px;}
.yea{bottom:1106.493450px;}
.ycc{bottom:1106.534400px;}
.y65{bottom:1106.763000px;}
.ya0{bottom:1109.035500px;}
.ye9{bottom:1114.593450px;}
.y116{bottom:1118.119050px;}
.yeb{bottom:1122.693450px;}
.ycb{bottom:1124.534400px;}
.y64{bottom:1126.015050px;}
.yec{bottom:1130.793450px;}
.y115{bottom:1136.119050px;}
.ya6{bottom:1137.037500px;}
.y63{bottom:1145.267100px;}
.yca{bottom:1151.038350px;}
.ye8{bottom:1153.371900px;}
.y114{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;}
.h7{height:39.312000px;}
.ha{height:39.313477px;}
.hb{height:39.366211px;}
.h6{height:39.474000px;}
.hd{height:39.577148px;}
.hc{height:41.454000px;}
.h1d{height:41.923828px;}
.h1e{height:42.568359px;}
.h8{height:43.681641px;}
.h19{height:43.740234px;}
.h1c{height:43.974609px;}
.h15{height:46.116211px;}
.h13{height:46.825195px;}
.h1a{height:48.049805px;}
.he{height:48.114258px;}
.hf{height:48.372070px;}
.h1b{height:51.082031px;}
.h9{height:52.417969px;}
.h22{height:52.488281px;}
.h11{height:52.560000px;}
.h21{height:60.996094px;}
.h5{height:69.984375px;}
.h1f{height:71.713477px;}
.h20{height:71.766211px;}
.h18{height:100.617188px;}
.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:20.844600px;}
.x2{left:61.653600px;}
.xb{left:68.031450px;}
.x1f{left:69.528300px;}
.x26{left:72.776850px;}
.x25{left:74.031450px;}
.x1e{left:75.733350px;}
.x34{left:95.031450px;}
.x7{left:97.795200px;}
.xc{left:104.598450px;}
.xd{left:106.299150px;}
.x6{left:108.374100px;}
.x1a{left:109.479750px;}
.x1d{left:110.551200px;}
.x3a{left:117.879900px;}
.x31{left:120.774900px;}
.x3e{left:123.708900px;}
.x3d{left:124.732050px;}
.x2b{left:127.559100px;}
.x39{left:133.513800px;}
.x3b{left:135.354750px;}
.x5{left:142.368300px;}
.x32{left:149.583450px;}
.x40{left:197.802150px;}
.x27{left:208.346400px;}
.x1c{left:213.634200px;}
.x45{left:227.937750px;}
.x2c{left:230.640450px;}
.x3f{left:231.714300px;}
.x46{left:242.157600px;}
.x44{left:248.409600px;}
.x47{left:256.192350px;}
.x19{left:280.629900px;}
.x37{left:283.345950px;}
.x35{left:286.271400px;}
.x3c{left:329.282100px;}
.x41{left:345.007050px;}
.x2e{left:368.362350px;}
.x38{left:373.488900px;}
.x2d{left:375.596850px;}
.x33{left:378.392100px;}
.x42{left:389.464350px;}
.x43{left:399.251700px;}
.x9{left:455.679750px;}
.x36{left:461.720700px;}
.xa{left:511.976100px;}
.x24{left:534.786000px;}
.x22{left:566.245050px;}
.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;}
.x23{left:651.709950px;}
.x15{left:652.837950px;}
.x30{left:654.293100px;}
.x28{left:667.093350px;}
.x29{left:668.288400px;}
.x2a{left:679.668600px;}
.x2f{left:689.173500px;}
.x20{left:694.360350px;}
.x21{left:712.596150px;}
.x1{left:714.330750px;}
.x1b{left:776.033700px;}
.x18{left:855.139050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.904000pt;}
.v2{vertical-align:28.800000pt;}
.ls8{letter-spacing:-1.776000pt;}
.lsa{letter-spacing:-1.466667pt;}
.ls9{letter-spacing:-1.173333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:7.680000pt;}
.ls1{letter-spacing:9.600000pt;}
.ls3{letter-spacing:11.733333pt;}
.ls7{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;}
.wsf{word-spacing:-64.426133pt;}
.wsa{word-spacing:-32.160000pt;}
.ws11{word-spacing:-28.160000pt;}
.ws5{word-spacing:-22.944000pt;}
.ws66{word-spacing:-17.792000pt;}
.ws13{word-spacing:-14.826667pt;}
.ws12{word-spacing:-13.344000pt;}
.ws20{word-spacing:-12.800000pt;}
.ws6{word-spacing:-11.520000pt;}
.ws55{word-spacing:-7.520000pt;}
.ws59{word-spacing:-6.186667pt;}
.ws3e{word-spacing:-5.066667pt;}
.ws52{word-spacing:-4.266667pt;}
.wsd{word-spacing:-3.813333pt;}
.ws4e{word-spacing:-3.573333pt;}
.ws67{word-spacing:-3.520000pt;}
.wsc{word-spacing:-3.285333pt;}
.ws48{word-spacing:-2.880000pt;}
.ws3b{word-spacing:-2.720000pt;}
.ws24{word-spacing:-2.666667pt;}
.ws64{word-spacing:-2.640000pt;}
.ws3d{word-spacing:-2.453333pt;}
.ws5b{word-spacing:-2.400000pt;}
.ws3c{word-spacing:-2.346667pt;}
.ws14{word-spacing:-2.170667pt;}
.ws2b{word-spacing:-2.133333pt;}
.ws1{word-spacing:-1.973333pt;}
.ws1a{word-spacing:-1.824000pt;}
.ws2{word-spacing:-1.776000pt;}
.ws47{word-spacing:-1.706667pt;}
.ws56{word-spacing:-1.493333pt;}
.ws49{word-spacing:-1.386667pt;}
.ws5a{word-spacing:-1.280000pt;}
.ws19{word-spacing:-1.200000pt;}
.ws4c{word-spacing:-1.120000pt;}
.ws5e{word-spacing:-0.906667pt;}
.ws3{word-spacing:-0.864000pt;}
.ws2e{word-spacing:-0.480000pt;}
.ws3a{word-spacing:-0.426667pt;}
.ws46{word-spacing:-0.213333pt;}
.ws39{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws45{word-spacing:0.693333pt;}
.ws16{word-spacing:0.864000pt;}
.ws28{word-spacing:1.120000pt;}
.ws68{word-spacing:1.466667pt;}
.ws62{word-spacing:1.728000pt;}
.ws65{word-spacing:2.016000pt;}
.ws1c{word-spacing:2.112000pt;}
.ws5f{word-spacing:2.736000pt;}
.ws31{word-spacing:2.880000pt;}
.ws1e{word-spacing:2.976000pt;}
.ws3f{word-spacing:2.986667pt;}
.ws63{word-spacing:3.312000pt;}
.ws60{word-spacing:3.456000pt;}
.ws2c{word-spacing:3.466667pt;}
.ws27{word-spacing:3.626667pt;}
.ws26{word-spacing:3.680000pt;}
.ws2f{word-spacing:4.000000pt;}
.ws5d{word-spacing:4.746667pt;}
.ws29{word-spacing:5.280000pt;}
.ws43{word-spacing:5.386667pt;}
.ws17{word-spacing:5.568000pt;}
.ws44{word-spacing:6.080000pt;}
.ws1b{word-spacing:6.288000pt;}
.ws15{word-spacing:6.672000pt;}
.ws42{word-spacing:7.253333pt;}
.ws57{word-spacing:7.306667pt;}
.ws23{word-spacing:7.466667pt;}
.ws4d{word-spacing:7.626667pt;}
.ws2a{word-spacing:7.733333pt;}
.ws1d{word-spacing:7.968000pt;}
.ws22{word-spacing:8.106667pt;}
.ws51{word-spacing:8.800000pt;}
.ws61{word-spacing:9.744000pt;}
.ws54{word-spacing:10.026667pt;}
.ws4a{word-spacing:10.133333pt;}
.ws4b{word-spacing:10.400000pt;}
.ws50{word-spacing:11.573333pt;}
.ws4f{word-spacing:11.946667pt;}
.ws5c{word-spacing:12.000000pt;}
.ws58{word-spacing:13.440000pt;}
.ws53{word-spacing:13.653333pt;}
.ws18{word-spacing:14.064000pt;}
.ws21{word-spacing:14.933333pt;}
.ws30{word-spacing:15.040000pt;}
.ws2d{word-spacing:15.200000pt;}
.ws25{word-spacing:15.680000pt;}
.ws1f{word-spacing:16.128000pt;}
.ws7{word-spacing:18.288000pt;}
.ws40{word-spacing:18.453333pt;}
.ws41{word-spacing:27.040000pt;}
.ws8{word-spacing:72.015467pt;}
.ws10{word-spacing:82.270933pt;}
.ws4{word-spacing:90.567467pt;}
.wse{word-spacing:95.327467pt;}
.ws32{word-spacing:235.352000pt;}
.ws37{word-spacing:310.735467pt;}
.ws38{word-spacing:363.424533pt;}
.ws33{word-spacing:379.837867pt;}
.ws35{word-spacing:396.569600pt;}
.ws36{word-spacing:397.236267pt;}
.ws34{word-spacing:410.577067pt;}
._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;}
._66{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;}
._67{margin-left:-597.531733pt;}
._62{margin-left:-576.128000pt;}
._3f{margin-left:-541.632000pt;}
._7{margin-left:-508.320000pt;}
._65{margin-left:-504.854400pt;}
._43{margin-left:-500.657600pt;}
._63{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;}
._64{margin-left:-320.000000pt;}
._27{margin-left:-234.720000pt;}
._4d{margin-left:-13.081600pt;}
._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;}
._4e{width:5.404267pt;}
._4f{width:6.394133pt;}
._48{width:7.584000pt;}
._47{width:9.326400pt;}
._5f{width:10.452800pt;}
._51{width:12.154133pt;}
._60{width:13.157333pt;}
._46{width:18.305067pt;}
._50{width:20.884800pt;}
._61{width:42.624000pt;}
._52{width:99.961067pt;}
._5b{width:376.768533pt;}
._55{width:409.913600pt;}
._57{width:413.152533pt;}
._58{width:420.258133pt;}
._56{width:422.038933pt;}
._54{width:423.921067pt;}
._53{width:433.605333pt;}
._59{width:566.502933pt;}
._5c{width:873.982400pt;}
._5a{width:876.670400pt;}
._5e{width:890.062400pt;}
._5d{width:930.934400pt;}
.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;}
.fsc{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;}
.y5b{bottom:113.385733pt;}
.y9a{bottom:113.385867pt;}
.ye7{bottom:115.960400pt;}
.y113{bottom:116.527067pt;}
.y34{bottom:118.360800pt;}
.y5f{bottom:120.280667pt;}
.y99{bottom:126.755600pt;}
.y12a{bottom:127.355467pt;}
.y5a{bottom:131.565333pt;}
.ye6{bottom:131.960400pt;}
.y112{bottom:132.527067pt;}
.y5e{bottom:134.680667pt;}
.yc6{bottom:135.147067pt;}
.y33{bottom:135.473600pt;}
.y98{bottom:142.755600pt;}
.y129{bottom:143.355467pt;}
.ye5{bottom:147.960400pt;}
.y111{bottom:148.527067pt;}
.y5d{bottom:149.080667pt;}
.y59{bottom:149.744933pt;}
.yc5{bottom:149.813733pt;}
.y32{bottom:152.586533pt;}
.y97{bottom:158.755600pt;}
.y128{bottom:159.355467pt;}
.y5c{bottom:163.480667pt;}
.ye4{bottom:163.960400pt;}
.y110{bottom:164.527067pt;}
.y58{bottom:167.924400pt;}
.y31{bottom:169.699333pt;}
.yc4{bottom:172.039467pt;}
.y96{bottom:174.755600pt;}
.y127{bottom:175.355467pt;}
.ye3{bottom:179.960400pt;}
.y10f{bottom:180.527067pt;}
.y57{bottom:186.103867pt;}
.yc3{bottom:186.706133pt;}
.y30{bottom:186.812267pt;}
.y95{bottom:190.755600pt;}
.y126{bottom:191.355467pt;}
.ye2{bottom:195.960400pt;}
.y10e{bottom:196.527067pt;}
.yc2{bottom:201.372800pt;}
.y2f{bottom:203.925067pt;}
.y56{bottom:204.283467pt;}
.y94{bottom:206.755600pt;}
.ye1{bottom:211.960400pt;}
.y10d{bottom:212.527067pt;}
.y125{bottom:214.914533pt;}
.yc1{bottom:216.039467pt;}
.y8e{bottom:217.649200pt;}
.y2e{bottom:221.037867pt;}
.y55{bottom:222.462933pt;}
.y93{bottom:222.755600pt;}
.y146{bottom:225.649733pt;}
.ye0{bottom:227.960400pt;}
.y10c{bottom:228.527067pt;}
.yc0{bottom:230.706133pt;}
.y8d{bottom:235.828800pt;}
.y2d{bottom:238.150800pt;}
.y92{bottom:238.755600pt;}
.y54{bottom:240.642533pt;}
.y145{bottom:241.649733pt;}
.y10b{bottom:244.527067pt;}
.ybf{bottom:245.372800pt;}
.y124{bottom:250.114533pt;}
.ydf{bottom:251.519467pt;}
.y8c{bottom:254.008267pt;}
.y2c{bottom:255.263733pt;}
.y53{bottom:258.822000pt;}
.ybe{bottom:260.039467pt;}
.y10a{bottom:260.527067pt;}
.y91{bottom:262.314667pt;}
.y123{bottom:266.114533pt;}
.y144{bottom:270.190533pt;}
.y15d{bottom:271.760000pt;}
.y8b{bottom:272.187733pt;}
.y2b{bottom:272.376533pt;}
.y109{bottom:276.527067pt;}
.y52{bottom:277.001600pt;}
.y90{bottom:278.314667pt;}
.ybd{bottom:279.442400pt;}
.y122{bottom:282.114533pt;}
.y143{bottom:284.590533pt;}
.yde{bottom:286.719467pt;}
.y15c{bottom:289.360000pt;}
.y2a{bottom:289.489333pt;}
.y8a{bottom:290.367333pt;}
.ybc{bottom:294.109067pt;}
.y51{bottom:295.181067pt;}
.y121{bottom:298.114533pt;}
.y142{bottom:298.990533pt;}
.y108{bottom:300.086000pt;}
.y8f{bottom:301.873733pt;}
.ydd{bottom:302.719467pt;}
.y29{bottom:306.602267pt;}
.y15b{bottom:306.960000pt;}
.y89{bottom:308.546800pt;}
.y50{bottom:313.360533pt;}
.y141{bottom:313.390533pt;}
.y120{bottom:314.114533pt;}
.ybb{bottom:316.334800pt;}
.ydc{bottom:318.719467pt;}
.y28{bottom:323.715067pt;}
.y15a{bottom:324.560000pt;}
.y88{bottom:326.726400pt;}
.y140{bottom:327.790667pt;}
.y11f{bottom:330.114533pt;}
.yba{bottom:331.001467pt;}
.y4f{bottom:331.540133pt;}
.ydb{bottom:334.719467pt;}
.y27{bottom:340.828000pt;}
.y159{bottom:342.160000pt;}
.y13f{bottom:342.190533pt;}
.y87{bottom:344.905867pt;}
.yb9{bottom:345.668133pt;}
.y4e{bottom:349.719600pt;}
.yda{bottom:350.719467pt;}
.y107{bottom:353.421067pt;}
.y13e{bottom:356.590533pt;}
.y26{bottom:357.940800pt;}
.yb8{bottom:360.334800pt;}
.y11e{bottom:362.114533pt;}
.y86{bottom:363.085467pt;}
.yd9{bottom:366.719467pt;}
.y4d{bottom:367.899200pt;}
.y13d{bottom:370.990533pt;}
.yb7{bottom:375.001467pt;}
.y25{bottom:375.053733pt;}
.y85{bottom:381.264933pt;}
.yd8{bottom:382.719467pt;}
.y152{bottom:384.040267pt;}
.y13c{bottom:385.390533pt;}
.y4c{bottom:386.078667pt;}
.yb6{bottom:389.668133pt;}
.y24{bottom:392.166533pt;}
.y84{bottom:399.444533pt;}
.y13b{bottom:399.790533pt;}
.y151{bottom:401.640267pt;}
.y106{bottom:402.470400pt;}
.y4b{bottom:404.258267pt;}
.yb5{bottom:409.071200pt;}
.y23{bottom:409.279467pt;}
.y13a{bottom:414.190533pt;}
.yd7{bottom:414.719467pt;}
.y83{bottom:417.624000pt;}
.y150{bottom:419.240267pt;}
.y4a{bottom:422.437733pt;}
.yb4{bottom:423.737867pt;}
.y22{bottom:426.392267pt;}
.y139{bottom:428.590533pt;}
.y82{bottom:435.803600pt;}
.y49{bottom:440.617333pt;}
.y138{bottom:442.990533pt;}
.y21{bottom:443.505067pt;}
.y105{bottom:444.319600pt;}
.yb3{bottom:445.963600pt;}
.y104{bottom:451.519467pt;}
.y81{bottom:453.983067pt;}
.y137{bottom:457.390533pt;}
.y48{bottom:458.796800pt;}
.y20{bottom:460.618000pt;}
.yb2{bottom:460.630267pt;}
.y158{bottom:461.120667pt;}
.y136{bottom:471.790533pt;}
.y80{bottom:472.162533pt;}
.yb1{bottom:475.296933pt;}
.y47{bottom:476.976400pt;}
.y1f{bottom:477.730933pt;}
.y157{bottom:478.720667pt;}
.y135{bottom:486.190533pt;}
.yb0{bottom:489.963600pt;}
.y7f{bottom:490.342133pt;}
.y103{bottom:491.898933pt;}
.y1e{bottom:494.843733pt;}
.y46{bottom:495.155867pt;}
.y156{bottom:496.320533pt;}
.yaf{bottom:504.630267pt;}
.y7e{bottom:508.521600pt;}
.y1d{bottom:511.956533pt;}
.y45{bottom:513.335467pt;}
.y155{bottom:513.920667pt;}
.y134{bottom:516.590533pt;}
.yae{bottom:519.296933pt;}
.y102{bottom:525.078267pt;}
.y1c{bottom:529.069467pt;}
.y44{bottom:531.514933pt;}
.y154{bottom:531.520533pt;}
.y101{bottom:532.278267pt;}
.y133{bottom:532.590533pt;}
.y1b{bottom:546.182267pt;}
.y132{bottom:548.590533pt;}
.y153{bottom:549.120667pt;}
.y43{bottom:549.694400pt;}
.y7d{bottom:554.833200pt;}
.y1a{bottom:563.295200pt;}
.y131{bottom:564.590533pt;}
.y42{bottom:567.874000pt;}
.y100{bottom:569.816400pt;}
.y7c{bottom:571.946000pt;}
.yad{bottom:573.899867pt;}
.y19{bottom:580.408000pt;}
.y130{bottom:580.590533pt;}
.y2{bottom:584.178533pt;}
.y41{bottom:586.053467pt;}
.y14f{bottom:588.855067pt;}
.y7b{bottom:589.058933pt;}
.yac{bottom:591.499867pt;}
.y12f{bottom:596.590533pt;}
.y18{bottom:597.520933pt;}
.yff{bottom:601.816400pt;}
.yc9{bottom:601.933333pt;}
.y40{bottom:604.233067pt;}
.y7a{bottom:606.171733pt;}
.y14e{bottom:606.455067pt;}
.yab{bottom:609.099867pt;}
.y12e{bottom:612.590533pt;}
.y17{bottom:614.633733pt;}
.yfe{bottom:617.816400pt;}
.yc8{bottom:619.533333pt;}
.y3f{bottom:622.412533pt;}
.y79{bottom:623.284667pt;}
.y14d{bottom:624.055067pt;}
.yaa{bottom:626.699867pt;}
.y12d{bottom:628.590533pt;}
.y16{bottom:631.746533pt;}
.yfd{bottom:633.816400pt;}
.yc7{bottom:637.133333pt;}
.y78{bottom:640.397467pt;}
.y3e{bottom:640.592133pt;}
.y14c{bottom:641.655067pt;}
.ya9{bottom:644.299867pt;}
.y12c{bottom:644.590533pt;}
.y15{bottom:648.859467pt;}
.yfc{bottom:649.816400pt;}
.y77{bottom:657.510400pt;}
.y3d{bottom:658.771600pt;}
.y4{bottom:663.348133pt;}
.yfb{bottom:665.816400pt;}
.y14{bottom:665.972267pt;}
.y148{bottom:673.650667pt;}
.y76{bottom:674.623200pt;}
.y12b{bottom:676.590533pt;}
.y3c{bottom:676.951200pt;}
.yfa{bottom:681.816400pt;}
.y13{bottom:683.085200pt;}
.y3{bottom:686.722133pt;}
.y75{bottom:691.736133pt;}
.y3b{bottom:695.130667pt;}
.y147{bottom:697.650667pt;}
.yf9{bottom:697.816400pt;}
.y12{bottom:700.198133pt;}
.y74{bottom:708.848933pt;}
.y3a{bottom:713.310267pt;}
.yf8{bottom:713.816400pt;}
.y11{bottom:717.310933pt;}
.y73{bottom:725.961867pt;}
.yf7{bottom:729.816400pt;}
.y39{bottom:731.489733pt;}
.y10{bottom:734.423733pt;}
.y14b{bottom:740.648800pt;}
.y72{bottom:743.074667pt;}
.yf6{bottom:745.816400pt;}
.y38{bottom:749.669333pt;}
.yf{bottom:751.536667pt;}
.y71{bottom:760.187467pt;}
.yf5{bottom:761.816400pt;}
.y14a{bottom:767.408000pt;}
.y37{bottom:767.848800pt;}
.yc{bottom:777.193733pt;}
.y70{bottom:777.300400pt;}
.yf4{bottom:777.816400pt;}
.y36{bottom:786.028267pt;}
.yb{bottom:793.193733pt;}
.yf3{bottom:793.816400pt;}
.y149{bottom:794.166933pt;}
.y6f{bottom:794.413200pt;}
.ya{bottom:816.752800pt;}
.yd6{bottom:823.586133pt;}
.y6e{bottom:829.773600pt;}
.yf2{bottom:832.048267pt;}
.y9{bottom:832.752800pt;}
.yd5{bottom:839.586133pt;}
.y6d{bottom:846.886533pt;}
.ye{bottom:851.170400pt;}
.yd4{bottom:855.586133pt;}
.y8{bottom:856.311867pt;}
.yf1{bottom:862.581600pt;}
.y6c{bottom:863.999333pt;}
.yd{bottom:870.370400pt;}
.yd3{bottom:871.586133pt;}
.y7{bottom:872.311867pt;}
.ya5{bottom:874.760800pt;}
.y6b{bottom:881.112267pt;}
.y11d{bottom:881.883600pt;}
.ya4{bottom:887.560800pt;}
.yd2{bottom:887.586133pt;}
.yf0{bottom:892.414933pt;}
.y11c{bottom:897.883600pt;}
.y6a{bottom:898.225067pt;}
.ya3{bottom:902.227467pt;}
.yd1{bottom:903.586133pt;}
.y11b{bottom:913.883600pt;}
.y69{bottom:915.337867pt;}
.yd0{bottom:919.586133pt;}
.yef{bottom:922.248267pt;}
.ya2{bottom:924.453200pt;}
.y11a{bottom:929.883600pt;}
.y68{bottom:932.450800pt;}
.ya8{bottom:933.900000pt;}
.ycf{bottom:935.586133pt;}
.ya1{bottom:937.253200pt;}
.y119{bottom:945.883600pt;}
.y67{bottom:949.563600pt;}
.yce{bottom:951.586133pt;}
.yee{bottom:952.081600pt;}
.y118{bottom:961.883600pt;}
.y66{bottom:966.676533pt;}
.ycd{bottom:967.586133pt;}
.ya7{bottom:972.300000pt;}
.yed{bottom:976.349733pt;}
.y117{bottom:977.883600pt;}
.yea{bottom:983.549733pt;}
.ycc{bottom:983.586133pt;}
.y65{bottom:983.789333pt;}
.ya0{bottom:985.809333pt;}
.ye9{bottom:990.749733pt;}
.y116{bottom:993.883600pt;}
.yeb{bottom:997.949733pt;}
.ycb{bottom:999.586133pt;}
.y64{bottom:1000.902267pt;}
.yec{bottom:1005.149733pt;}
.y115{bottom:1009.883600pt;}
.ya6{bottom:1010.700000pt;}
.y63{bottom:1018.015200pt;}
.yca{bottom:1023.145200pt;}
.ye8{bottom:1025.219467pt;}
.y114{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;}
.h7{height:34.944000pt;}
.ha{height:34.945312pt;}
.hb{height:34.992188pt;}
.h6{height:35.088000pt;}
.hd{height:35.179688pt;}
.hc{height:36.848000pt;}
.h1d{height:37.265625pt;}
.h1e{height:37.838542pt;}
.h8{height:38.828125pt;}
.h19{height:38.880208pt;}
.h1c{height:39.088542pt;}
.h15{height:40.992188pt;}
.h13{height:41.622396pt;}
.h1a{height:42.710938pt;}
.he{height:42.768229pt;}
.hf{height:42.997396pt;}
.h1b{height:45.406250pt;}
.h9{height:46.593750pt;}
.h22{height:46.656250pt;}
.h11{height:46.720000pt;}
.h21{height:54.218750pt;}
.h5{height:62.208333pt;}
.h1f{height:63.745312pt;}
.h20{height:63.792187pt;}
.h18{height:89.437500pt;}
.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:18.528533pt;}
.x2{left:54.803200pt;}
.xb{left:60.472400pt;}
.x1f{left:61.802933pt;}
.x26{left:64.690533pt;}
.x25{left:65.805733pt;}
.x1e{left:67.318533pt;}
.x34{left:84.472400pt;}
.x7{left:86.929067pt;}
.xc{left:92.976400pt;}
.xd{left:94.488133pt;}
.x6{left:96.332533pt;}
.x1a{left:97.315333pt;}
.x1d{left:98.267733pt;}
.x3a{left:104.782133pt;}
.x31{left:107.355467pt;}
.x3e{left:109.963467pt;}
.x3d{left:110.872933pt;}
.x2b{left:113.385867pt;}
.x39{left:118.678933pt;}
.x3b{left:120.315333pt;}
.x5{left:126.549600pt;}
.x32{left:132.963067pt;}
.x40{left:175.824133pt;}
.x27{left:185.196800pt;}
.x1c{left:189.897067pt;}
.x45{left:202.611333pt;}
.x2c{left:205.013733pt;}
.x3f{left:205.968267pt;}
.x46{left:215.251200pt;}
.x44{left:220.808533pt;}
.x47{left:227.726533pt;}
.x19{left:249.448800pt;}
.x37{left:251.863067pt;}
.x35{left:254.463467pt;}
.x3c{left:292.695200pt;}
.x41{left:306.672933pt;}
.x2e{left:327.433200pt;}
.x38{left:331.990133pt;}
.x2d{left:333.863867pt;}
.x33{left:336.348533pt;}
.x42{left:346.190533pt;}
.x43{left:354.890400pt;}
.x9{left:405.048667pt;}
.x36{left:410.418400pt;}
.xa{left:455.089867pt;}
.x24{left:475.365333pt;}
.x22{left:503.328933pt;}
.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;}
.x23{left:579.297733pt;}
.x15{left:580.300400pt;}
.x30{left:581.593867pt;}
.x28{left:592.971867pt;}
.x29{left:594.034133pt;}
.x2a{left:604.149867pt;}
.x2f{left:612.598667pt;}
.x20{left:617.209200pt;}
.x21{left:633.418800pt;}
.x1{left:634.960667pt;}
.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; }
  