
    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_271a616e71bd1b223d270965.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_9310beb016c5f66156b4ffba.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_e2211b2ddbd6376f3aa63c1e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717000;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_7a152a12fcc02c4b7306d4ea.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_137a9fa04a6145f1780536d5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_bb2433c9a66eae6da7ee2aca.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_f10d1b41ad096835007779c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.894000;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_7084bb97db71cedbdeb20a63.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.665000;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_3d72e16409deb71fa337a6b7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.909000;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_a7427ea157ddd1e5717f725d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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_89b56300d12c74fa631da79c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.901000;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_caba26d6d1f9c010f68fe30c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_2008ba98498014ea70fb740f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.805000;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_fec3f54060e92d36c570260f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_a4209945e678fd7eadf81ee5.woff2')format("woff");}.fff{font-family:fff;line-height:0.475000;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_0a7c6fd65be60881d516a9c3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.899000;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_c7500531d99946296940cfcf.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.909000;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_4e41260686d15588d565f8c3.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_9591574c28d4a21d6724a541.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.679000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_364c8ce91e5f41c8fb30e4db.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.642000;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_67b3505751f6b2d2c1ff02a3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.431000;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_07eb5c47befa9ea9ff9210fb.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000000;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,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);}
.m5{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vb{vertical-align:-38.856000px;}
.v2{vertical-align:-12.912000px;}
.v4{vertical-align:-8.964000px;}
.v6{vertical-align:-6.012000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.456000px;}
.va{vertical-align:17.268000px;}
.v5{vertical-align:18.672000px;}
.v3{vertical-align:24.684000px;}
.v9{vertical-align:31.470000px;}
.v7{vertical-align:40.434000px;}
.v8{vertical-align:62.130000px;}
.ls3{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.002174px;}
.ls29{letter-spacing:0.002780px;}
.ls21{letter-spacing:0.002793px;}
.ls11{letter-spacing:0.003050px;}
.ls17{letter-spacing:0.005781px;}
.ls27{letter-spacing:0.013957px;}
.lsf{letter-spacing:0.014136px;}
.ls2b{letter-spacing:0.016911px;}
.ls2d{letter-spacing:0.018706px;}
.ls5{letter-spacing:0.537980px;}
.ls10{letter-spacing:1.673717px;}
.ls2c{letter-spacing:2.986362px;}
.ls20{letter-spacing:2.988615px;}
.lsb{letter-spacing:2.988710px;}
.ls2f{letter-spacing:2.989409px;}
.ls7{letter-spacing:2.991235px;}
.ls1f{letter-spacing:3.323134px;}
.ls6{letter-spacing:4.291665px;}
.ls31{letter-spacing:4.961375px;}
.ls2a{letter-spacing:6.395989px;}
.ls8{letter-spacing:6.515540px;}
.lsa{letter-spacing:9.422891px;}
.ls15{letter-spacing:9.428891px;}
.ls4{letter-spacing:9.982525px;}
.ls14{letter-spacing:11.167322px;}
.ls30{letter-spacing:11.476915px;}
.ls9{letter-spacing:13.270183px;}
.lsd{letter-spacing:13.329959px;}
.lse{letter-spacing:16.272710px;}
.ls13{letter-spacing:16.617617px;}
.ls12{letter-spacing:19.594362px;}
.ls23{letter-spacing:19.606397px;}
.lsc{letter-spacing:20.764454px;}
.ls1c{letter-spacing:21.339889px;}
.ls1e{letter-spacing:23.778538px;}
.ls1d{letter-spacing:26.719693px;}
.ls26{letter-spacing:32.219048px;}
.ls2{letter-spacing:33.839194px;}
.ls24{letter-spacing:35.865360px;}
.ls1{letter-spacing:35.883533px;}
.ls1a{letter-spacing:77.768056px;}
.ls25{letter-spacing:194.689129px;}
.ls2e{letter-spacing:278.911409px;}
.ls0{letter-spacing:345.347589px;}
.ls19{letter-spacing:609.026891px;}
.ls18{letter-spacing:748.222454px;}
.ls28{letter-spacing:830.103757px;}
.ls16{letter-spacing:956.947580px;}
.ls22{letter-spacing:977.450611px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws23{word-spacing:-59.775600px;}
.ws1f{word-spacing:-46.505417px;}
.ws22{word-spacing:-38.937826px;}
.ws27{word-spacing:-29.887800px;}
.ws21{word-spacing:-29.015076px;}
.ws1d{word-spacing:-28.955301px;}
.ws25{word-spacing:-16.605662px;}
.ws50{word-spacing:-15.780758px;}
.ws56{word-spacing:-14.465695px;}
.ws5d{word-spacing:-14.226593px;}
.ws3e{word-spacing:-14.107042px;}
.ws5b{word-spacing:-13.808164px;}
.ws44{word-spacing:-13.531962px;}
.ws39{word-spacing:-13.329959px;}
.ws5c{word-spacing:-12.971305px;}
.ws3d{word-spacing:-12.917507px;}
.ws20{word-spacing:-12.397459px;}
.ws55{word-spacing:-12.313774px;}
.ws5f{word-spacing:-12.253998px;}
.ws51{word-spacing:-12.014896px;}
.ws5e{word-spacing:-11.841546px;}
.ws1a{word-spacing:-11.835569px;}
.ws2e{word-spacing:-11.775793px;}
.ws3f{word-spacing:-11.656242px;}
.ws1c{word-spacing:-11.476915px;}
.ws24{word-spacing:-11.417140px;}
.ws33{word-spacing:-11.357364px;}
.wsc{word-spacing:-11.118262px;}
.ws4c{word-spacing:-11.058486px;}
.ws61{word-spacing:-10.646034px;}
.ws6{word-spacing:-10.635944px;}
.ws8{word-spacing:-10.582145px;}
.ws53{word-spacing:-10.520506px;}
.ws3b{word-spacing:-10.460730px;}
.ws4e{word-spacing:-10.400954px;}
.ws35{word-spacing:-10.341179px;}
.ws32{word-spacing:-10.281403px;}
.ws10{word-spacing:-10.221628px;}
.ws38{word-spacing:-10.161852px;}
.wsf{word-spacing:-10.102076px;}
.ws1b{word-spacing:-10.042301px;}
.ws4{word-spacing:-9.982525px;}
.ws13{word-spacing:-9.922750px;}
.wse{word-spacing:-9.862974px;}
.ws37{word-spacing:-9.803198px;}
.ws18{word-spacing:-9.743423px;}
.ws19{word-spacing:-9.683647px;}
.ws28{word-spacing:-9.623872px;}
.wsd{word-spacing:-9.564096px;}
.ws2b{word-spacing:-9.504320px;}
.ws60{word-spacing:-9.390747px;}
.ws16{word-spacing:-9.384769px;}
.ws5{word-spacing:-9.247945px;}
.ws7{word-spacing:-9.194147px;}
.ws3c{word-spacing:-9.151644px;}
.ws36{word-spacing:-8.966340px;}
.ws49{word-spacing:-8.906564px;}
.ws2f{word-spacing:-8.547911px;}
.ws4d{word-spacing:-8.368584px;}
.ws2d{word-spacing:-8.308808px;}
.ws59{word-spacing:-8.249033px;}
.ws11{word-spacing:-8.069706px;}
.ws4f{word-spacing:-8.009930px;}
.ws57{word-spacing:-7.591501px;}
.ws17{word-spacing:-7.471950px;}
.ws3a{word-spacing:-7.053521px;}
.ws2c{word-spacing:-6.754643px;}
.ws40{word-spacing:-6.694867px;}
.ws2a{word-spacing:-6.635092px;}
.ws29{word-spacing:-6.455765px;}
.ws30{word-spacing:-5.917784px;}
.ws31{word-spacing:-5.858009px;}
.ws54{word-spacing:-5.379804px;}
.ws58{word-spacing:-5.080926px;}
.wsb{word-spacing:-5.027128px;}
.ws4a{word-spacing:-4.961375px;}
.ws4b{word-spacing:-3.706087px;}
.ws52{word-spacing:-3.287658px;}
.ws12{word-spacing:-2.988780px;}
.ws5a{word-spacing:-2.211697px;}
.ws2{word-spacing:-0.086077px;}
.ws1e{word-spacing:-0.047820px;}
.ws26{word-spacing:-0.041843px;}
.ws9{word-spacing:0.000000px;}
.ws42{word-spacing:2.739202px;}
.ws43{word-spacing:2.882677px;}
.wsa{word-spacing:3.076366px;}
.ws48{word-spacing:3.299613px;}
.ws41{word-spacing:6.055634px;}
.ws34{word-spacing:8.785399px;}
.ws45{word-spacing:9.381202px;}
.ws47{word-spacing:9.448561px;}
.ws46{word-spacing:9.524677px;}
.ws1{word-spacing:23.384371px;}
.ws3{word-spacing:26.827469px;}
.ws0{word-spacing:32.192873px;}
.ws15{word-spacing:34.370970px;}
.ws14{word-spacing:2320.937786px;}
._0{margin-left:-8.091257px;}
._3{margin-left:-5.881958px;}
._6{margin-left:-4.626662px;}
._1{margin-left:-2.668393px;}
._7{margin-left:-1.560154px;}
._5{width:1.560154px;}
._2{width:2.668393px;}
._2e{width:4.250555px;}
._42{width:15.529680px;}
._39{width:16.839992px;}
._2c{width:19.106683px;}
._4{width:20.959727px;}
._4c{width:22.444673px;}
._2a{width:23.554027px;}
._9{width:26.301264px;}
._8{width:27.396415px;}
._4b{width:28.716238px;}
._34{width:30.186678px;}
._40{width:31.824560px;}
._41{width:34.044595px;}
._2b{width:35.243654px;}
._2f{width:37.039363px;}
._33{width:38.892407px;}
._43{width:40.386797px;}
._4a{width:42.028235px;}
._3a{width:46.818610px;}
._2d{width:69.094606px;}
._47{width:74.659724px;}
._32{width:107.052112px;}
._37{width:125.827638px;}
._3e{width:154.932367px;}
._3c{width:156.779423px;}
._44{width:198.335441px;}
._3b{width:211.121431px;}
._36{width:214.229762px;}
._3f{width:219.131362px;}
._35{width:240.614743px;}
._30{width:243.167141px;}
._38{width:263.903286px;}
._45{width:271.321448px;}
._31{width:298.758449px;}
._46{width:319.560358px;}
._49{width:387.204828px;}
._48{width:391.530180px;}
._3d{width:415.733310px;}
._28{width:1052.062536px;}
._c{width:1055.762635px;}
._e{width:1349.896854px;}
._10{width:1376.076124px;}
._1d{width:1380.218604px;}
._11{width:1413.663094px;}
._12{width:1447.430320px;}
._17{width:1500.780001px;}
._24{width:1531.504660px;}
._29{width:1575.140848px;}
._1a{width:1579.827296px;}
._14{width:1583.694746px;}
._1e{width:1641.802618px;}
._1f{width:1647.086812px;}
._b{width:1683.860688px;}
._15{width:1708.536128px;}
._d{width:1733.552176px;}
._19{width:1755.920226px;}
._20{width:1815.384972px;}
._21{width:1853.222927px;}
._18{width:1873.713982px;}
._26{width:1900.027222px;}
._13{width:1940.106803px;}
._22{width:1999.518809px;}
._25{width:2006.683738px;}
._1b{width:2021.287521px;}
._f{width:2029.405740px;}
._1c{width:2244.817737px;}
._23{width:2306.926386px;}
._27{width:2323.302887px;}
._a{width:2328.747006px;}
._16{width:2336.812386px;}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.887800px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y2f{bottom:160.314000px;}
.y4e{bottom:187.213500px;}
.y2e{bottom:187.309500px;}
.yb0{bottom:197.857500px;}
.y64{bottom:214.113000px;}
.y4d{bottom:214.584000px;}
.ydd{bottom:225.936000px;}
.y2d{bottom:229.347000px;}
.ye{bottom:235.563000px;}
.yc7{bottom:235.849500px;}
.yaf{bottom:235.960500px;}
.y10c{bottom:236.289000px;}
.y63{bottom:241.011000px;}
.y4c{bottom:241.483500px;}
.y7f{bottom:247.810500px;}
.y83{bottom:252.831000px;}
.y2c{bottom:256.342500px;}
.y7e{bottom:258.061500px;}
.y82{bottom:261.796500px;}
.y98{bottom:263.817000px;}
.ydc{bottom:265.611000px;}
.yf4{bottom:267.910500px;}
.y4b{bottom:268.381500px;}
.y81{bottom:270.763500px;}
.yae{bottom:274.063500px;}
.yd{bottom:275.164500px;}
.y80{bottom:279.730500px;}
.y2b{bottom:283.338000px;}
.y62{bottom:289.471500px;}
.y7d{bottom:290.800500px;}
.yf3{bottom:294.810000px;}
.y4a{bottom:295.281000px;}
.yc6{bottom:299.295000px;}
.y10b{bottom:302.064000px;}
.ydb{bottom:305.286000px;}
.y2a{bottom:310.333500px;}
.yad{bottom:311.607000px;}
.yc{bottom:314.766000px;}
.y7c{bottom:317.700000px;}
.yf2{bottom:321.709500px;}
.y49{bottom:322.651500px;}
.yc5{bottom:326.194500px;}
.y10a{bottom:328.962000px;}
.y29{bottom:337.330500px;}
.y61{bottom:337.930500px;}
.yda{bottom:344.961000px;}
.yf1{bottom:348.607500px;}
.y48{bottom:349.551000px;}
.yc4{bottom:353.094000px;}
.yb{bottom:354.367500px;}
.yac{bottom:354.568500px;}
.y109{bottom:355.861500px;}
.y97{bottom:361.476000px;}
.y28{bottom:364.326000px;}
.y7b{bottom:367.806000px;}
.yf0{bottom:375.507000px;}
.y47{bottom:376.450500px;}
.yc3{bottom:379.992000px;}
.y108{bottom:382.761000px;}
.yd9{bottom:383.683500px;}
.y27{bottom:391.321500px;}
.ya{bottom:393.969000px;}
.y96{bottom:396.876000px;}
.yab{bottom:397.530000px;}
.y60{bottom:400.443000px;}
.y46{bottom:403.350000px;}
.y107{bottom:409.660500px;}
.yd8{bottom:410.583000px;}
.y26{bottom:418.317000px;}
.yef{bottom:423.666000px;}
.y95{bottom:423.775500px;}
.y5f{bottom:427.342500px;}
.yc2{bottom:428.628000px;}
.y7a{bottom:439.051500px;}
.yaa{bottom:446.248500px;}
.y94{bottom:450.675000px;}
.y45{bottom:451.980000px;}
.y5e{bottom:454.240500px;}
.y106{bottom:458.734500px;}
.yd7{bottom:459.694500px;}
.y25{bottom:460.354500px;}
.y79{bottom:465.951000px;}
.yee{bottom:471.825000px;}
.y93{bottom:477.573000px;}
.y5d{bottom:481.140000px;}
.y24{bottom:487.350000px;}
.y9{bottom:491.260500px;}
.y78{bottom:492.849000px;}
.y92{bottom:504.472500px;}
.ya9{bottom:510.130500px;}
.y23{bottom:514.345500px;}
.y44{bottom:515.397000px;}
.yc1{bottom:517.416000px;}
.y77{bottom:521.695500px;}
.y105{bottom:524.509500px;}
.yd6{bottom:525.661500px;}
.y5c{bottom:529.600500px;}
.y91{bottom:531.969000px;}
.yed{bottom:532.381500px;}
.ya8{bottom:537.030000px;}
.y22{bottom:541.341000px;}
.y8{bottom:543.672000px;}
.y76{bottom:548.595000px;}
.yd5{bottom:552.561000px;}
.yc0{bottom:552.816000px;}
.y43{bottom:558.183000px;}
.yec{bottom:559.279500px;}
.y104{bottom:563.124000px;}
.ya7{bottom:564.487500px;}
.y21{bottom:568.336500px;}
.y7{bottom:570.570000px;}
.y75{bottom:575.494500px;}
.yd4{bottom:579.460500px;}
.ybf{bottom:579.715500px;}
.yeb{bottom:586.179000px;}
.ya6{bottom:591.387000px;}
.y5b{bottom:592.111500px;}
.y6{bottom:597.469500px;}
.y42{bottom:600.970500px;}
.y103{bottom:602.653500px;}
.y90{bottom:602.665500px;}
.yd3{bottom:606.360000px;}
.ybe{bottom:606.615000px;}
.y20{bottom:610.374000px;}
.ya5{bottom:618.286500px;}
.y5a{bottom:619.011000px;}
.y74{bottom:625.600500px;}
.ybd{bottom:633.513000px;}
.yea{bottom:634.338000px;}
.y102{bottom:642.183000px;}
.y41{bottom:643.756500px;}
.ya4{bottom:645.184500px;}
.y59{bottom:645.910500px;}
.yd2{bottom:655.470000px;}
.y1f{bottom:658.629000px;}
.ybc{bottom:660.412500px;}
.y40{bottom:671.127000px;}
.y8f{bottom:671.778000px;}
.y101{bottom:681.712500px;}
.ybb{bottom:687.910500px;}
.y58{bottom:688.354500px;}
.ya3{bottom:693.903000px;}
.y73{bottom:696.846000px;}
.y3f{bottom:698.497500px;}
.y8e{bottom:698.677500px;}
.ye9{bottom:717.138000px;}
.y100{bottom:721.243500px;}
.yd1{bottom:721.438500px;}
.y72{bottom:723.744000px;}
.y8d{bottom:725.577000px;}
.y3e{bottom:725.868000px;}
.y57{bottom:730.800000px;}
.y1e{bottom:737.065500px;}
.yd0{bottom:748.338000px;}
.y5{bottom:748.551000px;}
.y71{bottom:750.643500px;}
.ye8{bottom:752.538000px;}
.yba{bottom:754.332000px;}
.ya2{bottom:757.786500px;}
.yff{bottom:759.856500px;}
.y1d{bottom:763.963500px;}
.y8c{bottom:766.077000px;}
.y3d{bottom:768.655500px;}
.ycf{bottom:775.236000px;}
.y56{bottom:779.259000px;}
.ye7{bottom:779.437500px;}
.y70{bottom:779.490000px;}
.ya1{bottom:795.328500px;}
.y3c{bottom:796.026000px;}
.y1c{bottom:800.020500px;}
.yce{bottom:802.135500px;}
.y115{bottom:803.652000px;}
.ye6{bottom:806.335500px;}
.y6f{bottom:806.389500px;}
.y8b{bottom:808.123500px;}
.yfe{bottom:808.932000px;}
.yb9{bottom:817.777500px;}
.ya0{bottom:822.228000px;}
.y3b{bottom:823.396500px;}
.y1b{bottom:826.920000px;}
.y114{bottom:830.550000px;}
.ye5{bottom:833.235000px;}
.y6e{bottom:833.287500px;}
.y55{bottom:841.771500px;}
.yb8{bottom:844.677000px;}
.y8a{bottom:850.170000px;}
.y3a{bottom:850.767000px;}
.ycd{bottom:851.247000px;}
.y1a{bottom:853.819500px;}
.y113{bottom:857.449500px;}
.ye4{bottom:860.134500px;}
.y6d{bottom:860.187000px;}
.y9f{bottom:860.331000px;}
.y54{bottom:868.671000px;}
.yb7{bottom:871.576500px;}
.yfd{bottom:874.707000px;}
.y39{bottom:878.137500px;}
.y19{bottom:880.719000px;}
.y112{bottom:884.349000px;}
.ye3{bottom:887.631000px;}
.y89{bottom:890.671500px;}
.y9e{bottom:897.874500px;}
.yb6{bottom:898.476000px;}
.yfc{bottom:901.605000px;}
.y4{bottom:902.547000px;}
.y38{bottom:905.509500px;}
.y18{bottom:907.617000px;}
.y6c{bottom:910.293000px;}
.y53{bottom:911.115000px;}
.y111{bottom:911.248500px;}
.ycc{bottom:917.215500px;}
.y9d{bottom:924.774000px;}
.yfb{bottom:928.504500px;}
.y37{bottom:932.880000px;}
.y3{bottom:933.928500px;}
.y17{bottom:934.516500px;}
.y110{bottom:938.146500px;}
.y88{bottom:940.375500px;}
.ycb{bottom:944.113500px;}
.yb5{bottom:947.112000px;}
.ye2{bottom:950.478000px;}
.y52{bottom:953.560500px;}
.yfa{bottom:955.404000px;}
.y36{bottom:960.250500px;}
.y16{bottom:961.416000px;}
.y6b{bottom:964.914000px;}
.y10f{bottom:965.046000px;}
.yca{bottom:971.013000px;}
.y9c{bottom:973.492500px;}
.yf9{bottom:983.218500px;}
.y10e{bottom:991.945500px;}
.yc9{bottom:997.912500px;}
.y2{bottom:999.790500px;}
.y15{bottom:1000.120500px;}
.y6a{bottom:1000.314000px;}
.y51{bottom:1002.019500px;}
.y35{bottom:1003.036500px;}
.y87{bottom:1009.489500px;}
.yf8{bottom:1010.118000px;}
.yb4{bottom:1010.557500px;}
.ye1{bottom:1011.034500px;}
.y10d{bottom:1018.845000px;}
.y14{bottom:1027.116000px;}
.y69{bottom:1027.213500px;}
.y34{bottom:1030.407000px;}
.y13{bottom:1032.540000px;}
.y86{bottom:1036.387500px;}
.yf7{bottom:1037.017500px;}
.y9b{bottom:1037.374500px;}
.yb3{bottom:1037.457000px;}
.ye0{bottom:1037.934000px;}
.y1{bottom:1040.139000px;}
.yc8{bottom:1047.024000px;}
.y50{bottom:1050.480000px;}
.y68{bottom:1054.113000px;}
.y33{bottom:1057.779000px;}
.y11{bottom:1059.342000px;}
.y85{bottom:1063.287000px;}
.yf6{bottom:1063.917000px;}
.y9a{bottom:1064.274000px;}
.yb2{bottom:1064.355000px;}
.ydf{bottom:1064.832000px;}
.y12{bottom:1065.280500px;}
.y67{bottom:1081.011000px;}
.y32{bottom:1085.149500px;}
.y84{bottom:1090.186500px;}
.yf5{bottom:1090.815000px;}
.y99{bottom:1091.172000px;}
.yb1{bottom:1091.254500px;}
.yde{bottom:1091.731500px;}
.y66{bottom:1107.910500px;}
.y10{bottom:1108.509000px;}
.y31{bottom:1112.520000px;}
.y4f{bottom:1112.991000px;}
.y65{bottom:1135.407000px;}
.yf{bottom:1139.890500px;}
.y30{bottom:1192.194000px;}
.h12{height:1.255288px;}
.ha{height:29.457331px;}
.h9{height:31.800699px;}
.h7{height:37.927872px;}
.hc{height:41.842920px;}
.hb{height:42.799330px;}
.he{height:43.157983px;}
.h6{height:44.831700px;}
.h11{height:46.725331px;}
.h8{height:49.090950px;}
.h5{height:50.211840px;}
.hf{height:53.262632px;}
.h3{height:53.798400px;}
.hd{height:54.141331px;}
.h2{height:60.254040px;}
.h4{height:67.226503px;}
.h10{height:91.587331px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:106.215000px;}
.x14{left:108.000000px;}
.x17{left:113.811000px;}
.x16{left:119.623500px;}
.x1c{left:130.416000px;}
.x52{left:132.241500px;}
.x18{left:136.413000px;}
.x19{left:137.451000px;}
.x20{left:150.249000px;}
.x56{left:151.594500px;}
.x57{left:152.832000px;}
.xc{left:157.446000px;}
.x13{left:158.809500px;}
.x47{left:168.045000px;}
.x12{left:173.754000px;}
.x2c{left:174.900000px;}
.x21{left:177.091500px;}
.x63{left:179.406000px;}
.x48{left:180.943500px;}
.x60{left:188.055000px;}
.x55{left:197.592000px;}
.x22{left:205.879500px;}
.x1{left:210.669000px;}
.xf{left:214.422000px;}
.x10{left:221.125500px;}
.x1e{left:222.280500px;}
.x23{left:233.163000px;}
.x1f{left:237.078000px;}
.x1d{left:241.366500px;}
.x69{left:245.172000px;}
.x36{left:247.665000px;}
.x54{left:251.503500px;}
.xb{left:255.936000px;}
.x64{left:257.472000px;}
.x2f{left:265.848000px;}
.x40{left:268.111500px;}
.x6a{left:271.315500px;}
.x5a{left:273.712500px;}
.x3{left:274.819500px;}
.x3f{left:279.189000px;}
.x35{left:289.236000px;}
.x53{left:295.225500px;}
.x4e{left:298.408500px;}
.x5d{left:304.773000px;}
.x5b{left:307.288500px;}
.x5c{left:308.583000px;}
.x2{left:310.828500px;}
.x30{left:312.280500px;}
.x3d{left:314.454000px;}
.x51{left:317.859000px;}
.x2a{left:320.230500px;}
.x31{left:323.491500px;}
.x3e{left:327.580500px;}
.x7{left:329.793000px;}
.x49{left:331.251000px;}
.x32{left:339.555000px;}
.x5f{left:342.951000px;}
.x61{left:349.095000px;}
.x43{left:350.464500px;}
.x33{left:353.430000px;}
.x4{left:356.499000px;}
.x34{left:362.989500px;}
.x11{left:364.890000px;}
.x68{left:367.272000px;}
.x65{left:369.073500px;}
.x1b{left:373.006500px;}
.x2b{left:379.936500px;}
.x6{left:381.384000px;}
.xd{left:389.935500px;}
.x8{left:392.640000px;}
.x5{left:394.558500px;}
.x9{left:405.966000px;}
.x15{left:409.203000px;}
.x62{left:410.403000px;}
.x37{left:421.540500px;}
.x38{left:439.410000px;}
.x39{left:445.338000px;}
.x44{left:449.406000px;}
.x3a{left:452.343000px;}
.x3b{left:481.429500px;}
.x45{left:487.909500px;}
.x24{left:500.742000px;}
.x3c{left:505.629000px;}
.x25{left:508.213500px;}
.x26{left:517.296000px;}
.xe{left:519.187500px;}
.x46{left:520.339500px;}
.x4f{left:521.865000px;}
.x27{left:524.767500px;}
.x28{left:533.848500px;}
.x29{left:541.321500px;}
.x50{left:544.171500px;}
.x4a{left:606.505500px;}
.x4b{left:617.662500px;}
.x66{left:624.061500px;}
.x4c{left:633.598500px;}
.x67{left:639.687000px;}
.x4d{left:647.475000px;}
.x2d{left:677.151000px;}
.x2e{left:704.454000px;}
.x58{left:747.444000px;}
.x59{left:761.319000px;}
.x42{left:778.630500px;}
.x5e{left:791.013000px;}
.x1a{left:799.195500px;}
.x41{left:800.373000px;}
@media print{
.vb{vertical-align:-34.538667pt;}
.v2{vertical-align:-11.477333pt;}
.v4{vertical-align:-7.968000pt;}
.v6{vertical-align:-5.344000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.738667pt;}
.va{vertical-align:15.349333pt;}
.v5{vertical-align:16.597333pt;}
.v3{vertical-align:21.941333pt;}
.v9{vertical-align:27.973333pt;}
.v7{vertical-align:35.941333pt;}
.v8{vertical-align:55.226667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.001933pt;}
.ls29{letter-spacing:0.002471pt;}
.ls21{letter-spacing:0.002482pt;}
.ls11{letter-spacing:0.002711pt;}
.ls17{letter-spacing:0.005138pt;}
.ls27{letter-spacing:0.012406pt;}
.lsf{letter-spacing:0.012565pt;}
.ls2b{letter-spacing:0.015032pt;}
.ls2d{letter-spacing:0.016627pt;}
.ls5{letter-spacing:0.478205pt;}
.ls10{letter-spacing:1.487748pt;}
.ls2c{letter-spacing:2.654544pt;}
.ls20{letter-spacing:2.656546pt;}
.lsb{letter-spacing:2.656631pt;}
.ls2f{letter-spacing:2.657253pt;}
.ls7{letter-spacing:2.658876pt;}
.ls1f{letter-spacing:2.953897pt;}
.ls6{letter-spacing:3.814814pt;}
.ls31{letter-spacing:4.410111pt;}
.ls2a{letter-spacing:5.685324pt;}
.ls8{letter-spacing:5.791591pt;}
.lsa{letter-spacing:8.375903pt;}
.ls15{letter-spacing:8.381237pt;}
.ls4{letter-spacing:8.873356pt;}
.ls14{letter-spacing:9.926509pt;}
.ls30{letter-spacing:10.201702pt;}
.ls9{letter-spacing:11.795718pt;}
.lsd{letter-spacing:11.848852pt;}
.lse{letter-spacing:14.464631pt;}
.ls13{letter-spacing:14.771215pt;}
.ls12{letter-spacing:17.417211pt;}
.ls23{letter-spacing:17.427908pt;}
.lsc{letter-spacing:18.457292pt;}
.ls1c{letter-spacing:18.968790pt;}
.ls1e{letter-spacing:21.136479pt;}
.ls1d{letter-spacing:23.750838pt;}
.ls26{letter-spacing:28.639154pt;}
.ls2{letter-spacing:30.079283pt;}
.ls24{letter-spacing:31.880320pt;}
.ls1{letter-spacing:31.896474pt;}
.ls1a{letter-spacing:69.127161pt;}
.ls25{letter-spacing:173.057004pt;}
.ls2e{letter-spacing:247.921253pt;}
.ls0{letter-spacing:306.975635pt;}
.ls19{letter-spacing:541.357237pt;}
.ls18{letter-spacing:665.086625pt;}
.ls28{letter-spacing:737.870006pt;}
.ls16{letter-spacing:850.620071pt;}
.ls22{letter-spacing:868.844988pt;}
.ws23{word-spacing:-53.133867pt;}
.ws1f{word-spacing:-41.338148pt;}
.ws22{word-spacing:-34.611401pt;}
.ws27{word-spacing:-26.566933pt;}
.ws21{word-spacing:-25.791179pt;}
.ws1d{word-spacing:-25.738045pt;}
.ws25{word-spacing:-14.760588pt;}
.ws50{word-spacing:-14.027341pt;}
.ws56{word-spacing:-12.858396pt;}
.ws5d{word-spacing:-12.645860pt;}
.ws3e{word-spacing:-12.539593pt;}
.ws5b{word-spacing:-12.273923pt;}
.ws44{word-spacing:-12.028410pt;}
.ws39{word-spacing:-11.848852pt;}
.ws5c{word-spacing:-11.530049pt;}
.ws3d{word-spacing:-11.482229pt;}
.ws20{word-spacing:-11.019964pt;}
.ws55{word-spacing:-10.945577pt;}
.ws5f{word-spacing:-10.892443pt;}
.ws51{word-spacing:-10.679907pt;}
.ws5e{word-spacing:-10.525819pt;}
.ws1a{word-spacing:-10.520506pt;}
.ws2e{word-spacing:-10.467372pt;}
.ws3f{word-spacing:-10.361104pt;}
.ws1c{word-spacing:-10.201702pt;}
.ws24{word-spacing:-10.148569pt;}
.ws33{word-spacing:-10.095435pt;}
.wsc{word-spacing:-9.882899pt;}
.ws4c{word-spacing:-9.829765pt;}
.ws61{word-spacing:-9.463142pt;}
.ws6{word-spacing:-9.454172pt;}
.ws8{word-spacing:-9.406351pt;}
.ws53{word-spacing:-9.351561pt;}
.ws3b{word-spacing:-9.298427pt;}
.ws4e{word-spacing:-9.245293pt;}
.ws35{word-spacing:-9.192159pt;}
.ws32{word-spacing:-9.139025pt;}
.ws10{word-spacing:-9.085891pt;}
.ws38{word-spacing:-9.032757pt;}
.wsf{word-spacing:-8.979623pt;}
.ws1b{word-spacing:-8.926490pt;}
.ws4{word-spacing:-8.873356pt;}
.ws13{word-spacing:-8.820222pt;}
.wse{word-spacing:-8.767088pt;}
.ws37{word-spacing:-8.713954pt;}
.ws18{word-spacing:-8.660820pt;}
.ws19{word-spacing:-8.607686pt;}
.ws28{word-spacing:-8.554553pt;}
.wsd{word-spacing:-8.501419pt;}
.ws2b{word-spacing:-8.448285pt;}
.ws60{word-spacing:-8.347330pt;}
.ws16{word-spacing:-8.342017pt;}
.ws5{word-spacing:-8.220396pt;}
.ws7{word-spacing:-8.172575pt;}
.ws3c{word-spacing:-8.134795pt;}
.ws36{word-spacing:-7.970080pt;}
.ws49{word-spacing:-7.916946pt;}
.ws2f{word-spacing:-7.598143pt;}
.ws4d{word-spacing:-7.438741pt;}
.ws2d{word-spacing:-7.385607pt;}
.ws59{word-spacing:-7.332474pt;}
.ws11{word-spacing:-7.173072pt;}
.ws4f{word-spacing:-7.119938pt;}
.ws57{word-spacing:-6.748001pt;}
.ws17{word-spacing:-6.641733pt;}
.ws3a{word-spacing:-6.269796pt;}
.ws2c{word-spacing:-6.004127pt;}
.ws40{word-spacing:-5.950993pt;}
.ws2a{word-spacing:-5.897859pt;}
.ws29{word-spacing:-5.738458pt;}
.ws30{word-spacing:-5.260253pt;}
.ws31{word-spacing:-5.207119pt;}
.ws54{word-spacing:-4.782048pt;}
.ws58{word-spacing:-4.516379pt;}
.wsb{word-spacing:-4.468558pt;}
.ws4a{word-spacing:-4.410111pt;}
.ws4b{word-spacing:-3.294300pt;}
.ws52{word-spacing:-2.922363pt;}
.ws12{word-spacing:-2.656693pt;}
.ws5a{word-spacing:-1.965953pt;}
.ws2{word-spacing:-0.076513pt;}
.ws1e{word-spacing:-0.042507pt;}
.ws26{word-spacing:-0.037194pt;}
.ws9{word-spacing:0.000000pt;}
.ws42{word-spacing:2.434846pt;}
.ws43{word-spacing:2.562379pt;}
.wsa{word-spacing:2.734548pt;}
.ws48{word-spacing:2.932989pt;}
.ws41{word-spacing:5.382785pt;}
.ws34{word-spacing:7.809244pt;}
.ws45{word-spacing:8.338846pt;}
.ws47{word-spacing:8.398721pt;}
.ws46{word-spacing:8.466379pt;}
.ws1{word-spacing:20.786108pt;}
.ws3{word-spacing:23.846639pt;}
.ws0{word-spacing:28.615887pt;}
.ws15{word-spacing:30.551973pt;}
.ws14{word-spacing:2063.055810pt;}
._0{margin-left:-7.192228pt;}
._3{margin-left:-5.228407pt;}
._6{margin-left:-4.112589pt;}
._1{margin-left:-2.371905pt;}
._7{margin-left:-1.386803pt;}
._5{width:1.386803pt;}
._2{width:2.371905pt;}
._2e{width:3.778271pt;}
._42{width:13.804160pt;}
._39{width:14.968882pt;}
._2c{width:16.983718pt;}
._4{width:18.630868pt;}
._4c{width:19.950820pt;}
._2a{width:20.936913pt;}
._9{width:23.378901pt;}
._8{width:24.352369pt;}
._4b{width:25.525545pt;}
._34{width:26.832603pt;}
._40{width:28.288498pt;}
._41{width:30.261862pt;}
._2b{width:31.327693pt;}
._2f{width:32.923878pt;}
._33{width:34.571028pt;}
._43{width:35.899375pt;}
._4a{width:37.358431pt;}
._3a{width:41.616542pt;}
._2d{width:61.417427pt;}
._47{width:66.364199pt;}
._32{width:95.157433pt;}
._37{width:111.846789pt;}
._3e{width:137.717660pt;}
._3c{width:139.359487pt;}
._44{width:176.298170pt;}
._3b{width:187.663494pt;}
._36{width:190.426455pt;}
._3f{width:194.783433pt;}
._35{width:213.879772pt;}
._30{width:216.148570pt;}
._38{width:234.580699pt;}
._45{width:241.174621pt;}
._31{width:265.563066pt;}
._46{width:284.053651pt;}
._49{width:344.182069pt;}
._48{width:348.026827pt;}
._3d{width:369.540720pt;}
._28{width:935.166699pt;}
._c{width:938.455676pt;}
._e{width:1199.908315pt;}
._10{width:1223.178777pt;}
._1d{width:1226.860981pt;}
._11{width:1256.589417pt;}
._12{width:1286.604729pt;}
._17{width:1334.026668pt;}
._24{width:1361.337475pt;}
._29{width:1400.125198pt;}
._1a{width:1404.290930pt;}
._14{width:1407.728663pt;}
._1e{width:1459.380105pt;}
._1f{width:1464.077166pt;}
._b{width:1496.765056pt;}
._15{width:1518.698781pt;}
._d{width:1540.935267pt;}
._19{width:1560.817979pt;}
._20{width:1613.675531pt;}
._21{width:1647.309268pt;}
._18{width:1665.523539pt;}
._26{width:1688.913086pt;}
._13{width:1724.539380pt;}
._22{width:1777.350053pt;}
._25{width:1783.718878pt;}
._1b{width:1796.700019pt;}
._f{width:1803.916213pt;}
._1c{width:1995.393544pt;}
._23{width:2050.601232pt;}
._27{width:2065.158122pt;}
._a{width:2069.997339pt;}
._16{width:2077.166565pt;}
.fs7{font-size:26.566933pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:142.501333pt;}
.y4e{bottom:166.412000pt;}
.y2e{bottom:166.497333pt;}
.yb0{bottom:175.873333pt;}
.y64{bottom:190.322667pt;}
.y4d{bottom:190.741333pt;}
.ydd{bottom:200.832000pt;}
.y2d{bottom:203.864000pt;}
.ye{bottom:209.389333pt;}
.yc7{bottom:209.644000pt;}
.yaf{bottom:209.742667pt;}
.y10c{bottom:210.034667pt;}
.y63{bottom:214.232000pt;}
.y4c{bottom:214.652000pt;}
.y7f{bottom:220.276000pt;}
.y83{bottom:224.738667pt;}
.y2c{bottom:227.860000pt;}
.y7e{bottom:229.388000pt;}
.y82{bottom:232.708000pt;}
.y98{bottom:234.504000pt;}
.ydc{bottom:236.098667pt;}
.yf4{bottom:238.142667pt;}
.y4b{bottom:238.561333pt;}
.y81{bottom:240.678667pt;}
.yae{bottom:243.612000pt;}
.yd{bottom:244.590667pt;}
.y80{bottom:248.649333pt;}
.y2b{bottom:251.856000pt;}
.y62{bottom:257.308000pt;}
.y7d{bottom:258.489333pt;}
.yf3{bottom:262.053333pt;}
.y4a{bottom:262.472000pt;}
.yc6{bottom:266.040000pt;}
.y10b{bottom:268.501333pt;}
.ydb{bottom:271.365333pt;}
.y2a{bottom:275.852000pt;}
.yad{bottom:276.984000pt;}
.yc{bottom:279.792000pt;}
.y7c{bottom:282.400000pt;}
.yf2{bottom:285.964000pt;}
.y49{bottom:286.801333pt;}
.yc5{bottom:289.950667pt;}
.y10a{bottom:292.410667pt;}
.y29{bottom:299.849333pt;}
.y61{bottom:300.382667pt;}
.yda{bottom:306.632000pt;}
.yf1{bottom:309.873333pt;}
.y48{bottom:310.712000pt;}
.yc4{bottom:313.861333pt;}
.yb{bottom:314.993333pt;}
.yac{bottom:315.172000pt;}
.y109{bottom:316.321333pt;}
.y97{bottom:321.312000pt;}
.y28{bottom:323.845333pt;}
.y7b{bottom:326.938667pt;}
.yf0{bottom:333.784000pt;}
.y47{bottom:334.622667pt;}
.yc3{bottom:337.770667pt;}
.y108{bottom:340.232000pt;}
.yd9{bottom:341.052000pt;}
.y27{bottom:347.841333pt;}
.ya{bottom:350.194667pt;}
.y96{bottom:352.778667pt;}
.yab{bottom:353.360000pt;}
.y60{bottom:355.949333pt;}
.y46{bottom:358.533333pt;}
.y107{bottom:364.142667pt;}
.yd8{bottom:364.962667pt;}
.y26{bottom:371.837333pt;}
.yef{bottom:376.592000pt;}
.y95{bottom:376.689333pt;}
.y5f{bottom:379.860000pt;}
.yc2{bottom:381.002667pt;}
.y7a{bottom:390.268000pt;}
.yaa{bottom:396.665333pt;}
.y94{bottom:400.600000pt;}
.y45{bottom:401.760000pt;}
.y5e{bottom:403.769333pt;}
.y106{bottom:407.764000pt;}
.yd7{bottom:408.617333pt;}
.y25{bottom:409.204000pt;}
.y79{bottom:414.178667pt;}
.yee{bottom:419.400000pt;}
.y93{bottom:424.509333pt;}
.y5d{bottom:427.680000pt;}
.y24{bottom:433.200000pt;}
.y9{bottom:436.676000pt;}
.y78{bottom:438.088000pt;}
.y92{bottom:448.420000pt;}
.ya9{bottom:453.449333pt;}
.y23{bottom:457.196000pt;}
.y44{bottom:458.130667pt;}
.yc1{bottom:459.925333pt;}
.y77{bottom:463.729333pt;}
.y105{bottom:466.230667pt;}
.yd6{bottom:467.254667pt;}
.y5c{bottom:470.756000pt;}
.y91{bottom:472.861333pt;}
.yed{bottom:473.228000pt;}
.ya8{bottom:477.360000pt;}
.y22{bottom:481.192000pt;}
.y8{bottom:483.264000pt;}
.y76{bottom:487.640000pt;}
.yd5{bottom:491.165333pt;}
.yc0{bottom:491.392000pt;}
.y43{bottom:496.162667pt;}
.yec{bottom:497.137333pt;}
.y104{bottom:500.554667pt;}
.ya7{bottom:501.766667pt;}
.y21{bottom:505.188000pt;}
.y7{bottom:507.173333pt;}
.y75{bottom:511.550667pt;}
.yd4{bottom:515.076000pt;}
.ybf{bottom:515.302667pt;}
.yeb{bottom:521.048000pt;}
.ya6{bottom:525.677333pt;}
.y5b{bottom:526.321333pt;}
.y6{bottom:531.084000pt;}
.y42{bottom:534.196000pt;}
.y103{bottom:535.692000pt;}
.y90{bottom:535.702667pt;}
.yd3{bottom:538.986667pt;}
.ybe{bottom:539.213333pt;}
.y20{bottom:542.554667pt;}
.ya5{bottom:549.588000pt;}
.y5a{bottom:550.232000pt;}
.y74{bottom:556.089333pt;}
.ybd{bottom:563.122667pt;}
.yea{bottom:563.856000pt;}
.y102{bottom:570.829333pt;}
.y41{bottom:572.228000pt;}
.ya4{bottom:573.497333pt;}
.y59{bottom:574.142667pt;}
.yd2{bottom:582.640000pt;}
.y1f{bottom:585.448000pt;}
.ybc{bottom:587.033333pt;}
.y40{bottom:596.557333pt;}
.y8f{bottom:597.136000pt;}
.y101{bottom:605.966667pt;}
.ybb{bottom:611.476000pt;}
.y58{bottom:611.870667pt;}
.ya3{bottom:616.802667pt;}
.y73{bottom:619.418667pt;}
.y3f{bottom:620.886667pt;}
.y8e{bottom:621.046667pt;}
.ye9{bottom:637.456000pt;}
.y100{bottom:641.105333pt;}
.yd1{bottom:641.278667pt;}
.y72{bottom:643.328000pt;}
.y8d{bottom:644.957333pt;}
.y3e{bottom:645.216000pt;}
.y57{bottom:649.600000pt;}
.y1e{bottom:655.169333pt;}
.yd0{bottom:665.189333pt;}
.y5{bottom:665.378667pt;}
.y71{bottom:667.238667pt;}
.ye8{bottom:668.922667pt;}
.yba{bottom:670.517333pt;}
.ya2{bottom:673.588000pt;}
.yff{bottom:675.428000pt;}
.y1d{bottom:679.078667pt;}
.y8c{bottom:680.957333pt;}
.y3d{bottom:683.249333pt;}
.ycf{bottom:689.098667pt;}
.y56{bottom:692.674667pt;}
.ye7{bottom:692.833333pt;}
.y70{bottom:692.880000pt;}
.ya1{bottom:706.958667pt;}
.y3c{bottom:707.578667pt;}
.y1c{bottom:711.129333pt;}
.yce{bottom:713.009333pt;}
.y115{bottom:714.357333pt;}
.ye6{bottom:716.742667pt;}
.y6f{bottom:716.790667pt;}
.y8b{bottom:718.332000pt;}
.yfe{bottom:719.050667pt;}
.yb9{bottom:726.913333pt;}
.ya0{bottom:730.869333pt;}
.y3b{bottom:731.908000pt;}
.y1b{bottom:735.040000pt;}
.y114{bottom:738.266667pt;}
.ye5{bottom:740.653333pt;}
.y6e{bottom:740.700000pt;}
.y55{bottom:748.241333pt;}
.yb8{bottom:750.824000pt;}
.y8a{bottom:755.706667pt;}
.y3a{bottom:756.237333pt;}
.ycd{bottom:756.664000pt;}
.y1a{bottom:758.950667pt;}
.y113{bottom:762.177333pt;}
.ye4{bottom:764.564000pt;}
.y6d{bottom:764.610667pt;}
.y9f{bottom:764.738667pt;}
.y54{bottom:772.152000pt;}
.yb7{bottom:774.734667pt;}
.yfd{bottom:777.517333pt;}
.y39{bottom:780.566667pt;}
.y19{bottom:782.861333pt;}
.y112{bottom:786.088000pt;}
.ye3{bottom:789.005333pt;}
.y89{bottom:791.708000pt;}
.y9e{bottom:798.110667pt;}
.yb6{bottom:798.645333pt;}
.yfc{bottom:801.426667pt;}
.y4{bottom:802.264000pt;}
.y38{bottom:804.897333pt;}
.y18{bottom:806.770667pt;}
.y6c{bottom:809.149333pt;}
.y53{bottom:809.880000pt;}
.y111{bottom:809.998667pt;}
.ycc{bottom:815.302667pt;}
.y9d{bottom:822.021333pt;}
.yfb{bottom:825.337333pt;}
.y37{bottom:829.226667pt;}
.y3{bottom:830.158667pt;}
.y17{bottom:830.681333pt;}
.y110{bottom:833.908000pt;}
.y88{bottom:835.889333pt;}
.ycb{bottom:839.212000pt;}
.yb5{bottom:841.877333pt;}
.ye2{bottom:844.869333pt;}
.y52{bottom:847.609333pt;}
.yfa{bottom:849.248000pt;}
.y36{bottom:853.556000pt;}
.y16{bottom:854.592000pt;}
.y6b{bottom:857.701333pt;}
.y10f{bottom:857.818667pt;}
.yca{bottom:863.122667pt;}
.y9c{bottom:865.326667pt;}
.yf9{bottom:873.972000pt;}
.y10e{bottom:881.729333pt;}
.yc9{bottom:887.033333pt;}
.y2{bottom:888.702667pt;}
.y15{bottom:888.996000pt;}
.y6a{bottom:889.168000pt;}
.y51{bottom:890.684000pt;}
.y35{bottom:891.588000pt;}
.y87{bottom:897.324000pt;}
.yf8{bottom:897.882667pt;}
.yb4{bottom:898.273333pt;}
.ye1{bottom:898.697333pt;}
.y10d{bottom:905.640000pt;}
.y14{bottom:912.992000pt;}
.y69{bottom:913.078667pt;}
.y34{bottom:915.917333pt;}
.y13{bottom:917.813333pt;}
.y86{bottom:921.233333pt;}
.yf7{bottom:921.793333pt;}
.y9b{bottom:922.110667pt;}
.yb3{bottom:922.184000pt;}
.ye0{bottom:922.608000pt;}
.y1{bottom:924.568000pt;}
.yc8{bottom:930.688000pt;}
.y50{bottom:933.760000pt;}
.y68{bottom:936.989333pt;}
.y33{bottom:940.248000pt;}
.y11{bottom:941.637333pt;}
.y85{bottom:945.144000pt;}
.yf6{bottom:945.704000pt;}
.y9a{bottom:946.021333pt;}
.yb2{bottom:946.093333pt;}
.ydf{bottom:946.517333pt;}
.y12{bottom:946.916000pt;}
.y67{bottom:960.898667pt;}
.y32{bottom:964.577333pt;}
.y84{bottom:969.054667pt;}
.yf5{bottom:969.613333pt;}
.y99{bottom:969.930667pt;}
.yb1{bottom:970.004000pt;}
.yde{bottom:970.428000pt;}
.y66{bottom:984.809333pt;}
.y10{bottom:985.341333pt;}
.y31{bottom:988.906667pt;}
.y4f{bottom:989.325333pt;}
.y65{bottom:1009.250667pt;}
.yf{bottom:1013.236000pt;}
.y30{bottom:1059.728000pt;}
.h12{height:1.115811pt;}
.ha{height:26.184294pt;}
.h9{height:28.267288pt;}
.h7{height:33.713664pt;}
.hc{height:37.193707pt;}
.hb{height:38.043849pt;}
.he{height:38.362652pt;}
.h6{height:39.850400pt;}
.h11{height:41.533628pt;}
.h8{height:43.636400pt;}
.h5{height:44.632747pt;}
.hf{height:47.344562pt;}
.h3{height:47.820800pt;}
.hd{height:48.125628pt;}
.h2{height:53.559147pt;}
.h4{height:59.756892pt;}
.h10{height:81.410961pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:94.413333pt;}
.x14{left:96.000000pt;}
.x17{left:101.165333pt;}
.x16{left:106.332000pt;}
.x1c{left:115.925333pt;}
.x52{left:117.548000pt;}
.x18{left:121.256000pt;}
.x19{left:122.178667pt;}
.x20{left:133.554667pt;}
.x56{left:134.750667pt;}
.x57{left:135.850667pt;}
.xc{left:139.952000pt;}
.x13{left:141.164000pt;}
.x47{left:149.373333pt;}
.x12{left:154.448000pt;}
.x2c{left:155.466667pt;}
.x21{left:157.414667pt;}
.x63{left:159.472000pt;}
.x48{left:160.838667pt;}
.x60{left:167.160000pt;}
.x55{left:175.637333pt;}
.x22{left:183.004000pt;}
.x1{left:187.261333pt;}
.xf{left:190.597333pt;}
.x10{left:196.556000pt;}
.x1e{left:197.582667pt;}
.x23{left:207.256000pt;}
.x1f{left:210.736000pt;}
.x1d{left:214.548000pt;}
.x69{left:217.930667pt;}
.x36{left:220.146667pt;}
.x54{left:223.558667pt;}
.xb{left:227.498667pt;}
.x64{left:228.864000pt;}
.x2f{left:236.309333pt;}
.x40{left:238.321333pt;}
.x6a{left:241.169333pt;}
.x5a{left:243.300000pt;}
.x3{left:244.284000pt;}
.x3f{left:248.168000pt;}
.x35{left:257.098667pt;}
.x53{left:262.422667pt;}
.x4e{left:265.252000pt;}
.x5d{left:270.909333pt;}
.x5b{left:273.145333pt;}
.x5c{left:274.296000pt;}
.x2{left:276.292000pt;}
.x30{left:277.582667pt;}
.x3d{left:279.514667pt;}
.x51{left:282.541333pt;}
.x2a{left:284.649333pt;}
.x31{left:287.548000pt;}
.x3e{left:291.182667pt;}
.x7{left:293.149333pt;}
.x49{left:294.445333pt;}
.x32{left:301.826667pt;}
.x5f{left:304.845333pt;}
.x61{left:310.306667pt;}
.x43{left:311.524000pt;}
.x33{left:314.160000pt;}
.x4{left:316.888000pt;}
.x34{left:322.657333pt;}
.x11{left:324.346667pt;}
.x68{left:326.464000pt;}
.x65{left:328.065333pt;}
.x1b{left:331.561333pt;}
.x2b{left:337.721333pt;}
.x6{left:339.008000pt;}
.xd{left:346.609333pt;}
.x8{left:349.013333pt;}
.x5{left:350.718667pt;}
.x9{left:360.858667pt;}
.x15{left:363.736000pt;}
.x62{left:364.802667pt;}
.x37{left:374.702667pt;}
.x38{left:390.586667pt;}
.x39{left:395.856000pt;}
.x44{left:399.472000pt;}
.x3a{left:402.082667pt;}
.x3b{left:427.937333pt;}
.x45{left:433.697333pt;}
.x24{left:445.104000pt;}
.x3c{left:449.448000pt;}
.x25{left:451.745333pt;}
.x26{left:459.818667pt;}
.xe{left:461.500000pt;}
.x46{left:462.524000pt;}
.x4f{left:463.880000pt;}
.x27{left:466.460000pt;}
.x28{left:474.532000pt;}
.x29{left:481.174667pt;}
.x50{left:483.708000pt;}
.x4a{left:539.116000pt;}
.x4b{left:549.033333pt;}
.x66{left:554.721333pt;}
.x4c{left:563.198667pt;}
.x67{left:568.610667pt;}
.x4d{left:575.533333pt;}
.x2d{left:601.912000pt;}
.x2e{left:626.181333pt;}
.x58{left:664.394667pt;}
.x59{left:676.728000pt;}
.x42{left:692.116000pt;}
.x5e{left:703.122667pt;}
.x1a{left:710.396000pt;}
.x41{left:711.442667pt;}
}




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