
    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_4c67984cea4ac1600dcd3d5f.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_791053d28130ef5770172d9a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_2c1050dafd0b91b1bcd09074.woff')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_df61768b849ee75d3917ba37.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_0c2fa2c15bd3eafdaf9e7a99.woff')format("woff");}.ff5{font-family:ff5;line-height:0.851000;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_185b220556d96d5a4d6407a5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.719000;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_effd8d83c8b67b6ca48980b8.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f3643bc54c72b748b5cd6fd5.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_627abdc51359b90135af5240.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_03d42ccefc600430b2b09b40.woff')format("woff");}.ffa{font-family:ffa;line-height:0.711000;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_55b5a4c195604c4cc4376ba8.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_2bcb710acd7fdce052a7b3c6.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_363ba63d016d8eb243e5262d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.897000;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_c52d18af29823fc5936e7182.woff')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_118b723b1581115778822d04.woff')format("woff");}.fff{font-family:fff;line-height:1.400000;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_a127ff63099418b5237716ae.woff')format("woff");}.ff10{font-family:ff10;line-height:0.664000;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_e2c32f40547006a38cb88ee7.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_3cbd58a7e81b3d996e0aeab8.woff')format("woff");}.ff12{font-family:ff12;line-height:0.685000;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_d4e13fa789235f124b246e04.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_6cdb72c466f22574e90e205e.woff')format("woff");}.ff14{font-family:ff14;line-height:0.902000;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_ab3e763293f39cb18aa72af3.woff')format("woff");}.ff15{font-family:ff15;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;}
.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);}
.m15{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);}
.m3{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.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);}
.m14{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);}
.m11{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);}
.m1b{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);}
.m1d{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);}
.m5{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m4{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);}
.ma{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);}
.m17{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);}
.m1f{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);}
.mf{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);}
.mb{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);}
.m7{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);}
.me{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.mc{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);}
.m18{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);}
.m19{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);}
.m10{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);}
.m1e{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);}
.m9{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);}
.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);}
.m20{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);}
.m16{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);}
.md{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m12{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);}
.v2{vertical-align:-21.690000px;}
.v3{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:5.814000px;}
.v8{vertical-align:14.778000px;}
.v6{vertical-align:21.690000px;}
.v1{vertical-align:23.862000px;}
.v5{vertical-align:31.470000px;}
.v4{vertical-align:40.440000px;}
.v7{vertical-align:95.346000px;}
.lse{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000062px;}
.ls1e{letter-spacing:0.000065px;}
.ls13{letter-spacing:0.000564px;}
.ls4{letter-spacing:0.001140px;}
.ls14{letter-spacing:0.002387px;}
.ls9{letter-spacing:0.003269px;}
.ls1d{letter-spacing:0.004200px;}
.ls1c{letter-spacing:0.004893px;}
.ls0{letter-spacing:2.984915px;}
.ls1f{letter-spacing:2.987373px;}
.ls21{letter-spacing:2.988710px;}
.ls7{letter-spacing:2.989140px;}
.ls1{letter-spacing:2.991113px;}
.ls19{letter-spacing:2.993251px;}
.lsb{letter-spacing:2.993373px;}
.ls12{letter-spacing:4.487933px;}
.lsc{letter-spacing:4.489024px;}
.lsd{letter-spacing:7.174200px;}
.ls17{letter-spacing:8.304065px;}
.ls8{letter-spacing:8.305923px;}
.ls1b{letter-spacing:13.278538px;}
.ls6{letter-spacing:13.280338px;}
.ls16{letter-spacing:13.284538px;}
.lsa{letter-spacing:16.271373px;}
.ls20{letter-spacing:16.272710px;}
.ls5{letter-spacing:16.273140px;}
.ls1a{letter-spacing:16.278710px;}
.ls2{letter-spacing:19.595373px;}
.ls18{letter-spacing:20.387373px;}
.ls15{letter-spacing:20.919411px;}
.ls10{letter-spacing:26.999607px;}
.lsf{letter-spacing:27.464387px;}
.ls22{letter-spacing:29.887409px;}
.ls3{letter-spacing:41.214538px;}
.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;}
}
.ws45{word-spacing:-59.775600px;}
.ws3f{word-spacing:-38.937826px;}
.ws42{word-spacing:-29.887800px;}
.ws43{word-spacing:-28.955301px;}
.wsa{word-spacing:-18.221518px;}
.ws5{word-spacing:-17.091752px;}
.ws7d{word-spacing:-15.362329px;}
.ws78{word-spacing:-15.003676px;}
.ws18{word-spacing:-14.943900px;}
.ws38{word-spacing:-14.884124px;}
.ws70{word-spacing:-14.645022px;}
.ws49{word-spacing:-13.688612px;}
.ws9{word-spacing:-13.594856px;}
.ws75{word-spacing:-13.449510px;}
.ws7e{word-spacing:-13.329959px;}
.ws48{word-spacing:-13.090856px;}
.ws3d{word-spacing:-12.612652px;}
.ws12{word-spacing:-11.873307px;}
.ws91{word-spacing:-11.841546px;}
.ws53{word-spacing:-11.775793px;}
.ws8f{word-spacing:-11.721995px;}
.wsf{word-spacing:-11.658113px;}
.wsb{word-spacing:-11.604315px;}
.wsc{word-spacing:-11.550516px;}
.ws3a{word-spacing:-11.417140px;}
.ws72{word-spacing:-11.357364px;}
.ws6{word-spacing:-11.281524px;}
.ws1d{word-spacing:-11.058486px;}
.ws73{word-spacing:-10.998710px;}
.ws61{word-spacing:-10.879159px;}
.ws5f{word-spacing:-10.759608px;}
.ws71{word-spacing:-10.580281px;}
.ws40{word-spacing:-10.525713px;}
.ws41{word-spacing:-10.520506px;}
.ws8{word-spacing:-10.366952px;}
.ws11{word-spacing:-10.259355px;}
.ws7f{word-spacing:-10.221628px;}
.ws32{word-spacing:-10.102076px;}
.ws8e{word-spacing:-9.988503px;}
.ws54{word-spacing:-9.922750px;}
.ws1f{word-spacing:-9.629849px;}
.ws74{word-spacing:-9.564096px;}
.wsd{word-spacing:-9.452379px;}
.ws1c{word-spacing:-9.444545px;}
.ws28{word-spacing:-9.384769px;}
.ws33{word-spacing:-9.324994px;}
.ws4c{word-spacing:-9.271196px;}
.ws2b{word-spacing:-9.265218px;}
.ws29{word-spacing:-9.205442px;}
.ws67{word-spacing:-9.145667px;}
.ws2f{word-spacing:-9.085891px;}
.ws94{word-spacing:-9.052440px;}
.ws2e{word-spacing:-9.026116px;}
.ws2{word-spacing:-8.966340px;}
.ws39{word-spacing:-8.906564px;}
.ws3c{word-spacing:-8.846789px;}
.ws95{word-spacing:-8.813337px;}
.ws2c{word-spacing:-8.787013px;}
.ws57{word-spacing:-8.727238px;}
.ws59{word-spacing:-8.717695px;}
.ws76{word-spacing:-8.669875px;}
.ws20{word-spacing:-8.607686px;}
.ws1b{word-spacing:-8.547911px;}
.ws65{word-spacing:-8.488135px;}
.ws92{word-spacing:-7.761283px;}
.ws36{word-spacing:-7.537703px;}
.ws22{word-spacing:-7.531726px;}
.ws37{word-spacing:-7.497984px;}
.ws26{word-spacing:-7.471950px;}
.ws82{word-spacing:-7.352399px;}
.ws4a{word-spacing:-7.292623px;}
.ws55{word-spacing:-7.173072px;}
.ws51{word-spacing:-6.993745px;}
.ws7{word-spacing:-6.923854px;}
.ws35{word-spacing:-6.874194px;}
.ws85{word-spacing:-6.814418px;}
.ws86{word-spacing:-6.395989px;}
.ws47{word-spacing:-6.336214px;}
.ws2d{word-spacing:-6.097111px;}
.ws88{word-spacing:-6.037336px;}
.ws56{word-spacing:-5.876990px;}
.ws62{word-spacing:-5.738458px;}
.ws64{word-spacing:-5.668314px;}
.ws81{word-spacing:-5.439580px;}
.ws84{word-spacing:-5.080926px;}
.ws80{word-spacing:-5.021150px;}
.ws58{word-spacing:-4.662497px;}
.ws83{word-spacing:-4.542946px;}
.ws6e{word-spacing:-4.303843px;}
.ws52{word-spacing:-4.244068px;}
.ws21{word-spacing:-4.184292px;}
.ws30{word-spacing:-4.019553px;}
.ws4d{word-spacing:-3.885414px;}
.ws69{word-spacing:-3.825638px;}
.ws63{word-spacing:-3.646312px;}
.ws23{word-spacing:-3.287658px;}
.ws8d{word-spacing:-3.174084px;}
.ws24{word-spacing:-3.168107px;}
.ws14{word-spacing:-2.988780px;}
.ws60{word-spacing:-2.749678px;}
.ws8c{word-spacing:-2.510575px;}
.ws90{word-spacing:-2.277450px;}
.ws66{word-spacing:-2.151922px;}
.ws4{word-spacing:-2.135796px;}
.ws7c{word-spacing:-1.972595px;}
.ws4b{word-spacing:-1.853044px;}
.ws3b{word-spacing:-1.554166px;}
.ws31{word-spacing:-1.075961px;}
.ws68{word-spacing:-1.016185px;}
.ws6c{word-spacing:-0.494974px;}
.ws6a{word-spacing:-0.478205px;}
.ws7a{word-spacing:-0.298878px;}
.ws3e{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.053798px;}
.ws46{word-spacing:0.000000px;}
.ws25{word-spacing:0.179327px;}
.ws2a{word-spacing:0.239102px;}
.wse{word-spacing:0.715519px;}
.ws6b{word-spacing:0.946360px;}
.ws1a{word-spacing:1.673717px;}
.ws93{word-spacing:1.755016px;}
.ws6d{word-spacing:2.246718px;}
.ws87{word-spacing:2.809453px;}
.ws16{word-spacing:3.401232px;}
.ws15{word-spacing:4.028785px;}
.ws17{word-spacing:4.064741px;}
.ws19{word-spacing:4.782048px;}
.ws6f{word-spacing:5.379804px;}
.ws27{word-spacing:5.858009px;}
.ws89{word-spacing:6.874194px;}
.ws8b{word-spacing:7.412174px;}
.ws50{word-spacing:16.233519px;}
.ws44{word-spacing:16.557841px;}
.ws4e{word-spacing:16.737168px;}
.ws5a{word-spacing:18.028366px;}
.ws4f{word-spacing:18.157533px;}
.ws10{word-spacing:21.573158px;}
.ws7b{word-spacing:22.356074px;}
.ws34{word-spacing:22.475626px;}
.ws1e{word-spacing:22.535401px;}
.ws1{word-spacing:22.947937px;}
.ws79{word-spacing:29.545020px;}
.ws13{word-spacing:32.996131px;}
.ws8a{word-spacing:37.204611px;}
.ws0{word-spacing:50.068168px;}
.ws5b{word-spacing:71.683079px;}
.ws5c{word-spacing:140.960783px;}
.ws5d{word-spacing:176.238752px;}
.ws5e{word-spacing:207.287955px;}
.ws77{word-spacing:324.032386px;}
._1{margin-left:-11.333482px;}
._4{margin-left:-4.961375px;}
._0{margin-left:-3.730007px;}
._2{margin-left:-1.789152px;}
._8{width:1.014191px;}
._5{width:2.559997px;}
._d{width:5.284172px;}
._c{width:19.424948px;}
._f{width:21.087656px;}
._e{width:24.011130px;}
._6{width:25.862255px;}
._a{width:30.545332px;}
._18{width:32.637478px;}
._9{width:33.775208px;}
._7{width:42.017625px;}
._b{width:61.511099px;}
._17{width:72.487789px;}
._3{width:80.942348px;}
._10{width:123.807533px;}
._12{width:174.640831px;}
._16{width:212.610388px;}
._15{width:238.337870px;}
._13{width:239.724668px;}
._14{width:242.565873px;}
._11{width:302.369654px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y31{bottom:102.766500px;}
.y30{bottom:120.699000px;}
.y2f{bottom:138.631500px;}
.y2e{bottom:156.564000px;}
.y2d{bottom:174.496500px;}
.y59{bottom:181.254000px;}
.ye3{bottom:187.186500px;}
.y58{bottom:191.505000px;}
.y2c{bottom:192.429000px;}
.ye2{bottom:205.119000px;}
.y2b{bottom:210.363000px;}
.y89{bottom:211.291500px;}
.y57{bottom:221.716500px;}
.ye1{bottom:223.051500px;}
.y2a{bottom:228.295500px;}
.y88{bottom:233.089500px;}
.y56{bottom:239.649000px;}
.ye0{bottom:240.984000px;}
.yb4{bottom:246.499500px;}
.y29{bottom:250.198500px;}
.y55{bottom:257.686500px;}
.ydf{bottom:258.916500px;}
.yb3{bottom:264.432000px;}
.y28{bottom:268.131000px;}
.y54{bottom:273.378000px;}
.y53{bottom:275.619000px;}
.y87{bottom:276.325500px;}
.yde{bottom:276.849000px;}
.yb2{bottom:282.366000px;}
.y27{bottom:286.063500px;}
.ydd{bottom:294.783000px;}
.y86{bottom:297.583500px;}
.y52{bottom:297.963000px;}
.yb1{bottom:300.298500px;}
.y26{bottom:303.996000px;}
.y4f{bottom:305.343000px;}
.y85{bottom:311.032500px;}
.ydc{bottom:312.715500px;}
.y4e{bottom:315.594000px;}
.yb0{bottom:318.231000px;}
.y25{bottom:321.928500px;}
.y51{bottom:329.791500px;}
.ydb{bottom:330.648000px;}
.y84{bottom:332.290500px;}
.y50{bottom:334.273500px;}
.yaf{bottom:336.163500px;}
.y24{bottom:339.861000px;}
.yda{bottom:348.513000px;}
.y4d{bottom:353.733000px;}
.yae{bottom:354.096000px;}
.y23{bottom:357.795000px;}
.y83{bottom:365.205000px;}
.yd9{bottom:366.447000px;}
.y4c{bottom:371.665500px;}
.yad{bottom:377.455500px;}
.y82{bottom:378.654000px;}
.y22{bottom:379.696500px;}
.yd8{bottom:384.379500px;}
.y4b{bottom:389.598000px;}
.y21{bottom:397.630500px;}
.yd7{bottom:402.312000px;}
.y81{bottom:405.150000px;}
.yac{bottom:407.263500px;}
.y4a{bottom:407.635500px;}
.y20{bottom:421.642500px;}
.y80{bottom:423.082500px;}
.yd6{bottom:424.681500px;}
.yab{bottom:425.196000px;}
.y49{bottom:425.568000px;}
.y7f{bottom:440.377500px;}
.yaa{bottom:443.130000px;}
.y48{bottom:443.500500px;}
.y1f{bottom:446.767500px;}
.yd5{bottom:451.878000px;}
.y7e{bottom:458.310000px;}
.ya9{bottom:461.062500px;}
.y47{bottom:461.434500px;}
.yd4{bottom:469.810500px;}
.y7d{bottom:475.603500px;}
.y1e{bottom:478.152000px;}
.ya8{bottom:478.995000px;}
.y46{bottom:479.367000px;}
.yd3{bottom:487.743000px;}
.y7c{bottom:493.536000px;}
.y1d{bottom:496.084500px;}
.ya7{bottom:496.927500px;}
.y45{bottom:497.299500px;}
.yd2{bottom:505.675500px;}
.y7b{bottom:511.468500px;}
.y1c{bottom:514.017000px;}
.y44{bottom:515.232000px;}
.ya6{bottom:520.938000px;}
.yd1{bottom:523.609500px;}
.y7a{bottom:529.401000px;}
.y1b{bottom:531.949500px;}
.y43{bottom:533.164500px;}
.yd0{bottom:541.542000px;}
.y79{bottom:547.335000px;}
.y1a{bottom:549.882000px;}
.ya5{bottom:550.746000px;}
.y42{bottom:555.958500px;}
.ycf{bottom:559.474500px;}
.y78{bottom:565.267500px;}
.y19{bottom:567.814500px;}
.ya4{bottom:568.678500px;}
.yce{bottom:577.407000px;}
.y41{bottom:579.003000px;}
.y18{bottom:585.748500px;}
.ya3{bottom:586.611000px;}
.y77{bottom:587.064000px;}
.ycd{bottom:595.339500px;}
.y17{bottom:603.681000px;}
.ya2{bottom:604.543500px;}
.y40{bottom:607.444500px;}
.y76{bottom:610.953000px;}
.ycc{bottom:613.272000px;}
.y16{bottom:621.613500px;}
.ya1{bottom:622.477500px;}
.y3f{bottom:625.378500px;}
.y75{bottom:628.885500px;}
.ycb{bottom:635.641500px;}
.ya0{bottom:640.410000px;}
.y3e{bottom:643.311000px;}
.y15{bottom:646.738500px;}
.y74{bottom:646.818000px;}
.y3d{bottom:661.243500px;}
.yca{bottom:662.838000px;}
.y9f{bottom:663.769500px;}
.y73{bottom:664.111500px;}
.y72{bottom:678.349500px;}
.y3c{bottom:679.176000px;}
.yc9{bottom:680.770500px;}
.y71{bottom:682.044000px;}
.y14{bottom:682.126500px;}
.y9e{bottom:693.577500px;}
.y13{bottom:697.071000px;}
.y3b{bottom:697.108500px;}
.yc8{bottom:698.704500px;}
.y6f{bottom:705.507000px;}
.y9d{bottom:711.510000px;}
.y12{bottom:712.014000px;}
.y6e{bottom:713.053500px;}
.y3a{bottom:715.041000px;}
.yc7{bottom:716.637000px;}
.y70{bottom:718.998000px;}
.y6d{bottom:722.692500px;}
.y11{bottom:727.423500px;}
.y9c{bottom:729.442500px;}
.y39{bottom:732.975000px;}
.yc6{bottom:734.569500px;}
.y10{bottom:742.368000px;}
.y9b{bottom:747.648000px;}
.y6c{bottom:749.367000px;}
.y38{bottom:750.907500px;}
.yc5{bottom:755.275500px;}
.yf{bottom:757.311000px;}
.y9a{bottom:765.580500px;}
.y6b{bottom:767.299500px;}
.y37{bottom:768.840000px;}
.ye{bottom:772.255500px;}
.yc4{bottom:773.208000px;}
.y99{bottom:783.513000px;}
.y6a{bottom:784.593000px;}
.y36{bottom:786.772500px;}
.yd{bottom:787.198500px;}
.yc3{bottom:791.140500px;}
.y98{bottom:801.445500px;}
.yc{bottom:802.143000px;}
.y69{bottom:802.527000px;}
.y35{bottom:804.705000px;}
.yc2{bottom:809.073000px;}
.yb{bottom:817.087500px;}
.y97{bottom:819.378000px;}
.y68{bottom:820.459500px;}
.y34{bottom:822.639000px;}
.yc1{bottom:827.005500px;}
.ya{bottom:832.030500px;}
.y96{bottom:837.312000px;}
.y67{bottom:838.392000px;}
.yc0{bottom:844.939500px;}
.y33{bottom:845.431500px;}
.y9{bottom:846.975000px;}
.y66{bottom:856.324500px;}
.y95{bottom:858.807000px;}
.y8{bottom:861.919500px;}
.ybf{bottom:862.872000px;}
.y32{bottom:873.874500px;}
.y65{bottom:874.257000px;}
.y94{bottom:876.739500px;}
.y7{bottom:876.862500px;}
.ybe{bottom:880.804500px;}
.y6{bottom:891.807000px;}
.y64{bottom:892.189500px;}
.y93{bottom:894.672000px;}
.ybd{bottom:898.737000px;}
.y63{bottom:910.123500px;}
.y92{bottom:912.606000px;}
.yee{bottom:913.965000px;}
.ybc{bottom:919.443000px;}
.yed{bottom:927.415500px;}
.y91{bottom:930.538500px;}
.y62{bottom:931.920000px;}
.ybb{bottom:937.375500px;}
.yec{bottom:940.864500px;}
.y90{bottom:948.471000px;}
.y5{bottom:951.447000px;}
.y61{bottom:953.718000px;}
.yeb{bottom:954.315000px;}
.yba{bottom:959.745000px;}
.y8f{bottom:966.403500px;}
.yea{bottom:967.764000px;}
.y4{bottom:969.141000px;}
.y60{bottom:977.605500px;}
.ye9{bottom:981.213000px;}
.y3{bottom:981.624000px;}
.y8e{bottom:987.900000px;}
.ye8{bottom:994.663500px;}
.y5f{bottom:995.538000px;}
.y8d{bottom:1005.832500px;}
.ye7{bottom:1008.112500px;}
.y5e{bottom:1013.472000px;}
.yb9{bottom:1015.369500px;}
.ye6{bottom:1021.561500px;}
.y8c{bottom:1023.765000px;}
.y2{bottom:1028.698500px;}
.yb8{bottom:1028.818500px;}
.y5d{bottom:1031.404500px;}
.y8b{bottom:1041.697500px;}
.ye5{bottom:1043.550000px;}
.y5c{bottom:1049.337000px;}
.yb7{bottom:1050.076500px;}
.y8a{bottom:1065.057000px;}
.y5b{bottom:1067.269500px;}
.y1{bottom:1070.541000px;}
.ye4{bottom:1071.135000px;}
.yb6{bottom:1085.314500px;}
.y5a{bottom:1089.067500px;}
.yb5{bottom:1098.765000px;}
.hc{height:0.000000px;}
.h8{height:29.038903px;}
.hb{height:29.415488px;}
.h16{height:33.522241px;}
.h3{height:33.665702px;}
.h15{height:33.713523px;}
.h14{height:35.865450px;}
.h9{height:37.180423px;}
.h4{height:40.348800px;}
.h5{height:42.141798px;}
.h7{height:42.799330px;}
.h6{height:44.831700px;}
.h12{height:50.734903px;}
.he{height:51.105488px;}
.h10{height:53.722903px;}
.h13{height:56.919798px;}
.h2{height:57.527702px;}
.h11{height:67.245619px;}
.hd{height:83.145798px;}
.ha{height:85.271700px;}
.hf{height:95.346000px;}
.h1{height:101.427493px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:71.577000px;}
.x7{left:73.438500px;}
.x1{left:79.129500px;}
.x44{left:83.365500px;}
.x46{left:87.034500px;}
.x6{left:88.383000px;}
.xb{left:89.731500px;}
.x3{left:94.822500px;}
.x3c{left:97.203000px;}
.xc{left:103.327500px;}
.x36{left:115.224000px;}
.x28{left:116.541000px;}
.xa{left:118.887000px;}
.x30{left:125.664000px;}
.x47{left:128.133000px;}
.x2a{left:129.247500px;}
.x37{left:145.545000px;}
.x2d{left:154.446000px;}
.xd{left:157.198500px;}
.xf{left:158.329500px;}
.xe{left:164.670000px;}
.x10{left:165.802500px;}
.x45{left:180.939000px;}
.x2{left:183.919500px;}
.x9{left:201.402000px;}
.x11{left:207.748500px;}
.x12{left:215.220000px;}
.x39{left:216.610500px;}
.x31{left:220.437000px;}
.x38{left:226.035000px;}
.x43{left:233.293500px;}
.x3b{left:235.756500px;}
.x32{left:252.652500px;}
.x2b{left:286.473000px;}
.x33{left:288.036000px;}
.x29{left:289.143000px;}
.x2c{left:293.944500px;}
.x34{left:304.738500px;}
.x2e{left:306.274500px;}
.x4{left:312.667500px;}
.x2f{left:321.463500px;}
.x5{left:335.269500px;}
.x3a{left:387.262500px;}
.x3d{left:408.819000px;}
.x3e{left:421.753500px;}
.x35{left:438.357000px;}
.x15{left:466.212000px;}
.x13{left:467.959500px;}
.x49{left:474.310500px;}
.x14{left:482.904000px;}
.x40{left:484.252500px;}
.x4a{left:495.190500px;}
.x17{left:496.347000px;}
.x41{left:497.847000px;}
.x20{left:517.356000px;}
.x21{left:527.079000px;}
.x16{left:543.657000px;}
.x3f{left:551.062500px;}
.x26{left:582.402000px;}
.x1b{left:592.942500px;}
.x19{left:607.774500px;}
.x42{left:611.301000px;}
.x48{left:612.684000px;}
.x1a{left:616.329000px;}
.x1c{left:631.545000px;}
.x1e{left:652.018500px;}
.x1f{left:653.131500px;}
.x1d{left:659.116500px;}
.x27{left:661.219500px;}
.x18{left:676.164000px;}
.x22{left:682.297500px;}
.x23{left:687.445500px;}
.x24{left:794.713500px;}
.x25{left:810.387000px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v3{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:5.168000pt;}
.v8{vertical-align:13.136000pt;}
.v6{vertical-align:19.280000pt;}
.v1{vertical-align:21.210667pt;}
.v5{vertical-align:27.973333pt;}
.v4{vertical-align:35.946667pt;}
.v7{vertical-align:84.752000pt;}
.lse{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000055pt;}
.ls1e{letter-spacing:0.000058pt;}
.ls13{letter-spacing:0.000501pt;}
.ls4{letter-spacing:0.001014pt;}
.ls14{letter-spacing:0.002122pt;}
.ls9{letter-spacing:0.002906pt;}
.ls1d{letter-spacing:0.003733pt;}
.ls1c{letter-spacing:0.004349pt;}
.ls0{letter-spacing:2.653258pt;}
.ls1f{letter-spacing:2.655443pt;}
.ls21{letter-spacing:2.656631pt;}
.ls7{letter-spacing:2.657014pt;}
.ls1{letter-spacing:2.658767pt;}
.ls19{letter-spacing:2.660667pt;}
.lsb{letter-spacing:2.660776pt;}
.ls12{letter-spacing:3.989274pt;}
.lsc{letter-spacing:3.990244pt;}
.lsd{letter-spacing:6.377067pt;}
.ls17{letter-spacing:7.381391pt;}
.ls8{letter-spacing:7.383043pt;}
.ls1b{letter-spacing:11.803145pt;}
.ls6{letter-spacing:11.804745pt;}
.ls16{letter-spacing:11.808479pt;}
.lsa{letter-spacing:14.463443pt;}
.ls20{letter-spacing:14.464631pt;}
.ls5{letter-spacing:14.465014pt;}
.ls1a{letter-spacing:14.469964pt;}
.ls2{letter-spacing:17.418109pt;}
.ls18{letter-spacing:18.122109pt;}
.ls15{letter-spacing:18.595032pt;}
.ls10{letter-spacing:23.999651pt;}
.lsf{letter-spacing:24.412788pt;}
.ls22{letter-spacing:26.566586pt;}
.ls3{letter-spacing:36.635145pt;}
.ws45{word-spacing:-53.133867pt;}
.ws3f{word-spacing:-34.611401pt;}
.ws42{word-spacing:-26.566933pt;}
.ws43{word-spacing:-25.738045pt;}
.wsa{word-spacing:-16.196905pt;}
.ws5{word-spacing:-15.192668pt;}
.ws7d{word-spacing:-13.655404pt;}
.ws78{word-spacing:-13.336601pt;}
.ws18{word-spacing:-13.283467pt;}
.ws38{word-spacing:-13.230333pt;}
.ws70{word-spacing:-13.017797pt;}
.ws49{word-spacing:-12.167655pt;}
.ws9{word-spacing:-12.084316pt;}
.ws75{word-spacing:-11.955120pt;}
.ws7e{word-spacing:-11.848852pt;}
.ws48{word-spacing:-11.636317pt;}
.ws3d{word-spacing:-11.211246pt;}
.ws12{word-spacing:-10.554051pt;}
.ws91{word-spacing:-10.525819pt;}
.ws53{word-spacing:-10.467372pt;}
.ws8f{word-spacing:-10.419551pt;}
.wsf{word-spacing:-10.362767pt;}
.wsb{word-spacing:-10.314947pt;}
.wsc{word-spacing:-10.267126pt;}
.ws3a{word-spacing:-10.148569pt;}
.ws72{word-spacing:-10.095435pt;}
.ws6{word-spacing:-10.028022pt;}
.ws1d{word-spacing:-9.829765pt;}
.ws73{word-spacing:-9.776631pt;}
.ws61{word-spacing:-9.670364pt;}
.ws5f{word-spacing:-9.564096pt;}
.ws71{word-spacing:-9.404694pt;}
.ws40{word-spacing:-9.356190pt;}
.ws41{word-spacing:-9.351561pt;}
.ws8{word-spacing:-9.215068pt;}
.ws11{word-spacing:-9.119427pt;}
.ws7f{word-spacing:-9.085891pt;}
.ws32{word-spacing:-8.979623pt;}
.ws8e{word-spacing:-8.878669pt;}
.ws54{word-spacing:-8.820222pt;}
.ws1f{word-spacing:-8.559866pt;}
.ws74{word-spacing:-8.501419pt;}
.wsd{word-spacing:-8.402115pt;}
.ws1c{word-spacing:-8.395151pt;}
.ws28{word-spacing:-8.342017pt;}
.ws33{word-spacing:-8.288883pt;}
.ws4c{word-spacing:-8.241063pt;}
.ws2b{word-spacing:-8.235749pt;}
.ws29{word-spacing:-8.182615pt;}
.ws67{word-spacing:-8.129482pt;}
.ws2f{word-spacing:-8.076348pt;}
.ws94{word-spacing:-8.046613pt;}
.ws2e{word-spacing:-8.023214pt;}
.ws2{word-spacing:-7.970080pt;}
.ws39{word-spacing:-7.916946pt;}
.ws3c{word-spacing:-7.863812pt;}
.ws95{word-spacing:-7.834077pt;}
.ws2c{word-spacing:-7.810678pt;}
.ws57{word-spacing:-7.757545pt;}
.ws59{word-spacing:-7.749063pt;}
.ws76{word-spacing:-7.706555pt;}
.ws20{word-spacing:-7.651277pt;}
.ws1b{word-spacing:-7.598143pt;}
.ws65{word-spacing:-7.545009pt;}
.ws92{word-spacing:-6.898919pt;}
.ws36{word-spacing:-6.700181pt;}
.ws22{word-spacing:-6.694867pt;}
.ws37{word-spacing:-6.664875pt;}
.ws26{word-spacing:-6.641733pt;}
.ws82{word-spacing:-6.535466pt;}
.ws4a{word-spacing:-6.482332pt;}
.ws55{word-spacing:-6.376064pt;}
.ws51{word-spacing:-6.216662pt;}
.ws7{word-spacing:-6.154537pt;}
.ws35{word-spacing:-6.110395pt;}
.ws85{word-spacing:-6.057261pt;}
.ws86{word-spacing:-5.685324pt;}
.ws47{word-spacing:-5.632190pt;}
.ws2d{word-spacing:-5.419654pt;}
.ws88{word-spacing:-5.366521pt;}
.ws56{word-spacing:-5.223991pt;}
.ws62{word-spacing:-5.100851pt;}
.ws64{word-spacing:-5.038501pt;}
.ws81{word-spacing:-4.835182pt;}
.ws84{word-spacing:-4.516379pt;}
.ws80{word-spacing:-4.463245pt;}
.ws58{word-spacing:-4.144442pt;}
.ws83{word-spacing:-4.038174pt;}
.ws6e{word-spacing:-3.825638pt;}
.ws52{word-spacing:-3.772505pt;}
.ws21{word-spacing:-3.719371pt;}
.ws30{word-spacing:-3.572936pt;}
.ws4d{word-spacing:-3.453701pt;}
.ws69{word-spacing:-3.400567pt;}
.ws63{word-spacing:-3.241166pt;}
.ws23{word-spacing:-2.922363pt;}
.ws8d{word-spacing:-2.821408pt;}
.ws24{word-spacing:-2.816095pt;}
.ws14{word-spacing:-2.656693pt;}
.ws60{word-spacing:-2.444158pt;}
.ws8c{word-spacing:-2.231622pt;}
.ws90{word-spacing:-2.024400pt;}
.ws66{word-spacing:-1.912819pt;}
.ws4{word-spacing:-1.898486pt;}
.ws7c{word-spacing:-1.753418pt;}
.ws4b{word-spacing:-1.647150pt;}
.ws3b{word-spacing:-1.381481pt;}
.ws31{word-spacing:-0.956410pt;}
.ws68{word-spacing:-0.903276pt;}
.ws6c{word-spacing:-0.439977pt;}
.ws6a{word-spacing:-0.425071pt;}
.ws7a{word-spacing:-0.265669pt;}
.ws3e{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.047821pt;}
.ws46{word-spacing:0.000000pt;}
.ws25{word-spacing:0.159402pt;}
.ws2a{word-spacing:0.212535pt;}
.wse{word-spacing:0.636017pt;}
.ws6b{word-spacing:0.841208pt;}
.ws1a{word-spacing:1.487748pt;}
.ws93{word-spacing:1.560014pt;}
.ws6d{word-spacing:1.997083pt;}
.ws87{word-spacing:2.497292pt;}
.ws16{word-spacing:3.023317pt;}
.ws15{word-spacing:3.581143pt;}
.ws17{word-spacing:3.613103pt;}
.ws19{word-spacing:4.250709pt;}
.ws6f{word-spacing:4.782048pt;}
.ws27{word-spacing:5.207119pt;}
.ws89{word-spacing:6.110395pt;}
.ws8b{word-spacing:6.588599pt;}
.ws50{word-spacing:14.429794pt;}
.ws44{word-spacing:14.718081pt;}
.ws4e{word-spacing:14.877483pt;}
.ws5a{word-spacing:16.025214pt;}
.ws4f{word-spacing:16.140029pt;}
.ws10{word-spacing:19.176141pt;}
.ws7b{word-spacing:19.872066pt;}
.ws34{word-spacing:19.978334pt;}
.ws1e{word-spacing:20.031468pt;}
.ws1{word-spacing:20.398166pt;}
.ws79{word-spacing:26.262240pt;}
.ws13{word-spacing:29.329894pt;}
.ws8a{word-spacing:33.070766pt;}
.ws0{word-spacing:44.505038pt;}
.ws5b{word-spacing:63.718293pt;}
.ws5c{word-spacing:125.298473pt;}
.ws5d{word-spacing:156.656668pt;}
.ws5e{word-spacing:184.255960pt;}
.ws77{word-spacing:288.028787pt;}
._1{margin-left:-10.074206pt;}
._4{margin-left:-4.410111pt;}
._0{margin-left:-3.315562pt;}
._2{margin-left:-1.590357pt;}
._8{width:0.901503pt;}
._5{width:2.275553pt;}
._d{width:4.697042pt;}
._c{width:17.266620pt;}
._f{width:18.744583pt;}
._e{width:21.343227pt;}
._6{width:22.988671pt;}
._a{width:27.151406pt;}
._18{width:29.011091pt;}
._9{width:30.022407pt;}
._7{width:37.349000pt;}
._b{width:54.676533pt;}
._17{width:64.433590pt;}
._3{width:71.948754pt;}
._10{width:110.051141pt;}
._12{width:155.236294pt;}
._16{width:188.987011pt;}
._15{width:211.855885pt;}
._13{width:213.088594pt;}
._14{width:215.614109pt;}
._11{width:268.773026pt;}
.fs5{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:91.348000pt;}
.y30{bottom:107.288000pt;}
.y2f{bottom:123.228000pt;}
.y2e{bottom:139.168000pt;}
.y2d{bottom:155.108000pt;}
.y59{bottom:161.114667pt;}
.ye3{bottom:166.388000pt;}
.y58{bottom:170.226667pt;}
.y2c{bottom:171.048000pt;}
.ye2{bottom:182.328000pt;}
.y2b{bottom:186.989333pt;}
.y89{bottom:187.814667pt;}
.y57{bottom:197.081333pt;}
.ye1{bottom:198.268000pt;}
.y2a{bottom:202.929333pt;}
.y88{bottom:207.190667pt;}
.y56{bottom:213.021333pt;}
.ye0{bottom:214.208000pt;}
.yb4{bottom:219.110667pt;}
.y29{bottom:222.398667pt;}
.y55{bottom:229.054667pt;}
.ydf{bottom:230.148000pt;}
.yb3{bottom:235.050667pt;}
.y28{bottom:238.338667pt;}
.y54{bottom:243.002667pt;}
.y53{bottom:244.994667pt;}
.y87{bottom:245.622667pt;}
.yde{bottom:246.088000pt;}
.yb2{bottom:250.992000pt;}
.y27{bottom:254.278667pt;}
.ydd{bottom:262.029333pt;}
.y86{bottom:264.518667pt;}
.y52{bottom:264.856000pt;}
.yb1{bottom:266.932000pt;}
.y26{bottom:270.218667pt;}
.y4f{bottom:271.416000pt;}
.y85{bottom:276.473333pt;}
.ydc{bottom:277.969333pt;}
.y4e{bottom:280.528000pt;}
.yb0{bottom:282.872000pt;}
.y25{bottom:286.158667pt;}
.y51{bottom:293.148000pt;}
.ydb{bottom:293.909333pt;}
.y84{bottom:295.369333pt;}
.y50{bottom:297.132000pt;}
.yaf{bottom:298.812000pt;}
.y24{bottom:302.098667pt;}
.yda{bottom:309.789333pt;}
.y4d{bottom:314.429333pt;}
.yae{bottom:314.752000pt;}
.y23{bottom:318.040000pt;}
.y83{bottom:324.626667pt;}
.yd9{bottom:325.730667pt;}
.y4c{bottom:330.369333pt;}
.yad{bottom:335.516000pt;}
.y82{bottom:336.581333pt;}
.y22{bottom:337.508000pt;}
.yd8{bottom:341.670667pt;}
.y4b{bottom:346.309333pt;}
.y21{bottom:353.449333pt;}
.yd7{bottom:357.610667pt;}
.y81{bottom:360.133333pt;}
.yac{bottom:362.012000pt;}
.y4a{bottom:362.342667pt;}
.y20{bottom:374.793333pt;}
.y80{bottom:376.073333pt;}
.yd6{bottom:377.494667pt;}
.yab{bottom:377.952000pt;}
.y49{bottom:378.282667pt;}
.y7f{bottom:391.446667pt;}
.yaa{bottom:393.893333pt;}
.y48{bottom:394.222667pt;}
.y1f{bottom:397.126667pt;}
.yd5{bottom:401.669333pt;}
.y7e{bottom:407.386667pt;}
.ya9{bottom:409.833333pt;}
.y47{bottom:410.164000pt;}
.yd4{bottom:417.609333pt;}
.y7d{bottom:422.758667pt;}
.y1e{bottom:425.024000pt;}
.ya8{bottom:425.773333pt;}
.y46{bottom:426.104000pt;}
.yd3{bottom:433.549333pt;}
.y7c{bottom:438.698667pt;}
.y1d{bottom:440.964000pt;}
.ya7{bottom:441.713333pt;}
.y45{bottom:442.044000pt;}
.yd2{bottom:449.489333pt;}
.y7b{bottom:454.638667pt;}
.y1c{bottom:456.904000pt;}
.y44{bottom:457.984000pt;}
.ya6{bottom:463.056000pt;}
.yd1{bottom:465.430667pt;}
.y7a{bottom:470.578667pt;}
.y1b{bottom:472.844000pt;}
.y43{bottom:473.924000pt;}
.yd0{bottom:481.370667pt;}
.y79{bottom:486.520000pt;}
.y1a{bottom:488.784000pt;}
.ya5{bottom:489.552000pt;}
.y42{bottom:494.185333pt;}
.ycf{bottom:497.310667pt;}
.y78{bottom:502.460000pt;}
.y19{bottom:504.724000pt;}
.ya4{bottom:505.492000pt;}
.yce{bottom:513.250667pt;}
.y41{bottom:514.669333pt;}
.y18{bottom:520.665333pt;}
.ya3{bottom:521.432000pt;}
.y77{bottom:521.834667pt;}
.ycd{bottom:529.190667pt;}
.y17{bottom:536.605333pt;}
.ya2{bottom:537.372000pt;}
.y40{bottom:539.950667pt;}
.y76{bottom:543.069333pt;}
.ycc{bottom:545.130667pt;}
.y16{bottom:552.545333pt;}
.ya1{bottom:553.313333pt;}
.y3f{bottom:555.892000pt;}
.y75{bottom:559.009333pt;}
.ycb{bottom:565.014667pt;}
.ya0{bottom:569.253333pt;}
.y3e{bottom:571.832000pt;}
.y15{bottom:574.878667pt;}
.y74{bottom:574.949333pt;}
.y3d{bottom:587.772000pt;}
.yca{bottom:589.189333pt;}
.y9f{bottom:590.017333pt;}
.y73{bottom:590.321333pt;}
.y72{bottom:602.977333pt;}
.y3c{bottom:603.712000pt;}
.yc9{bottom:605.129333pt;}
.y71{bottom:606.261333pt;}
.y14{bottom:606.334667pt;}
.y9e{bottom:616.513333pt;}
.y13{bottom:619.618667pt;}
.y3b{bottom:619.652000pt;}
.yc8{bottom:621.070667pt;}
.y6f{bottom:627.117333pt;}
.y9d{bottom:632.453333pt;}
.y12{bottom:632.901333pt;}
.y6e{bottom:633.825333pt;}
.y3a{bottom:635.592000pt;}
.yc7{bottom:637.010667pt;}
.y70{bottom:639.109333pt;}
.y6d{bottom:642.393333pt;}
.y11{bottom:646.598667pt;}
.y9c{bottom:648.393333pt;}
.y39{bottom:651.533333pt;}
.yc6{bottom:652.950667pt;}
.y10{bottom:659.882667pt;}
.y9b{bottom:664.576000pt;}
.y6c{bottom:666.104000pt;}
.y38{bottom:667.473333pt;}
.yc5{bottom:671.356000pt;}
.yf{bottom:673.165333pt;}
.y9a{bottom:680.516000pt;}
.y6b{bottom:682.044000pt;}
.y37{bottom:683.413333pt;}
.ye{bottom:686.449333pt;}
.yc4{bottom:687.296000pt;}
.y99{bottom:696.456000pt;}
.y6a{bottom:697.416000pt;}
.y36{bottom:699.353333pt;}
.yd{bottom:699.732000pt;}
.yc3{bottom:703.236000pt;}
.y98{bottom:712.396000pt;}
.yc{bottom:713.016000pt;}
.y69{bottom:713.357333pt;}
.y35{bottom:715.293333pt;}
.yc2{bottom:719.176000pt;}
.yb{bottom:726.300000pt;}
.y97{bottom:728.336000pt;}
.y68{bottom:729.297333pt;}
.y34{bottom:731.234667pt;}
.yc1{bottom:735.116000pt;}
.ya{bottom:739.582667pt;}
.y96{bottom:744.277333pt;}
.y67{bottom:745.237333pt;}
.yc0{bottom:751.057333pt;}
.y33{bottom:751.494667pt;}
.y9{bottom:752.866667pt;}
.y66{bottom:761.177333pt;}
.y95{bottom:763.384000pt;}
.y8{bottom:766.150667pt;}
.ybf{bottom:766.997333pt;}
.y32{bottom:776.777333pt;}
.y65{bottom:777.117333pt;}
.y94{bottom:779.324000pt;}
.y7{bottom:779.433333pt;}
.ybe{bottom:782.937333pt;}
.y6{bottom:792.717333pt;}
.y64{bottom:793.057333pt;}
.y93{bottom:795.264000pt;}
.ybd{bottom:798.877333pt;}
.y63{bottom:808.998667pt;}
.y92{bottom:811.205333pt;}
.yee{bottom:812.413333pt;}
.ybc{bottom:817.282667pt;}
.yed{bottom:824.369333pt;}
.y91{bottom:827.145333pt;}
.y62{bottom:828.373333pt;}
.ybb{bottom:833.222667pt;}
.yec{bottom:836.324000pt;}
.y90{bottom:843.085333pt;}
.y5{bottom:845.730667pt;}
.y61{bottom:847.749333pt;}
.yeb{bottom:848.280000pt;}
.yba{bottom:853.106667pt;}
.y8f{bottom:859.025333pt;}
.yea{bottom:860.234667pt;}
.y4{bottom:861.458667pt;}
.y60{bottom:868.982667pt;}
.ye9{bottom:872.189333pt;}
.y3{bottom:872.554667pt;}
.y8e{bottom:878.133333pt;}
.ye8{bottom:884.145333pt;}
.y5f{bottom:884.922667pt;}
.y8d{bottom:894.073333pt;}
.ye7{bottom:896.100000pt;}
.y5e{bottom:900.864000pt;}
.yb9{bottom:902.550667pt;}
.ye6{bottom:908.054667pt;}
.y8c{bottom:910.013333pt;}
.y2{bottom:914.398667pt;}
.yb8{bottom:914.505333pt;}
.y5d{bottom:916.804000pt;}
.y8b{bottom:925.953333pt;}
.ye5{bottom:927.600000pt;}
.y5c{bottom:932.744000pt;}
.yb7{bottom:933.401333pt;}
.y8a{bottom:946.717333pt;}
.y5b{bottom:948.684000pt;}
.y1{bottom:951.592000pt;}
.ye4{bottom:952.120000pt;}
.yb6{bottom:964.724000pt;}
.y5a{bottom:968.060000pt;}
.yb5{bottom:976.680000pt;}
.hc{height:0.000000pt;}
.h8{height:25.812358pt;}
.hb{height:26.147101pt;}
.h16{height:29.797547pt;}
.h3{height:29.925069pt;}
.h15{height:29.967576pt;}
.h14{height:31.880400pt;}
.h9{height:33.049265pt;}
.h4{height:35.865600pt;}
.h5{height:37.459376pt;}
.h7{height:38.043849pt;}
.h6{height:39.850400pt;}
.h12{height:45.097692pt;}
.he{height:45.427101pt;}
.h10{height:47.753692pt;}
.h13{height:50.595376pt;}
.h2{height:51.135735pt;}
.h11{height:59.773884pt;}
.hd{height:73.907376pt;}
.ha{height:75.797067pt;}
.hf{height:84.752000pt;}
.h1{height:90.157771pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:63.624000pt;}
.x7{left:65.278667pt;}
.x1{left:70.337333pt;}
.x44{left:74.102667pt;}
.x46{left:77.364000pt;}
.x6{left:78.562667pt;}
.xb{left:79.761333pt;}
.x3{left:84.286667pt;}
.x3c{left:86.402667pt;}
.xc{left:91.846667pt;}
.x36{left:102.421333pt;}
.x28{left:103.592000pt;}
.xa{left:105.677333pt;}
.x30{left:111.701333pt;}
.x47{left:113.896000pt;}
.x2a{left:114.886667pt;}
.x37{left:129.373333pt;}
.x2d{left:137.285333pt;}
.xd{left:139.732000pt;}
.xf{left:140.737333pt;}
.xe{left:146.373333pt;}
.x10{left:147.380000pt;}
.x45{left:160.834667pt;}
.x2{left:163.484000pt;}
.x9{left:179.024000pt;}
.x11{left:184.665333pt;}
.x12{left:191.306667pt;}
.x39{left:192.542667pt;}
.x31{left:195.944000pt;}
.x38{left:200.920000pt;}
.x43{left:207.372000pt;}
.x3b{left:209.561333pt;}
.x32{left:224.580000pt;}
.x2b{left:254.642667pt;}
.x33{left:256.032000pt;}
.x29{left:257.016000pt;}
.x2c{left:261.284000pt;}
.x34{left:270.878667pt;}
.x2e{left:272.244000pt;}
.x4{left:277.926667pt;}
.x2f{left:285.745333pt;}
.x5{left:298.017333pt;}
.x3a{left:344.233333pt;}
.x3d{left:363.394667pt;}
.x3e{left:374.892000pt;}
.x35{left:389.650667pt;}
.x15{left:414.410667pt;}
.x13{left:415.964000pt;}
.x49{left:421.609333pt;}
.x14{left:429.248000pt;}
.x40{left:430.446667pt;}
.x4a{left:440.169333pt;}
.x17{left:441.197333pt;}
.x41{left:442.530667pt;}
.x20{left:459.872000pt;}
.x21{left:468.514667pt;}
.x16{left:483.250667pt;}
.x3f{left:489.833333pt;}
.x26{left:517.690667pt;}
.x1b{left:527.060000pt;}
.x19{left:540.244000pt;}
.x42{left:543.378667pt;}
.x48{left:544.608000pt;}
.x1a{left:547.848000pt;}
.x1c{left:561.373333pt;}
.x1e{left:579.572000pt;}
.x1f{left:580.561333pt;}
.x1d{left:585.881333pt;}
.x27{left:587.750667pt;}
.x18{left:601.034667pt;}
.x22{left:606.486667pt;}
.x23{left:611.062667pt;}
.x24{left:706.412000pt;}
.x25{left:720.344000pt;}
}




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