
    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_f59c7a75fa6d628dc3bdb7fb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_e3bee34493ec965c884307c4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.900000;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_a3cab70a92e7656c53d62187.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_129a944327a635c186c20e73.woff')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_40db2e088dc66846f8652a74.woff')format("woff");}.ff5{font-family:ff5;line-height:0.460000;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_640806bd95637d7013f9f237.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_de55a71eb9cc824cd2055b06.woff')format("woff");}.ff7{font-family:ff7;line-height:0.892000;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_582076c84249f5e7e30de734.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a2c0129e22f034ee109bbf9d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.049000;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_2363139c2d57c4b57ea085b3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.705000;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_64cdf3afab027f6ec3d53e4c.woff')format("woff");}.ffb{font-family:ffb;line-height:2.399000;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_b04acc923a3b34fa9706f3bd.woff')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_5d6cf839423365abdc9d8047.woff')format("woff");}.ffd{font-family:ffd;line-height:1.111000;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_40cf414ec1e220de9c11cc59.woff')format("woff");}.ffe{font-family:ffe;line-height:0.708000;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_233dfdf060910ec3b8708465.woff')format("woff");}.fff{font-family:fff;line-height:0.798000;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_6d4418ec949144f5a4002367.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_916d7ff53580abea6011d28c.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_4b4f803990e8ac9740aaf076.woff')format("woff");}.ff12{font-family:ff12;line-height:0.958000;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_3470aa182f6c022b69bfba85.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_7468c2a41111c8ee3c5de84c.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_568cde8b11a952571849fe6f.woff')format("woff");}.ff15{font-family:ff15;line-height:0.999000;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_c2c3246befc21e3b1e4b91a5.woff')format("woff");}.ff16{font-family:ff16;line-height:0.635000;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;}
.ma{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);}
.md{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);}
.m12{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);}
.m18{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m13{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);}
.m1{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);}
.m1b{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);}
.mb{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);}
.m16{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);}
.me{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);}
.m1a{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);}
.m7{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m1d{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m10{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);}
.mc{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);}
.m6{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);}
.m17{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m5{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);}
.m14{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m11{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);}
.m2{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);}
.mf{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);}
.v10{vertical-align:-23.754000px;}
.vb{vertical-align:-20.274000px;}
.v4{vertical-align:-14.928000px;}
.v2{vertical-align:-8.964000px;}
.vf{vertical-align:-7.212000px;}
.v14{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:12.084000px;}
.v1{vertical-align:15.462000px;}
.v6{vertical-align:16.548000px;}
.v11{vertical-align:18.132000px;}
.v3{vertical-align:21.690000px;}
.vd{vertical-align:23.754000px;}
.v13{vertical-align:25.770000px;}
.v12{vertical-align:27.024000px;}
.v5{vertical-align:44.280000px;}
.vc{vertical-align:55.386000px;}
.v9{vertical-align:60.822000px;}
.v7{vertical-align:89.178000px;}
.v8{vertical-align:92.292000px;}
.va{vertical-align:137.190000px;}
.ls8{letter-spacing:0.000000px;}
.ls5d{letter-spacing:0.000511px;}
.ls6b{letter-spacing:0.000782px;}
.ls5{letter-spacing:0.001698px;}
.ls4f{letter-spacing:0.002149px;}
.ls63{letter-spacing:0.002270px;}
.ls45{letter-spacing:0.002599px;}
.ls1e{letter-spacing:0.004338px;}
.ls70{letter-spacing:0.005795px;}
.ls49{letter-spacing:0.014031px;}
.ls3e{letter-spacing:0.024423px;}
.ls24{letter-spacing:0.261818px;}
.ls2a{letter-spacing:0.589091px;}
.ls28{letter-spacing:0.654546px;}
.ls1{letter-spacing:1.912819px;}
.ls59{letter-spacing:1.936742px;}
.ls2f{letter-spacing:2.094547px;}
.lsa{letter-spacing:2.356366px;}
.ls7{letter-spacing:2.983200px;}
.ls50{letter-spacing:2.984915px;}
.ls3f{letter-spacing:2.987236px;}
.ls6c{letter-spacing:2.987282px;}
.ls37{letter-spacing:2.987700px;}
.ls56{letter-spacing:2.987971px;}
.ls5c{letter-spacing:2.990915px;}
.ls4d{letter-spacing:2.992200px;}
.ls71{letter-spacing:2.992240px;}
.ls6e{letter-spacing:2.993236px;}
.ls1d{letter-spacing:5.301823px;}
.ls2c{letter-spacing:5.523302px;}
.ls5a{letter-spacing:6.186816px;}
.ls4{letter-spacing:6.635092px;}
.ls3{letter-spacing:6.694867px;}
.ls0{letter-spacing:6.754643px;}
.ls13{letter-spacing:7.168880px;}
.ls55{letter-spacing:7.172700px;}
.ls15{letter-spacing:7.174869px;}
.ls2e{letter-spacing:7.396370px;}
.ls2d{letter-spacing:8.033894px;}
.ls46{letter-spacing:8.508587px;}
.ls4e{letter-spacing:8.514587px;}
.ls6{letter-spacing:9.650525px;}
.lse{letter-spacing:10.865464px;}
.ls36{letter-spacing:10.903359px;}
.ls35{letter-spacing:10.930918px;}
.ls18{letter-spacing:11.440338px;}
.ls1c{letter-spacing:12.756344px;}
.ls5b{letter-spacing:13.449600px;}
.ls44{letter-spacing:13.898915px;}
.ls2{letter-spacing:14.346144px;}
.ls3b{letter-spacing:14.465467px;}
.ls23{letter-spacing:14.530921px;}
.ls30{letter-spacing:14.596376px;}
.ls19{letter-spacing:15.640530px;}
.lsd{letter-spacing:16.232741px;}
.ls5e{letter-spacing:16.298195px;}
.ls10{letter-spacing:16.363650px;}
.ls4b{letter-spacing:16.887287px;}
.ls61{letter-spacing:16.952741px;}
.ls14{letter-spacing:17.138712px;}
.ls11{letter-spacing:17.272881px;}
.ls3a{letter-spacing:17.444915px;}
.ls48{letter-spacing:17.528915px;}
.ls6d{letter-spacing:18.084509px;}
.ls43{letter-spacing:18.130924px;}
.lsb{letter-spacing:18.196379px;}
.ls52{letter-spacing:18.261833px;}
.ls1a{letter-spacing:18.350405px;}
.ls25{letter-spacing:18.458197px;}
.ls4a{letter-spacing:18.720016px;}
.ls9{letter-spacing:18.987770px;}
.ls58{letter-spacing:19.352915px;}
.ls22{letter-spacing:19.898198px;}
.ls1f{letter-spacing:20.143994px;}
.ls51{letter-spacing:20.552744px;}
.ls16{letter-spacing:20.906153px;}
.ls53{letter-spacing:21.170915px;}
.ls47{letter-spacing:21.172059px;}
.ls69{letter-spacing:21.173236px;}
.ls20{letter-spacing:21.229994px;}
.ls4c{letter-spacing:24.876587px;}
.ls33{letter-spacing:25.185770px;}
.ls54{letter-spacing:25.349412px;}
.ls3c{letter-spacing:25.461839px;}
.ls5f{letter-spacing:25.592749px;}
.ls68{letter-spacing:26.700587px;}
.ls29{letter-spacing:28.026462px;}
.ls2b{letter-spacing:28.072302px;}
.ls1b{letter-spacing:29.585479px;}
.ls27{letter-spacing:30.305480px;}
.ls12{letter-spacing:31.763412px;}
.ls26{letter-spacing:33.381846px;}
.lsc{letter-spacing:35.284716px;}
.ls34{letter-spacing:35.303251px;}
.ls39{letter-spacing:35.325093px;}
.ls21{letter-spacing:35.363412px;}
.ls57{letter-spacing:35.711971px;}
.ls66{letter-spacing:36.392758px;}
.ls6f{letter-spacing:42.198587px;}
.ls67{letter-spacing:65.389145px;}
.ls60{letter-spacing:74.094607px;}
.ls65{letter-spacing:74.717971px;}
.ls6a{letter-spacing:83.651412px;}
.ls41{letter-spacing:105.621770px;}
.ls3d{letter-spacing:112.895412px;}
.ls31{letter-spacing:141.840118px;}
.ls62{letter-spacing:334.794587px;}
.ls64{letter-spacing:438.392915px;}
.ls42{letter-spacing:824.924324px;}
.ls32{letter-spacing:864.720721px;}
.ls17{letter-spacing:906.611665px;}
.ls38{letter-spacing:927.295318px;}
.lsf{letter-spacing:1002.829927px;}
.ls40{letter-spacing:1080.262718px;}
.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;}
}
.ws44{word-spacing:-47.258221px;}
.ws43{word-spacing:-42.637126px;}
.ws2f{word-spacing:-33.211407px;}
.ws3a{word-spacing:-31.771663px;}
.ws38{word-spacing:-31.706208px;}
.ws9{word-spacing:-28.955301px;}
.ws30{word-spacing:-26.404386px;}
.ws3e{word-spacing:-26.273476px;}
.ws26{word-spacing:-24.747161px;}
.ws1e{word-spacing:-24.582087px;}
.ws51{word-spacing:-24.440748px;}
.ws2e{word-spacing:-23.359839px;}
.ws31{word-spacing:-23.356895px;}
.ws3c{word-spacing:-23.000746px;}
.ws22{word-spacing:-22.764087px;}
.ws52{word-spacing:-21.519300px;}
.ws3f{word-spacing:-18.877107px;}
.ws3d{word-spacing:-18.183288px;}
.ws40{word-spacing:-17.179182px;}
.wsd{word-spacing:-16.605662px;}
.ws29{word-spacing:-16.363650px;}
.ws2a{word-spacing:-14.600272px;}
.ws20{word-spacing:-14.448646px;}
.ws23{word-spacing:-11.955150px;}
.ws45{word-spacing:-9.907182px;}
.ws4b{word-spacing:-7.317824px;}
.ws18{word-spacing:-7.252370px;}
.wsc{word-spacing:-6.623136px;}
.ws1f{word-spacing:-4.557902px;}
.ws21{word-spacing:-3.652367px;}
.ws12{word-spacing:-1.898183px;}
.ws41{word-spacing:-0.654546px;}
.ws4c{word-spacing:-0.392728px;}
.ws2d{word-spacing:-0.327273px;}
.ws5{word-spacing:-0.298878px;}
.ws16{word-spacing:-0.261818px;}
.ws28{word-spacing:-0.196364px;}
.ws6{word-spacing:-0.179327px;}
.ws10{word-spacing:-0.130909px;}
.ws14{word-spacing:-0.065455px;}
.ws39{word-spacing:-0.052364px;}
.ws0{word-spacing:0.000000px;}
.ws42{word-spacing:0.013091px;}
.ws2{word-spacing:0.059776px;}
.ws37{word-spacing:0.065455px;}
.ws24{word-spacing:0.130909px;}
.ws13{word-spacing:0.196364px;}
.ws1{word-spacing:0.206585px;}
.ws4{word-spacing:0.239102px;}
.ws17{word-spacing:0.261818px;}
.ws19{word-spacing:0.327273px;}
.ws3b{word-spacing:0.458182px;}
.ws57{word-spacing:0.523637px;}
.ws58{word-spacing:0.589091px;}
.ws59{word-spacing:0.654546px;}
.ws35{word-spacing:0.720001px;}
.ws4f{word-spacing:0.916364px;}
.ws8{word-spacing:1.075961px;}
.ws15{word-spacing:1.243637px;}
.ws7{word-spacing:1.434614px;}
.ws4a{word-spacing:1.453092px;}
.ws25{word-spacing:1.505456px;}
.ws55{word-spacing:1.767274px;}
.ws3{word-spacing:1.793268px;}
.ws5e{word-spacing:1.963638px;}
.wsb{word-spacing:2.450800px;}
.wsa{word-spacing:2.582306px;}
.ws1c{word-spacing:3.227904px;}
.ws4d{word-spacing:3.534548px;}
.ws2c{word-spacing:3.665458px;}
.wsf{word-spacing:3.796367px;}
.ws1b{word-spacing:3.927276px;}
.ws53{word-spacing:4.254549px;}
.ws5c{word-spacing:4.333095px;}
.wse{word-spacing:5.260253px;}
.ws54{word-spacing:5.367277px;}
.ws33{word-spacing:6.349096px;}
.ws48{word-spacing:6.414551px;}
.ws49{word-spacing:6.480005px;}
.ws56{word-spacing:7.200006px;}
.ws32{word-spacing:7.396370px;}
.ws5a{word-spacing:7.854552px;}
.ws46{word-spacing:8.967280px;}
.ws34{word-spacing:9.163644px;}
.ws5d{word-spacing:10.472736px;}
.ws2b{word-spacing:10.800009px;}
.ws5b{word-spacing:15.525831px;}
.ws1a{word-spacing:16.363650px;}
.ws47{word-spacing:17.554924px;}
.ws36{word-spacing:47.847313px;}
.ws27{word-spacing:49.090950px;}
.ws4e{word-spacing:50.400042px;}
.ws1d{word-spacing:53.798400px;}
.ws11{word-spacing:64.557900px;}
.ws50{word-spacing:254.880212px;}
._21{margin-left:-8.443643px;}
._1{margin-left:-7.333760px;}
._4{margin-left:-5.858009px;}
._7{margin-left:-4.782048px;}
._0{margin-left:-3.615234px;}
._2{margin-left:-1.793280px;}
._16{width:2.351957px;}
._11{width:3.665458px;}
._10{width:5.984400px;}
._14{width:7.029628px;}
._13{width:9.098189px;}
._5{width:13.927715px;}
._e{width:15.542431px;}
._6{width:17.633802px;}
._8{width:18.649987px;}
._1a{width:19.727840px;}
._9{width:20.981236px;}
._a{width:22.356074px;}
._3{width:24.268894px;}
._b{width:26.301264px;}
._18{width:27.687296px;}
._d{width:29.469371px;}
._1b{width:32.727300px;}
._c{width:34.849175px;}
._15{width:36.130195px;}
._17{width:47.912767px;}
._19{width:64.178057px;}
._12{width:71.731200px;}
._f{width:86.077200px;}
._1f{width:129.861926px;}
._1d{width:147.534668px;}
._20{width:174.604254px;}
._1c{width:188.077072px;}
._1e{width:219.407681px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs4{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs6{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y24{bottom:63.168000px;}
.y4e{bottom:113.713500px;}
.yab{bottom:121.287000px;}
.y76{bottom:130.473000px;}
.y23{bottom:131.235000px;}
.y4d{bottom:138.373500px;}
.yaa{bottom:141.610500px;}
.y75{bottom:153.279000px;}
.y22{bottom:153.954000px;}
.y4c{bottom:158.697000px;}
.y8a{bottom:161.562000px;}
.ya9{bottom:161.935500px;}
.y74{bottom:173.602500px;}
.y21{bottom:174.277500px;}
.y89{bottom:181.885500px;}
.y4b{bottom:191.244000px;}
.ya8{bottom:195.708000px;}
.y72{bottom:198.117000px;}
.y88{bottom:202.209000px;}
.y20{bottom:208.050000px;}
.y73{bottom:209.343000px;}
.y4a{bottom:211.567500px;}
.y71{bottom:220.413000px;}
.ya7{bottom:229.482000px;}
.y87{bottom:230.749500px;}
.y48{bottom:231.892500px;}
.y49{bottom:236.028000px;}
.y1f{bottom:241.824000px;}
.y70{bottom:242.682000px;}
.ya6{bottom:249.805500px;}
.y47{bottom:252.216000px;}
.y1e{bottom:262.147500px;}
.y6f{bottom:263.007000px;}
.y86{bottom:271.905000px;}
.y1d{bottom:282.471000px;}
.y6e{bottom:283.330500px;}
.ya5{bottom:283.579500px;}
.y46{bottom:284.763000px;}
.y85{bottom:292.230000px;}
.y1c{bottom:302.796000px;}
.ya4{bottom:303.903000px;}
.y45{bottom:305.086500px;}
.y6d{bottom:314.700000px;}
.y1b{bottom:323.119500px;}
.y84{bottom:336.343500px;}
.ya3{bottom:337.675500px;}
.y44{bottom:338.370000px;}
.y1a{bottom:343.443000px;}
.y83{bottom:356.667000px;}
.y6c{bottom:358.398000px;}
.y43{bottom:358.693500px;}
.y19{bottom:363.766500px;}
.ya2{bottom:371.449500px;}
.y82{bottom:376.992000px;}
.y6b{bottom:378.721500px;}
.y18{bottom:384.090000px;}
.y42{bottom:391.240500px;}
.y6a{bottom:399.045000px;}
.ya1{bottom:405.222000px;}
.y81{bottom:410.764500px;}
.y41{bottom:411.565500px;}
.y17{bottom:421.350000px;}
.ya0{bottom:438.996000px;}
.y69{bottom:442.146000px;}
.y40{bottom:442.935000px;}
.y80{bottom:444.538500px;}
.y9f{bottom:459.319500px;}
.y67{bottom:462.469500px;}
.y7f{bottom:464.862000px;}
.y68{bottom:468.408000px;}
.y16{bottom:474.022500px;}
.y7e{bottom:485.185500px;}
.y3f{bottom:487.546500px;}
.y9e{bottom:493.093500px;}
.y66{bottom:493.839000px;}
.y15{bottom:494.346000px;}
.y3e{bottom:507.870000px;}
.y9d{bottom:513.417000px;}
.y7d{bottom:518.959500px;}
.y14{bottom:528.120000px;}
.y3d{bottom:534.306000px;}
.y65{bottom:537.537000px;}
.y7c{bottom:539.283000px;}
.y13{bottom:546.052500px;}
.y9c{bottom:547.191000px;}
.y3a{bottom:554.629500px;}
.y3b{bottom:558.765000px;}
.y3c{bottom:560.568000px;}
.y63{bottom:562.983000px;}
.y12{bottom:563.985000px;}
.y9b{bottom:567.514500px;}
.y62{bottom:574.207500px;}
.y7b{bottom:576.543000px;}
.y11{bottom:581.917500px;}
.y64{bottom:585.277500px;}
.y39{bottom:589.701000px;}
.y10{bottom:599.850000px;}
.y9a{bottom:601.287000px;}
.y37{bottom:610.024500px;}
.y61{bottom:611.083500px;}
.y38{bottom:614.161500px;}
.yf{bottom:617.784000px;}
.y7a{bottom:629.215500px;}
.y99{bottom:635.061000px;}
.ye{bottom:635.716500px;}
.y60{bottom:636.325500px;}
.y36{bottom:641.394000px;}
.y79{bottom:649.539000px;}
.yd{bottom:653.649000px;}
.y98{bottom:655.278000px;}
.y96{bottom:655.384500px;}
.y5f{bottom:658.621500px;}
.y97{bottom:658.911000px;}
.yc{bottom:671.581500px;}
.y35{bottom:679.251000px;}
.y5e{bottom:684.427500px;}
.ya{bottom:689.514000px;}
.yb{bottom:689.589000px;}
.y95{bottom:692.644500px;}
.y78{bottom:701.962500px;}
.y5d{bottom:704.751000px;}
.y9{bottom:707.446500px;}
.y5c{bottom:708.888000px;}
.y77{bottom:722.286000px;}
.y5a{bottom:725.074500px;}
.y8{bottom:725.380500px;}
.y5b{bottom:729.211500px;}
.y34{bottom:731.682000px;}
.y7{bottom:743.313000px;}
.y94{bottom:745.317000px;}
.y59{bottom:751.476000px;}
.y58{bottom:762.700500px;}
.y93{bottom:765.640500px;}
.y6{bottom:771.706500px;}
.y33{bottom:775.695000px;}
.y30{bottom:796.020000px;}
.y31{bottom:797.781000px;}
.y57{bottom:800.125500px;}
.y32{bottom:801.957000px;}
.y92{bottom:802.900500px;}
.y56{bottom:820.449000px;}
.y2f{bottom:822.807000px;}
.y55{bottom:840.772500px;}
.y2e{bottom:843.130500px;}
.y5{bottom:850.050000px;}
.y91{bottom:855.573000px;}
.y54{bottom:861.096000px;}
.y90{bottom:875.896500px;}
.y2c{bottom:879.522000px;}
.y4{bottom:886.737000px;}
.y2d{bottom:890.746500px;}
.y53{bottom:890.826000px;}
.y8f{bottom:896.220000px;}
.y2b{bottom:901.816500px;}
.y8e{bottom:916.543500px;}
.y52{bottom:920.556000px;}
.yb1{bottom:921.075000px;}
.y3{bottom:932.203500px;}
.y8d{bottom:936.867000px;}
.y2a{bottom:937.320000px;}
.yb0{bottom:941.398500px;}
.y51{bottom:951.925500px;}
.y29{bottom:958.953000px;}
.yaf{bottom:961.722000px;}
.y2{bottom:965.080500px;}
.y28{bottom:970.177500px;}
.y8c{bottom:974.127000px;}
.y50{bottom:991.720500px;}
.y27{bottom:994.335000px;}
.y1{bottom:997.957500px;}
.yae{bottom:1005.978000px;}
.yad{bottom:1020.658500px;}
.y26{bottom:1025.703000px;}
.yac{bottom:1026.301500px;}
.y8b{bottom:1026.799500px;}
.y4f{bottom:1043.238000px;}
.y25{bottom:1063.561500px;}
.hb{height:24.675533px;}
.h17{height:32.900573px;}
.h4{height:41.125613px;}
.h3{height:41.484266px;}
.h1a{height:41.878950px;}
.h18{height:44.705492px;}
.h5{height:44.831700px;}
.h8{height:45.032765px;}
.h7{height:45.425492px;}
.ha{height:49.090950px;}
.h2{height:49.351066px;}
.hd{height:49.781453px;}
.h6{height:49.892047px;}
.hc{height:50.645453px;}
.h1c{height:53.798400px;}
.h1e{height:56.654573px;}
.h22{height:56.935496px;}
.h1d{height:56.941496px;}
.h24{height:58.957496px;}
.h26{height:59.619450px;}
.h9{height:59.737577px;}
.h16{height:61.092000px;}
.h10{height:65.632950px;}
.h1f{height:65.638950px;}
.h19{height:69.025496px;}
.h1{height:71.065171px;}
.h25{height:71.662950px;}
.h1b{height:71.930400px;}
.h15{height:91.251450px;}
.he{height:93.370950px;}
.h21{height:93.994950px;}
.h23{height:105.115496px;}
.h13{height:109.912950px;}
.h12{height:110.530950px;}
.hf{height:110.536950px;}
.h11{height:138.268950px;}
.h20{height:138.274950px;}
.h14{height:139.808184px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:107.070000px;}
.x54{left:112.284000px;}
.x81{left:116.182500px;}
.x55{left:122.932500px;}
.x19{left:126.979500px;}
.x18{left:128.454000px;}
.x17{left:133.404000px;}
.x3f{left:135.000000px;}
.x80{left:138.369000px;}
.x82{left:143.443500px;}
.x4b{left:146.875500px;}
.x6c{left:147.906000px;}
.x8{left:148.909500px;}
.x50{left:150.433500px;}
.x4f{left:154.719000px;}
.x34{left:168.459000px;}
.x7{left:171.325500px;}
.x1b{left:184.213500px;}
.x35{left:187.567500px;}
.x51{left:190.945500px;}
.x56{left:192.694500px;}
.x43{left:199.836000px;}
.x42{left:204.120000px;}
.x28{left:205.572000px;}
.x66{left:208.036500px;}
.x11{left:210.462000px;}
.x84{left:211.551000px;}
.x36{left:213.013500px;}
.x83{left:215.710500px;}
.x44{left:218.871000px;}
.x67{left:221.226000px;}
.x6d{left:224.008500px;}
.x37{left:225.754500px;}
.x1{left:233.889000px;}
.x7a{left:237.228000px;}
.x29{left:240.802500px;}
.x57{left:246.892500px;}
.x7b{left:253.591500px;}
.xd{left:255.069000px;}
.x58{left:261.825000px;}
.x8c{left:274.765500px;}
.x87{left:278.259000px;}
.xe{left:293.466000px;}
.x6e{left:299.013000px;}
.x30{left:303.159000px;}
.x2f{left:307.443000px;}
.x86{left:310.741500px;}
.x85{left:312.078000px;}
.x31{left:322.170000px;}
.x6f{left:329.523000px;}
.x62{left:332.224500px;}
.x7c{left:339.699000px;}
.x47{left:342.163500px;}
.x70{left:348.588000px;}
.x63{left:351.223500px;}
.x1f{left:354.435000px;}
.x21{left:357.618000px;}
.x2a{left:361.534500px;}
.x20{left:362.952000px;}
.x12{left:371.826000px;}
.x4d{left:374.082000px;}
.x1c{left:376.684500px;}
.x46{left:390.958500px;}
.x1d{left:392.956500px;}
.x5{left:396.495000px;}
.x5e{left:397.837500px;}
.x22{left:400.630500px;}
.x4{left:401.697000px;}
.x13{left:402.813000px;}
.x65{left:409.489500px;}
.x3{left:410.673000px;}
.x64{left:412.444500px;}
.x2b{left:414.528000px;}
.x23{left:415.810500px;}
.x59{left:427.221000px;}
.x6{left:431.197500px;}
.x24{left:438.015000px;}
.x5f{left:441.844500px;}
.x14{left:445.117500px;}
.x38{left:448.681500px;}
.x1a{left:454.909500px;}
.x45{left:456.534000px;}
.x88{left:459.786000px;}
.x4e{left:462.912000px;}
.x4c{left:465.024000px;}
.x48{left:471.141000px;}
.x1e{left:475.591500px;}
.x39{left:478.665000px;}
.x5a{left:482.607000px;}
.x49{left:485.173500px;}
.x26{left:491.853000px;}
.x15{left:494.631000px;}
.x73{left:496.729500px;}
.x25{left:498.267000px;}
.x61{left:500.112000px;}
.x3a{left:501.381000px;}
.x60{left:503.065500px;}
.x74{left:507.502500px;}
.x40{left:515.358000px;}
.x8d{left:520.809000px;}
.x89{left:526.288500px;}
.x8a{left:534.475500px;}
.xc{left:538.141500px;}
.x3b{left:539.143500px;}
.x16{left:542.014500px;}
.x2c{left:549.316500px;}
.x27{left:560.812500px;}
.x2d{left:563.742000px;}
.x41{left:568.377000px;}
.x75{left:573.759000px;}
.xf{left:578.907000px;}
.x3c{left:583.699500px;}
.x5b{left:590.491500px;}
.x76{left:596.892000px;}
.x10{left:630.663000px;}
.x68{left:633.265500px;}
.x3d{left:639.627000px;}
.x52{left:653.881500px;}
.x8e{left:655.377000px;}
.x53{left:662.886000px;}
.x7d{left:668.286000px;}
.x6a{left:671.419500px;}
.x71{left:672.466500px;}
.x79{left:680.797500px;}
.x8f{left:682.168500px;}
.x3e{left:683.937000px;}
.x69{left:687.780000px;}
.x72{left:688.830000px;}
.x77{left:700.663500px;}
.x5c{left:706.282500px;}
.xb{left:724.330500px;}
.xa{left:725.578500px;}
.x8b{left:730.804500px;}
.x7e{left:740.295000px;}
.x7f{left:748.498500px;}
.x5d{left:750.736500px;}
.x4a{left:758.734500px;}
.x9{left:763.695000px;}
.x6b{left:780.673500px;}
.x33{left:798.165000px;}
.x32{left:801.355500px;}
.x2e{left:804.172500px;}
.x78{left:805.801500px;}
@media print{
.v10{vertical-align:-21.114667pt;}
.vb{vertical-align:-18.021333pt;}
.v4{vertical-align:-13.269333pt;}
.v2{vertical-align:-7.968000pt;}
.vf{vertical-align:-6.410667pt;}
.v14{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:10.741333pt;}
.v1{vertical-align:13.744000pt;}
.v6{vertical-align:14.709333pt;}
.v11{vertical-align:16.117333pt;}
.v3{vertical-align:19.280000pt;}
.vd{vertical-align:21.114667pt;}
.v13{vertical-align:22.906667pt;}
.v12{vertical-align:24.021333pt;}
.v5{vertical-align:39.360000pt;}
.vc{vertical-align:49.232000pt;}
.v9{vertical-align:54.064000pt;}
.v7{vertical-align:79.269333pt;}
.v8{vertical-align:82.037333pt;}
.va{vertical-align:121.946667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls5d{letter-spacing:0.000455pt;}
.ls6b{letter-spacing:0.000695pt;}
.ls5{letter-spacing:0.001509pt;}
.ls4f{letter-spacing:0.001911pt;}
.ls63{letter-spacing:0.002017pt;}
.ls45{letter-spacing:0.002310pt;}
.ls1e{letter-spacing:0.003856pt;}
.ls70{letter-spacing:0.005151pt;}
.ls49{letter-spacing:0.012472pt;}
.ls3e{letter-spacing:0.021709pt;}
.ls24{letter-spacing:0.232727pt;}
.ls2a{letter-spacing:0.523637pt;}
.ls28{letter-spacing:0.581819pt;}
.ls1{letter-spacing:1.700284pt;}
.ls59{letter-spacing:1.721549pt;}
.ls2f{letter-spacing:1.861820pt;}
.lsa{letter-spacing:2.094547pt;}
.ls7{letter-spacing:2.651733pt;}
.ls50{letter-spacing:2.653258pt;}
.ls3f{letter-spacing:2.655321pt;}
.ls6c{letter-spacing:2.655362pt;}
.ls37{letter-spacing:2.655733pt;}
.ls56{letter-spacing:2.655975pt;}
.ls5c{letter-spacing:2.658591pt;}
.ls4d{letter-spacing:2.659733pt;}
.ls71{letter-spacing:2.659769pt;}
.ls6e{letter-spacing:2.660654pt;}
.ls1d{letter-spacing:4.712731pt;}
.ls2c{letter-spacing:4.909602pt;}
.ls5a{letter-spacing:5.499392pt;}
.ls4{letter-spacing:5.897859pt;}
.ls3{letter-spacing:5.950993pt;}
.ls0{letter-spacing:6.004127pt;}
.ls13{letter-spacing:6.372337pt;}
.ls55{letter-spacing:6.375733pt;}
.ls15{letter-spacing:6.377661pt;}
.ls2e{letter-spacing:6.574551pt;}
.ls2d{letter-spacing:7.141239pt;}
.ls46{letter-spacing:7.563189pt;}
.ls4e{letter-spacing:7.568522pt;}
.ls6{letter-spacing:8.578245pt;}
.lse{letter-spacing:9.658190pt;}
.ls36{letter-spacing:9.691874pt;}
.ls35{letter-spacing:9.716372pt;}
.ls18{letter-spacing:10.169190pt;}
.ls1c{letter-spacing:11.338972pt;}
.ls5b{letter-spacing:11.955200pt;}
.ls44{letter-spacing:12.354591pt;}
.ls2{letter-spacing:12.752128pt;}
.ls3b{letter-spacing:12.858193pt;}
.ls23{letter-spacing:12.916374pt;}
.ls30{letter-spacing:12.974556pt;}
.ls19{letter-spacing:13.902693pt;}
.lsd{letter-spacing:14.429103pt;}
.ls5e{letter-spacing:14.487285pt;}
.ls10{letter-spacing:14.545467pt;}
.ls4b{letter-spacing:15.010922pt;}
.ls61{letter-spacing:15.069103pt;}
.ls14{letter-spacing:15.234411pt;}
.ls11{letter-spacing:15.353672pt;}
.ls3a{letter-spacing:15.506591pt;}
.ls48{letter-spacing:15.581258pt;}
.ls6d{letter-spacing:16.075119pt;}
.ls43{letter-spacing:16.116377pt;}
.lsb{letter-spacing:16.174559pt;}
.ls52{letter-spacing:16.232741pt;}
.ls1a{letter-spacing:16.311471pt;}
.ls25{letter-spacing:16.407286pt;}
.ls4a{letter-spacing:16.640014pt;}
.ls9{letter-spacing:16.878018pt;}
.ls58{letter-spacing:17.202591pt;}
.ls22{letter-spacing:17.687287pt;}
.ls1f{letter-spacing:17.905772pt;}
.ls51{letter-spacing:18.269106pt;}
.ls16{letter-spacing:18.583247pt;}
.ls53{letter-spacing:18.818591pt;}
.ls47{letter-spacing:18.819608pt;}
.ls69{letter-spacing:18.820654pt;}
.ls20{letter-spacing:18.871105pt;}
.ls4c{letter-spacing:22.112522pt;}
.ls33{letter-spacing:22.387351pt;}
.ls54{letter-spacing:22.532811pt;}
.ls3c{letter-spacing:22.632746pt;}
.ls5f{letter-spacing:22.749110pt;}
.ls68{letter-spacing:23.733855pt;}
.ls29{letter-spacing:24.912411pt;}
.ls2b{letter-spacing:24.953157pt;}
.ls1b{letter-spacing:26.298204pt;}
.ls27{letter-spacing:26.938204pt;}
.ls12{letter-spacing:28.234144pt;}
.ls26{letter-spacing:29.672752pt;}
.lsc{letter-spacing:31.364192pt;}
.ls34{letter-spacing:31.380667pt;}
.ls39{letter-spacing:31.400083pt;}
.ls21{letter-spacing:31.434144pt;}
.ls57{letter-spacing:31.743975pt;}
.ls66{letter-spacing:32.349118pt;}
.ls6f{letter-spacing:37.509855pt;}
.ls67{letter-spacing:58.123685pt;}
.ls60{letter-spacing:65.861873pt;}
.ls65{letter-spacing:66.415975pt;}
.ls6a{letter-spacing:74.356811pt;}
.ls41{letter-spacing:93.886018pt;}
.ls3d{letter-spacing:100.351477pt;}
.ls31{letter-spacing:126.080105pt;}
.ls62{letter-spacing:297.595189pt;}
.ls64{letter-spacing:389.682591pt;}
.ls42{letter-spacing:733.266066pt;}
.ls32{letter-spacing:768.640641pt;}
.ls17{letter-spacing:805.877035pt;}
.ls38{letter-spacing:824.262505pt;}
.lsf{letter-spacing:891.404379pt;}
.ls40{letter-spacing:960.233527pt;}
.ws44{word-spacing:-42.007308pt;}
.ws43{word-spacing:-37.899668pt;}
.ws2f{word-spacing:-29.521250pt;}
.ws3a{word-spacing:-28.241478pt;}
.ws38{word-spacing:-28.183296pt;}
.ws9{word-spacing:-25.738045pt;}
.ws30{word-spacing:-23.470565pt;}
.ws3e{word-spacing:-23.354201pt;}
.ws26{word-spacing:-21.997476pt;}
.ws1e{word-spacing:-21.850744pt;}
.ws51{word-spacing:-21.725109pt;}
.ws2e{word-spacing:-20.764301pt;}
.ws31{word-spacing:-20.761685pt;}
.ws3c{word-spacing:-20.445108pt;}
.ws22{word-spacing:-20.234744pt;}
.ws52{word-spacing:-19.128267pt;}
.ws3f{word-spacing:-16.779650pt;}
.ws3d{word-spacing:-16.162923pt;}
.ws40{word-spacing:-15.270384pt;}
.wsd{word-spacing:-14.760588pt;}
.ws29{word-spacing:-14.545467pt;}
.ws2a{word-spacing:-12.978020pt;}
.ws20{word-spacing:-12.843241pt;}
.ws23{word-spacing:-10.626800pt;}
.ws45{word-spacing:-8.806384pt;}
.ws4b{word-spacing:-6.504733pt;}
.ws18{word-spacing:-6.446551pt;}
.wsc{word-spacing:-5.887232pt;}
.ws1f{word-spacing:-4.051468pt;}
.ws21{word-spacing:-3.246548pt;}
.ws12{word-spacing:-1.687274pt;}
.ws41{word-spacing:-0.581819pt;}
.ws4c{word-spacing:-0.349091pt;}
.ws2d{word-spacing:-0.290909pt;}
.ws5{word-spacing:-0.265669pt;}
.ws16{word-spacing:-0.232727pt;}
.ws28{word-spacing:-0.174546pt;}
.ws6{word-spacing:-0.159402pt;}
.ws10{word-spacing:-0.116364pt;}
.ws14{word-spacing:-0.058182pt;}
.ws39{word-spacing:-0.046545pt;}
.ws0{word-spacing:0.000000pt;}
.ws42{word-spacing:0.011636pt;}
.ws2{word-spacing:0.053134pt;}
.ws37{word-spacing:0.058182pt;}
.ws24{word-spacing:0.116364pt;}
.ws13{word-spacing:0.174546pt;}
.ws1{word-spacing:0.183631pt;}
.ws4{word-spacing:0.212535pt;}
.ws17{word-spacing:0.232727pt;}
.ws19{word-spacing:0.290909pt;}
.ws3b{word-spacing:0.407273pt;}
.ws57{word-spacing:0.465455pt;}
.ws58{word-spacing:0.523637pt;}
.ws59{word-spacing:0.581819pt;}
.ws35{word-spacing:0.640001pt;}
.ws4f{word-spacing:0.814546pt;}
.ws8{word-spacing:0.956410pt;}
.ws15{word-spacing:1.105455pt;}
.ws7{word-spacing:1.275213pt;}
.ws4a{word-spacing:1.291637pt;}
.ws25{word-spacing:1.338183pt;}
.ws55{word-spacing:1.570910pt;}
.ws3{word-spacing:1.594016pt;}
.ws5e{word-spacing:1.745456pt;}
.wsb{word-spacing:2.178489pt;}
.wsa{word-spacing:2.295383pt;}
.ws1c{word-spacing:2.869248pt;}
.ws4d{word-spacing:3.141821pt;}
.ws2c{word-spacing:3.258185pt;}
.wsf{word-spacing:3.374548pt;}
.ws1b{word-spacing:3.490912pt;}
.ws53{word-spacing:3.781821pt;}
.ws5c{word-spacing:3.851640pt;}
.wse{word-spacing:4.675780pt;}
.ws54{word-spacing:4.770913pt;}
.ws33{word-spacing:5.643641pt;}
.ws48{word-spacing:5.701823pt;}
.ws49{word-spacing:5.760005pt;}
.ws56{word-spacing:6.400005pt;}
.ws32{word-spacing:6.574551pt;}
.ws5a{word-spacing:6.981824pt;}
.ws46{word-spacing:7.970916pt;}
.ws34{word-spacing:8.145461pt;}
.ws5d{word-spacing:9.309099pt;}
.ws2b{word-spacing:9.600008pt;}
.ws5b{word-spacing:13.800739pt;}
.ws1a{word-spacing:14.545467pt;}
.ws47{word-spacing:15.604377pt;}
.ws36{word-spacing:42.530945pt;}
.ws27{word-spacing:43.636400pt;}
.ws4e{word-spacing:44.800037pt;}
.ws1d{word-spacing:47.820800pt;}
.ws11{word-spacing:57.384800pt;}
.ws50{word-spacing:226.560189pt;}
._21{margin-left:-7.505461pt;}
._1{margin-left:-6.518898pt;}
._4{margin-left:-5.207119pt;}
._7{margin-left:-4.250709pt;}
._0{margin-left:-3.213541pt;}
._2{margin-left:-1.594027pt;}
._16{width:2.090628pt;}
._11{width:3.258185pt;}
._10{width:5.319467pt;}
._14{width:6.248558pt;}
._13{width:8.087279pt;}
._5{width:12.380191pt;}
._e{width:13.815494pt;}
._6{width:15.674491pt;}
._8{width:16.577766pt;}
._1a{width:17.535858pt;}
._9{width:18.649987pt;}
._a{width:19.872066pt;}
._3{width:21.572350pt;}
._b{width:23.378901pt;}
._18{width:24.610930pt;}
._d{width:26.194996pt;}
._1b{width:29.090933pt;}
._c{width:30.977044pt;}
._15{width:32.115729pt;}
._17{width:42.589126pt;}
._19{width:57.047162pt;}
._12{width:63.761067pt;}
._f{width:76.513067pt;}
._1f{width:115.432823pt;}
._1d{width:131.141927pt;}
._20{width:155.203781pt;}
._1c{width:167.179619pt;}
._1e{width:195.029050pt;}
.fs7{font-size:31.880533pt;}
.fs4{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs6{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:56.149333pt;}
.y4e{bottom:101.078667pt;}
.yab{bottom:107.810667pt;}
.y76{bottom:115.976000pt;}
.y23{bottom:116.653333pt;}
.y4d{bottom:122.998667pt;}
.yaa{bottom:125.876000pt;}
.y75{bottom:136.248000pt;}
.y22{bottom:136.848000pt;}
.y4c{bottom:141.064000pt;}
.y8a{bottom:143.610667pt;}
.ya9{bottom:143.942667pt;}
.y74{bottom:154.313333pt;}
.y21{bottom:154.913333pt;}
.y89{bottom:161.676000pt;}
.y4b{bottom:169.994667pt;}
.ya8{bottom:173.962667pt;}
.y72{bottom:176.104000pt;}
.y88{bottom:179.741333pt;}
.y20{bottom:184.933333pt;}
.y73{bottom:186.082667pt;}
.y4a{bottom:188.060000pt;}
.y71{bottom:195.922667pt;}
.ya7{bottom:203.984000pt;}
.y87{bottom:205.110667pt;}
.y48{bottom:206.126667pt;}
.y49{bottom:209.802667pt;}
.y1f{bottom:214.954667pt;}
.y70{bottom:215.717333pt;}
.ya6{bottom:222.049333pt;}
.y47{bottom:224.192000pt;}
.y1e{bottom:233.020000pt;}
.y6f{bottom:233.784000pt;}
.y86{bottom:241.693333pt;}
.y1d{bottom:251.085333pt;}
.y6e{bottom:251.849333pt;}
.ya5{bottom:252.070667pt;}
.y46{bottom:253.122667pt;}
.y85{bottom:259.760000pt;}
.y1c{bottom:269.152000pt;}
.ya4{bottom:270.136000pt;}
.y45{bottom:271.188000pt;}
.y6d{bottom:279.733333pt;}
.y1b{bottom:287.217333pt;}
.y84{bottom:298.972000pt;}
.ya3{bottom:300.156000pt;}
.y44{bottom:300.773333pt;}
.y1a{bottom:305.282667pt;}
.y83{bottom:317.037333pt;}
.y6c{bottom:318.576000pt;}
.y43{bottom:318.838667pt;}
.y19{bottom:323.348000pt;}
.ya2{bottom:330.177333pt;}
.y82{bottom:335.104000pt;}
.y6b{bottom:336.641333pt;}
.y18{bottom:341.413333pt;}
.y42{bottom:347.769333pt;}
.y6a{bottom:354.706667pt;}
.ya1{bottom:360.197333pt;}
.y81{bottom:365.124000pt;}
.y41{bottom:365.836000pt;}
.y17{bottom:374.533333pt;}
.ya0{bottom:390.218667pt;}
.y69{bottom:393.018667pt;}
.y40{bottom:393.720000pt;}
.y80{bottom:395.145333pt;}
.y9f{bottom:408.284000pt;}
.y67{bottom:411.084000pt;}
.y7f{bottom:413.210667pt;}
.y68{bottom:416.362667pt;}
.y16{bottom:421.353333pt;}
.y7e{bottom:431.276000pt;}
.y3f{bottom:433.374667pt;}
.y9e{bottom:438.305333pt;}
.y66{bottom:438.968000pt;}
.y15{bottom:439.418667pt;}
.y3e{bottom:451.440000pt;}
.y9d{bottom:456.370667pt;}
.y7d{bottom:461.297333pt;}
.y14{bottom:469.440000pt;}
.y3d{bottom:474.938667pt;}
.y65{bottom:477.810667pt;}
.y7c{bottom:479.362667pt;}
.y13{bottom:485.380000pt;}
.y9c{bottom:486.392000pt;}
.y3a{bottom:493.004000pt;}
.y3b{bottom:496.680000pt;}
.y3c{bottom:498.282667pt;}
.y63{bottom:500.429333pt;}
.y12{bottom:501.320000pt;}
.y9b{bottom:504.457333pt;}
.y62{bottom:510.406667pt;}
.y7b{bottom:512.482667pt;}
.y11{bottom:517.260000pt;}
.y64{bottom:520.246667pt;}
.y39{bottom:524.178667pt;}
.y10{bottom:533.200000pt;}
.y9a{bottom:534.477333pt;}
.y37{bottom:542.244000pt;}
.y61{bottom:543.185333pt;}
.y38{bottom:545.921333pt;}
.yf{bottom:549.141333pt;}
.y7a{bottom:559.302667pt;}
.y99{bottom:564.498667pt;}
.ye{bottom:565.081333pt;}
.y60{bottom:565.622667pt;}
.y36{bottom:570.128000pt;}
.y79{bottom:577.368000pt;}
.yd{bottom:581.021333pt;}
.y98{bottom:582.469333pt;}
.y96{bottom:582.564000pt;}
.y5f{bottom:585.441333pt;}
.y97{bottom:585.698667pt;}
.yc{bottom:596.961333pt;}
.y35{bottom:603.778667pt;}
.y5e{bottom:608.380000pt;}
.ya{bottom:612.901333pt;}
.yb{bottom:612.968000pt;}
.y95{bottom:615.684000pt;}
.y78{bottom:623.966667pt;}
.y5d{bottom:626.445333pt;}
.y9{bottom:628.841333pt;}
.y5c{bottom:630.122667pt;}
.y77{bottom:642.032000pt;}
.y5a{bottom:644.510667pt;}
.y8{bottom:644.782667pt;}
.y5b{bottom:648.188000pt;}
.y34{bottom:650.384000pt;}
.y7{bottom:660.722667pt;}
.y94{bottom:662.504000pt;}
.y59{bottom:667.978667pt;}
.y58{bottom:677.956000pt;}
.y93{bottom:680.569333pt;}
.y6{bottom:685.961333pt;}
.y33{bottom:689.506667pt;}
.y30{bottom:707.573333pt;}
.y31{bottom:709.138667pt;}
.y57{bottom:711.222667pt;}
.y32{bottom:712.850667pt;}
.y92{bottom:713.689333pt;}
.y56{bottom:729.288000pt;}
.y2f{bottom:731.384000pt;}
.y55{bottom:747.353333pt;}
.y2e{bottom:749.449333pt;}
.y5{bottom:755.600000pt;}
.y91{bottom:760.509333pt;}
.y54{bottom:765.418667pt;}
.y90{bottom:778.574667pt;}
.y2c{bottom:781.797333pt;}
.y4{bottom:788.210667pt;}
.y2d{bottom:791.774667pt;}
.y53{bottom:791.845333pt;}
.y8f{bottom:796.640000pt;}
.y2b{bottom:801.614667pt;}
.y8e{bottom:814.705333pt;}
.y52{bottom:818.272000pt;}
.yb1{bottom:818.733333pt;}
.y3{bottom:828.625333pt;}
.y8d{bottom:832.770667pt;}
.y2a{bottom:833.173333pt;}
.yb0{bottom:836.798667pt;}
.y51{bottom:846.156000pt;}
.y29{bottom:852.402667pt;}
.yaf{bottom:854.864000pt;}
.y2{bottom:857.849333pt;}
.y28{bottom:862.380000pt;}
.y8c{bottom:865.890667pt;}
.y50{bottom:881.529333pt;}
.y27{bottom:883.853333pt;}
.y1{bottom:887.073333pt;}
.yae{bottom:894.202667pt;}
.yad{bottom:907.252000pt;}
.y26{bottom:911.736000pt;}
.yac{bottom:912.268000pt;}
.y8b{bottom:912.710667pt;}
.y4f{bottom:927.322667pt;}
.y25{bottom:945.388000pt;}
.hb{height:21.933807pt;}
.h17{height:29.244954pt;}
.h4{height:36.556100pt;}
.h3{height:36.874903pt;}
.h1a{height:37.225733pt;}
.h18{height:39.738215pt;}
.h5{height:39.850400pt;}
.h8{height:40.029124pt;}
.h7{height:40.378215pt;}
.ha{height:43.636400pt;}
.h2{height:43.867614pt;}
.hd{height:44.250180pt;}
.h6{height:44.348486pt;}
.hc{height:45.018180pt;}
.h1c{height:47.820800pt;}
.h1e{height:50.359620pt;}
.h22{height:50.609330pt;}
.h1d{height:50.614663pt;}
.h24{height:52.406663pt;}
.h26{height:52.995067pt;}
.h9{height:53.100068pt;}
.h16{height:54.304000pt;}
.h10{height:58.340400pt;}
.h1f{height:58.345733pt;}
.h19{height:61.355997pt;}
.h1{height:63.169041pt;}
.h25{height:63.700400pt;}
.h1b{height:63.938133pt;}
.h15{height:81.112400pt;}
.he{height:82.996400pt;}
.h21{height:83.551067pt;}
.h23{height:93.435997pt;}
.h13{height:97.700400pt;}
.h12{height:98.249733pt;}
.hf{height:98.255067pt;}
.h11{height:122.905733pt;}
.h20{height:122.911067pt;}
.h14{height:124.273941pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:95.173333pt;}
.x54{left:99.808000pt;}
.x81{left:103.273333pt;}
.x55{left:109.273333pt;}
.x19{left:112.870667pt;}
.x18{left:114.181333pt;}
.x17{left:118.581333pt;}
.x3f{left:120.000000pt;}
.x80{left:122.994667pt;}
.x82{left:127.505333pt;}
.x4b{left:130.556000pt;}
.x6c{left:131.472000pt;}
.x8{left:132.364000pt;}
.x50{left:133.718667pt;}
.x4f{left:137.528000pt;}
.x34{left:149.741333pt;}
.x7{left:152.289333pt;}
.x1b{left:163.745333pt;}
.x35{left:166.726667pt;}
.x51{left:169.729333pt;}
.x56{left:171.284000pt;}
.x43{left:177.632000pt;}
.x42{left:181.440000pt;}
.x28{left:182.730667pt;}
.x66{left:184.921333pt;}
.x11{left:187.077333pt;}
.x84{left:188.045333pt;}
.x36{left:189.345333pt;}
.x83{left:191.742667pt;}
.x44{left:194.552000pt;}
.x67{left:196.645333pt;}
.x6d{left:199.118667pt;}
.x37{left:200.670667pt;}
.x1{left:207.901333pt;}
.x7a{left:210.869333pt;}
.x29{left:214.046667pt;}
.x57{left:219.460000pt;}
.x7b{left:225.414667pt;}
.xd{left:226.728000pt;}
.x58{left:232.733333pt;}
.x8c{left:244.236000pt;}
.x87{left:247.341333pt;}
.xe{left:260.858667pt;}
.x6e{left:265.789333pt;}
.x30{left:269.474667pt;}
.x2f{left:273.282667pt;}
.x86{left:276.214667pt;}
.x85{left:277.402667pt;}
.x31{left:286.373333pt;}
.x6f{left:292.909333pt;}
.x62{left:295.310667pt;}
.x7c{left:301.954667pt;}
.x47{left:304.145333pt;}
.x70{left:309.856000pt;}
.x63{left:312.198667pt;}
.x1f{left:315.053333pt;}
.x21{left:317.882667pt;}
.x2a{left:321.364000pt;}
.x20{left:322.624000pt;}
.x12{left:330.512000pt;}
.x4d{left:332.517333pt;}
.x1c{left:334.830667pt;}
.x46{left:347.518667pt;}
.x1d{left:349.294667pt;}
.x5{left:352.440000pt;}
.x5e{left:353.633333pt;}
.x22{left:356.116000pt;}
.x4{left:357.064000pt;}
.x13{left:358.056000pt;}
.x65{left:363.990667pt;}
.x3{left:365.042667pt;}
.x64{left:366.617333pt;}
.x2b{left:368.469333pt;}
.x23{left:369.609333pt;}
.x59{left:379.752000pt;}
.x6{left:383.286667pt;}
.x24{left:389.346667pt;}
.x5f{left:392.750667pt;}
.x14{left:395.660000pt;}
.x38{left:398.828000pt;}
.x1a{left:404.364000pt;}
.x45{left:405.808000pt;}
.x88{left:408.698667pt;}
.x4e{left:411.477333pt;}
.x4c{left:413.354667pt;}
.x48{left:418.792000pt;}
.x1e{left:422.748000pt;}
.x39{left:425.480000pt;}
.x5a{left:428.984000pt;}
.x49{left:431.265333pt;}
.x26{left:437.202667pt;}
.x15{left:439.672000pt;}
.x73{left:441.537333pt;}
.x25{left:442.904000pt;}
.x61{left:444.544000pt;}
.x3a{left:445.672000pt;}
.x60{left:447.169333pt;}
.x74{left:451.113333pt;}
.x40{left:458.096000pt;}
.x8d{left:462.941333pt;}
.x89{left:467.812000pt;}
.x8a{left:475.089333pt;}
.xc{left:478.348000pt;}
.x3b{left:479.238667pt;}
.x16{left:481.790667pt;}
.x2c{left:488.281333pt;}
.x27{left:498.500000pt;}
.x2d{left:501.104000pt;}
.x41{left:505.224000pt;}
.x75{left:510.008000pt;}
.xf{left:514.584000pt;}
.x3c{left:518.844000pt;}
.x5b{left:524.881333pt;}
.x76{left:530.570667pt;}
.x10{left:560.589333pt;}
.x68{left:562.902667pt;}
.x3d{left:568.557333pt;}
.x52{left:581.228000pt;}
.x8e{left:582.557333pt;}
.x53{left:589.232000pt;}
.x7d{left:594.032000pt;}
.x6a{left:596.817333pt;}
.x71{left:597.748000pt;}
.x79{left:605.153333pt;}
.x8f{left:606.372000pt;}
.x3e{left:607.944000pt;}
.x69{left:611.360000pt;}
.x72{left:612.293333pt;}
.x77{left:622.812000pt;}
.x5c{left:627.806667pt;}
.xb{left:643.849333pt;}
.xa{left:644.958667pt;}
.x8b{left:649.604000pt;}
.x7e{left:658.040000pt;}
.x7f{left:665.332000pt;}
.x5d{left:667.321333pt;}
.x4a{left:674.430667pt;}
.x9{left:678.840000pt;}
.x6b{left:693.932000pt;}
.x33{left:709.480000pt;}
.x32{left:712.316000pt;}
.x2e{left:714.820000pt;}
.x78{left:716.268000pt;}
}




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