
    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_e4597f6d9d81650677b68d12.woff')format("woff");}.ff1{font-family:ff1;line-height:1.010000;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_53b9ce9efb3cfbec3871e661.woff')format("woff");}.ff2{font-family:ff2;line-height:0.733000;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_891248dc9b5606f1ab94a6ed.woff')format("woff");}.ff3{font-family:ff3;line-height:1.063000;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_0769c950626d2db6e56837b1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_33a7cef2e8ae537fb51ce982.woff')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_11308c51e4bc6667c130aa4b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.713867;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_d64832ef8045e35ca1db6dfb.woff')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_13642566429caefb5bed7794.woff')format("woff");}.ff8{font-family:ff8;line-height:0.735000;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_f2932b65e8ecd9ec5e2913b9.woff')format("woff");}.ff9{font-family:ff9;line-height:0.714000;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_13642566429caefb5bed7794.woff')format("woff");}.ffa{font-family:ffa;line-height:0.735000;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_201e883feb22262128a8b6cf.woff')format("woff");}.ffb{font-family:ffb;line-height:1.004000;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_5fb8ae73896fdc04a4aecd3b.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_00626dcb4951a8fe784e5ed2.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3ccb9485718ba6be7a60ebdc.woff')format("woff");}.ffe{font-family:ffe;line-height:0.854004;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;}
.m1d{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m64{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m53{transform:matrix(0.245033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245033,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.245427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245427,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.245565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245565,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.245602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245602,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.245605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245605,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.245868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245868,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.246047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246047,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.246668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246668,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.246670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246670,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.246808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246808,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.246885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246885,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.247298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247298,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247763,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247908,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248220,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.248272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248272,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.248465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248465,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248813,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249890,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);}
.m14{transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250304,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251002,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.251135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251135,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251210,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.251304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251304,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.251547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251547,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.251570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251570,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.251643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251643,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251787,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.251910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251910,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252095,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.252297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252297,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.252363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252363,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252437,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252628,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252629,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.252643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252643,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252907,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.253195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253195,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.253323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253323,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253655,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253680,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.253765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253765,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.253805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253805,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254073,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.254258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254258,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.254260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254260,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.254305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254305,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254308,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254617,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m1e{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls1f{letter-spacing:-0.300000px;}
.ls20{letter-spacing:-0.060000px;}
.ls4{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.120000px;}
.ls28{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.446850px;}
.ls19{letter-spacing:0.507672px;}
.ls26{letter-spacing:0.699600px;}
.ls17{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.767249px;}
.ls1e{letter-spacing:0.776467px;}
.ls16{letter-spacing:0.780000px;}
.ls25{letter-spacing:0.839520px;}
.ls23{letter-spacing:0.840000px;}
.ls18{letter-spacing:0.900000px;}
.ls27{letter-spacing:0.944460px;}
.lsc{letter-spacing:0.951946px;}
.ls1d{letter-spacing:0.960000px;}
.ls10{letter-spacing:1.020000px;}
.lsf{letter-spacing:1.044929px;}
.ls3{letter-spacing:1.080000px;}
.ls8{letter-spacing:1.140000px;}
.ls14{letter-spacing:1.145321px;}
.ls5{letter-spacing:1.200000px;}
.ls12{letter-spacing:1.251186px;}
.ls6{letter-spacing:1.260000px;}
.ls7{letter-spacing:1.320000px;}
.lsd{letter-spacing:1.380000px;}
.ls2{letter-spacing:1.440000px;}
.ls1b{letter-spacing:1.500000px;}
.ls11{letter-spacing:1.560000px;}
.lsb{letter-spacing:1.620000px;}
.ls1c{letter-spacing:1.680000px;}
.ls21{letter-spacing:1.740000px;}
.lse{letter-spacing:1.800000px;}
.lsa{letter-spacing:1.920000px;}
.ls9{letter-spacing:1.980000px;}
.ls22{letter-spacing:2.280000px;}
.ls0{letter-spacing:2.880000px;}
.ls15{letter-spacing:3.338141px;}
.ls1{letter-spacing:3.840000px;}
.ls29{letter-spacing:395.317800px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-58.080000px;}
.ws9{word-spacing:-29.653108px;}
.ws4{word-spacing:-29.040000px;}
.ws27{word-spacing:-21.780000px;}
.ws1c{word-spacing:-16.800000px;}
.ws1d{word-spacing:-16.500000px;}
.ws34{word-spacing:-16.380000px;}
.ws30{word-spacing:-14.940000px;}
.ws1e{word-spacing:-9.871267px;}
.ws8{word-spacing:-9.094800px;}
.ws31{word-spacing:-9.072000px;}
.ws1{word-spacing:-7.488000px;}
.ws26{word-spacing:-2.880000px;}
.wse{word-spacing:-2.340000px;}
.ws2b{word-spacing:-2.280000px;}
.wsd{word-spacing:-2.220000px;}
.ws11{word-spacing:-1.980000px;}
.ws13{word-spacing:-1.920000px;}
.ws17{word-spacing:-1.800000px;}
.ws25{word-spacing:-1.740000px;}
.ws24{word-spacing:-1.680000px;}
.ws14{word-spacing:-1.620000px;}
.ws19{word-spacing:-1.560000px;}
.ws1f{word-spacing:-1.500000px;}
.ws3{word-spacing:-1.440000px;}
.ws15{word-spacing:-1.380000px;}
.ws12{word-spacing:-1.320000px;}
.ws16{word-spacing:-1.260000px;}
.ws1a{word-spacing:-1.251186px;}
.ws10{word-spacing:-1.200000px;}
.wsf{word-spacing:-1.140000px;}
.ws5{word-spacing:-1.080000px;}
.ws18{word-spacing:-1.020000px;}
.ws2{word-spacing:-0.960000px;}
.ws2f{word-spacing:-0.944460px;}
.ws2a{word-spacing:-0.900000px;}
.ws2c{word-spacing:-0.840000px;}
.ws2d{word-spacing:-0.839520px;}
.ws20{word-spacing:-0.780000px;}
.ws0{word-spacing:-0.720000px;}
.ws2e{word-spacing:-0.699600px;}
.ws1b{word-spacing:-0.446850px;}
.ws33{word-spacing:-0.360000px;}
.ws32{word-spacing:-0.180000px;}
.ws22{word-spacing:-0.120000px;}
.wsa{word-spacing:-0.016087px;}
.ws6{word-spacing:0.000000px;}
.ws23{word-spacing:0.060000px;}
.ws21{word-spacing:0.300000px;}
.ws29{word-spacing:0.720000px;}
.wsb{word-spacing:1.860000px;}
.wsc{word-spacing:2.280000px;}
.ws28{word-spacing:2.340000px;}
._10{margin-left:-15.840000px;}
._6{margin-left:-11.923200px;}
._0{margin-left:-9.792000px;}
._1{margin-left:-7.296000px;}
._5{margin-left:-5.376000px;}
._11{margin-left:-4.344000px;}
._4{margin-left:-3.264000px;}
._2{margin-left:-1.728000px;}
._7{width:1.080000px;}
._9{width:2.657400px;}
._a{width:3.726000px;}
._b{width:5.244000px;}
._3{width:6.528000px;}
._12{width:7.824000px;}
._f{width:11.130000px;}
._13{width:40.642800px;}
._15{width:43.036800px;}
._14{width:48.958800px;}
._e{width:55.931400px;}
._d{width:58.535400px;}
._c{width:64.457400px;}
._8{width:174.636000px;}
.fc5{color:rgb(171,181,199);}
.fc4{color:rgb(42,76,156);}
.fc3{color:transparent;}
.fc2{color:rgb(71,74,70);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:16.086600px;}
.fsa{font-size:25.023600px;}
.fs6{font-size:34.980000px;}
.fsc{font-size:35.748000px;}
.fs10{font-size:36.000000px;}
.fsd{font-size:42.000000px;}
.fsb{font-size:44.685000px;}
.fse{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs11{font-size:63.000000px;}
.fs7{font-size:72.000000px;}
.fsf{font-size:90.000000px;}
.fs2{font-size:120.000000px;}
.fs8{font-size:125.118600px;}
.fs0{font-size:144.000000px;}
.fs1{font-size:192.000000px;}
.fs4{font-size:240.000000px;}
.y0{bottom:0.000000px;}
.y40{bottom:7.990050px;}
.y4d{bottom:22.913700px;}
.y43{bottom:37.290600px;}
.y42{bottom:44.440350px;}
.y4c{bottom:95.761350px;}
.y6d{bottom:98.761350px;}
.y4b{bottom:112.261350px;}
.y6c{bottom:115.261350px;}
.ya1{bottom:118.795200px;}
.y4a{bottom:128.761350px;}
.y6b{bottom:131.761350px;}
.y6a{bottom:143.761350px;}
.y49{bottom:145.261350px;}
.ya0{bottom:160.795200px;}
.y48{bottom:161.761350px;}
.y1d{bottom:169.795350px;}
.y1c{bottom:187.795350px;}
.y9f{bottom:202.795200px;}
.y1b{bottom:205.795350px;}
.y9e{bottom:223.795200px;}
.y1a{bottom:223.795350px;}
.y41{bottom:226.729500px;}
.y19{bottom:241.795350px;}
.y3f{bottom:244.228500px;}
.y9d{bottom:244.795200px;}
.y18{bottom:259.795350px;}
.y9c{bottom:265.795200px;}
.y17{bottom:277.795350px;}
.y3e{bottom:277.795500px;}
.y47{bottom:284.732100px;}
.y9b{bottom:286.795200px;}
.y46{bottom:293.669100px;}
.y16{bottom:295.795350px;}
.y3d{bottom:295.795500px;}
.y45{bottom:302.606100px;}
.y44{bottom:313.330650px;}
.y7b{bottom:313.795200px;}
.y15{bottom:313.795350px;}
.y3c{bottom:313.795500px;}
.y9a{bottom:328.795200px;}
.y7a{bottom:331.795200px;}
.y14{bottom:331.795350px;}
.y3b{bottom:331.795500px;}
.y79{bottom:349.795200px;}
.y13{bottom:349.795350px;}
.y3a{bottom:349.795500px;}
.y78{bottom:367.795200px;}
.y83{bottom:367.795350px;}
.y39{bottom:367.795500px;}
.y99{bottom:370.795200px;}
.y77{bottom:385.795200px;}
.y12{bottom:385.795350px;}
.y38{bottom:385.795500px;}
.y76{bottom:403.795200px;}
.y11{bottom:403.795350px;}
.y37{bottom:403.795500px;}
.y98{bottom:412.795200px;}
.y82{bottom:421.795350px;}
.y97{bottom:433.795200px;}
.y75{bottom:439.795200px;}
.y10{bottom:439.795350px;}
.y36{bottom:439.795500px;}
.y96{bottom:454.795200px;}
.yf{bottom:457.795350px;}
.y35{bottom:457.795500px;}
.y81{bottom:475.795350px;}
.y34{bottom:475.795500px;}
.ye{bottom:493.795350px;}
.y33{bottom:493.795500px;}
.y95{bottom:496.795200px;}
.yd{bottom:511.795350px;}
.y94{bottom:517.795200px;}
.y87{bottom:529.795200px;}
.yc{bottom:529.795350px;}
.y32{bottom:529.795500px;}
.y74{bottom:547.795200px;}
.yb{bottom:547.795350px;}
.y31{bottom:547.795500px;}
.y93{bottom:559.795200px;}
.y73{bottom:565.795200px;}
.y92{bottom:580.795200px;}
.y8e{bottom:581.523450px;}
.y72{bottom:583.795200px;}
.ya{bottom:583.795350px;}
.y8d{bottom:592.023450px;}
.y71{bottom:601.795200px;}
.y9{bottom:601.795350px;}
.y8c{bottom:602.523450px;}
.y86{bottom:606.790200px;}
.y6f{bottom:619.795200px;}
.y8{bottom:619.795350px;}
.y70{bottom:624.790200px;}
.y6e{bottom:637.795200px;}
.y2f{bottom:637.795350px;}
.y8b{bottom:641.537700px;}
.y8a{bottom:652.037700px;}
.y8f{bottom:652.712700px;}
.y7{bottom:655.795350px;}
.y2e{bottom:660.790350px;}
.y69{bottom:673.795200px;}
.y2d{bottom:673.795350px;}
.y65{bottom:691.795200px;}
.y6{bottom:691.795350px;}
.y64{bottom:709.795200px;}
.y2c{bottom:709.795350px;}
.y63{bottom:727.795200px;}
.y2b{bottom:727.795350px;}
.y30{bottom:732.790350px;}
.y62{bottom:745.795200px;}
.y2a{bottom:745.795350px;}
.y89{bottom:759.031350px;}
.y61{bottom:763.795200px;}
.y29{bottom:763.795350px;}
.y88{bottom:769.531350px;}
.y60{bottom:781.795200px;}
.y28{bottom:781.795350px;}
.y5f{bottom:799.795200px;}
.y91{bottom:810.072450px;}
.y5e{bottom:817.795200px;}
.y27{bottom:817.795350px;}
.y90{bottom:820.572450px;}
.y85{bottom:822.790200px;}
.y5d{bottom:835.795200px;}
.y26{bottom:835.795350px;}
.y5c{bottom:853.795200px;}
.y25{bottom:853.795350px;}
.y5b{bottom:871.795200px;}
.y24{bottom:871.795350px;}
.y5a{bottom:889.795200px;}
.y23{bottom:889.795350px;}
.y59{bottom:907.795200px;}
.y22{bottom:907.795350px;}
.y68{bottom:925.795200px;}
.y20{bottom:925.795350px;}
.y21{bottom:930.790350px;}
.y58{bottom:943.795200px;}
.y1f{bottom:943.795350px;}
.y57{bottom:961.795200px;}
.y5{bottom:963.295650px;}
.y56{bottom:979.795200px;}
.y80{bottom:979.795350px;}
.y55{bottom:997.795200px;}
.y1e{bottom:997.795350px;}
.y67{bottom:1002.790350px;}
.y4{bottom:1006.795650px;}
.y54{bottom:1015.795200px;}
.y7f{bottom:1015.795350px;}
.y53{bottom:1033.795200px;}
.y7e{bottom:1033.795350px;}
.y66{bottom:1038.790350px;}
.y52{bottom:1051.795200px;}
.y7d{bottom:1051.795350px;}
.y3{bottom:1051.795650px;}
.y51{bottom:1069.795200px;}
.y50{bottom:1087.795200px;}
.y2{bottom:1096.795650px;}
.y4f{bottom:1105.795200px;}
.y7c{bottom:1105.795350px;}
.y84{bottom:1141.795200px;}
.y1{bottom:1150.795650px;}
.y4e{bottom:1209.071100px;}
.hf{height:11.260620px;}
.h10{height:17.916898px;}
.h16{height:24.971074px;}
.h12{height:25.238088px;}
.h8{height:26.764482px;}
.h1a{height:27.576000px;}
.h11{height:31.994460px;}
.h13{height:32.135742px;}
.h14{height:34.272000px;}
.h1c{height:39.155273px;}
.h5{height:41.317383px;}
.h19{height:42.720000px;}
.ha{height:42.832031px;}
.h18{height:45.585938px;}
.h7{height:45.908203px;}
.h9{height:46.744482px;}
.h15{height:46.745082px;}
.h1b{height:48.203613px;}
.hb{height:55.152000px;}
.h17{height:68.940000px;}
.hd{height:89.584918px;}
.h4{height:91.920000px;}
.h2{height:102.528000px;}
.h3{height:137.472000px;}
.h6{height:183.840000px;}
.hc{height:248.697000px;}
.he{height:376.198500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:77.180100px;}
.w3{width:265.999500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:21.259800px;}
.x12{left:33.200850px;}
.x14{left:42.001500px;}
.x11{left:63.442500px;}
.x13{left:65.387610px;}
.x23{left:78.968850px;}
.x9{left:81.593850px;}
.x24{left:83.579850px;}
.x6{left:85.039350px;}
.x17{left:99.699750px;}
.x28{left:104.081100px;}
.x1f{left:114.803100px;}
.x3{left:125.414250px;}
.x2{left:139.069050px;}
.x2a{left:149.098500px;}
.x29{left:167.923200px;}
.x2b{left:170.990550px;}
.x2c{left:180.057750px;}
.x15{left:213.201450px;}
.x16{left:215.176350px;}
.x1{left:238.110300px;}
.x4{left:263.075250px;}
.x19{left:288.521550px;}
.x35{left:311.844600px;}
.x34{left:312.957900px;}
.x33{left:321.809850px;}
.x32{left:325.598700px;}
.x10{left:329.789400px;}
.xf{left:334.145400px;}
.xa{left:374.440350px;}
.xb{left:379.705650px;}
.x7{left:395.700450px;}
.x5{left:396.867300px;}
.x8{left:400.189200px;}
.x25{left:405.605550px;}
.x37{left:411.292950px;}
.x3a{left:417.665550px;}
.x38{left:421.428150px;}
.x36{left:422.768100px;}
.x1e{left:457.940550px;}
.xc{left:459.562050px;}
.x1a{left:489.973800px;}
.x1b{left:497.062200px;}
.x39{left:504.065850px;}
.x31{left:511.071600px;}
.x30{left:519.522000px;}
.x26{left:558.430200px;}
.x27{left:566.719050px;}
.x2e{left:610.813950px;}
.x1c{left:616.499550px;}
.x1d{left:619.317300px;}
.x2f{left:632.766150px;}
.x2d{left:641.443500px;}
.x21{left:649.844250px;}
.x22{left:654.851550px;}
.xd{left:802.589250px;}
.xe{left:807.675600px;}
.x18{left:851.284050px;}
.x3b{left:854.793750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls1f{letter-spacing:-0.266667pt;}
.ls20{letter-spacing:-0.053333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls28{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.397200pt;}
.ls19{letter-spacing:0.451264pt;}
.ls26{letter-spacing:0.621867pt;}
.ls17{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.681999pt;}
.ls1e{letter-spacing:0.690193pt;}
.ls16{letter-spacing:0.693333pt;}
.ls25{letter-spacing:0.746240pt;}
.ls23{letter-spacing:0.746667pt;}
.ls18{letter-spacing:0.800000pt;}
.ls27{letter-spacing:0.839520pt;}
.lsc{letter-spacing:0.846175pt;}
.ls1d{letter-spacing:0.853333pt;}
.ls10{letter-spacing:0.906667pt;}
.lsf{letter-spacing:0.928826pt;}
.ls3{letter-spacing:0.960000pt;}
.ls8{letter-spacing:1.013333pt;}
.ls14{letter-spacing:1.018063pt;}
.ls5{letter-spacing:1.066667pt;}
.ls12{letter-spacing:1.112165pt;}
.ls6{letter-spacing:1.120000pt;}
.ls7{letter-spacing:1.173333pt;}
.lsd{letter-spacing:1.226667pt;}
.ls2{letter-spacing:1.280000pt;}
.ls1b{letter-spacing:1.333333pt;}
.ls11{letter-spacing:1.386667pt;}
.lsb{letter-spacing:1.440000pt;}
.ls1c{letter-spacing:1.493333pt;}
.ls21{letter-spacing:1.546667pt;}
.lse{letter-spacing:1.600000pt;}
.lsa{letter-spacing:1.706667pt;}
.ls9{letter-spacing:1.760000pt;}
.ls22{letter-spacing:2.026667pt;}
.ls0{letter-spacing:2.560000pt;}
.ls15{letter-spacing:2.967237pt;}
.ls1{letter-spacing:3.413333pt;}
.ls29{letter-spacing:351.393600pt;}
.ws7{word-spacing:-51.626667pt;}
.ws9{word-spacing:-26.358318pt;}
.ws4{word-spacing:-25.813333pt;}
.ws27{word-spacing:-19.360000pt;}
.ws1c{word-spacing:-14.933333pt;}
.ws1d{word-spacing:-14.666667pt;}
.ws34{word-spacing:-14.560000pt;}
.ws30{word-spacing:-13.280000pt;}
.ws1e{word-spacing:-8.774460pt;}
.ws8{word-spacing:-8.084267pt;}
.ws31{word-spacing:-8.064000pt;}
.ws1{word-spacing:-6.656000pt;}
.ws26{word-spacing:-2.560000pt;}
.wse{word-spacing:-2.080000pt;}
.ws2b{word-spacing:-2.026667pt;}
.wsd{word-spacing:-1.973333pt;}
.ws11{word-spacing:-1.760000pt;}
.ws13{word-spacing:-1.706667pt;}
.ws17{word-spacing:-1.600000pt;}
.ws25{word-spacing:-1.546667pt;}
.ws24{word-spacing:-1.493333pt;}
.ws14{word-spacing:-1.440000pt;}
.ws19{word-spacing:-1.386667pt;}
.ws1f{word-spacing:-1.333333pt;}
.ws3{word-spacing:-1.280000pt;}
.ws15{word-spacing:-1.226667pt;}
.ws12{word-spacing:-1.173333pt;}
.ws16{word-spacing:-1.120000pt;}
.ws1a{word-spacing:-1.112165pt;}
.ws10{word-spacing:-1.066667pt;}
.wsf{word-spacing:-1.013333pt;}
.ws5{word-spacing:-0.960000pt;}
.ws18{word-spacing:-0.906667pt;}
.ws2{word-spacing:-0.853333pt;}
.ws2f{word-spacing:-0.839520pt;}
.ws2a{word-spacing:-0.800000pt;}
.ws2c{word-spacing:-0.746667pt;}
.ws2d{word-spacing:-0.746240pt;}
.ws20{word-spacing:-0.693333pt;}
.ws0{word-spacing:-0.640000pt;}
.ws2e{word-spacing:-0.621867pt;}
.ws1b{word-spacing:-0.397200pt;}
.ws33{word-spacing:-0.320000pt;}
.ws32{word-spacing:-0.160000pt;}
.ws22{word-spacing:-0.106667pt;}
.wsa{word-spacing:-0.014299pt;}
.ws6{word-spacing:0.000000pt;}
.ws23{word-spacing:0.053333pt;}
.ws21{word-spacing:0.266667pt;}
.ws29{word-spacing:0.640000pt;}
.wsb{word-spacing:1.653333pt;}
.wsc{word-spacing:2.026667pt;}
.ws28{word-spacing:2.080000pt;}
._10{margin-left:-14.080000pt;}
._6{margin-left:-10.598400pt;}
._0{margin-left:-8.704000pt;}
._1{margin-left:-6.485333pt;}
._5{margin-left:-4.778667pt;}
._11{margin-left:-3.861333pt;}
._4{margin-left:-2.901333pt;}
._2{margin-left:-1.536000pt;}
._7{width:0.960000pt;}
._9{width:2.362133pt;}
._a{width:3.312000pt;}
._b{width:4.661333pt;}
._3{width:5.802667pt;}
._12{width:6.954667pt;}
._f{width:9.893333pt;}
._13{width:36.126933pt;}
._15{width:38.254933pt;}
._14{width:43.518933pt;}
._e{width:49.716800pt;}
._d{width:52.031467pt;}
._c{width:57.295467pt;}
._8{width:155.232000pt;}
.fs9{font-size:14.299200pt;}
.fsa{font-size:22.243200pt;}
.fs6{font-size:31.093333pt;}
.fsc{font-size:31.776000pt;}
.fs10{font-size:32.000000pt;}
.fsd{font-size:37.333333pt;}
.fsb{font-size:39.720000pt;}
.fse{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs11{font-size:56.000000pt;}
.fs7{font-size:64.000000pt;}
.fsf{font-size:80.000000pt;}
.fs2{font-size:106.666667pt;}
.fs8{font-size:111.216533pt;}
.fs0{font-size:128.000000pt;}
.fs1{font-size:170.666667pt;}
.fs4{font-size:213.333333pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:7.102267pt;}
.y4d{bottom:20.367733pt;}
.y43{bottom:33.147200pt;}
.y42{bottom:39.502533pt;}
.y4c{bottom:85.121200pt;}
.y6d{bottom:87.787867pt;}
.y4b{bottom:99.787867pt;}
.y6c{bottom:102.454533pt;}
.ya1{bottom:105.595733pt;}
.y4a{bottom:114.454533pt;}
.y6b{bottom:117.121200pt;}
.y6a{bottom:127.787867pt;}
.y49{bottom:129.121200pt;}
.ya0{bottom:142.929067pt;}
.y48{bottom:143.787867pt;}
.y1d{bottom:150.929200pt;}
.y1c{bottom:166.929200pt;}
.y9f{bottom:180.262400pt;}
.y1b{bottom:182.929200pt;}
.y9e{bottom:198.929067pt;}
.y1a{bottom:198.929200pt;}
.y41{bottom:201.537333pt;}
.y19{bottom:214.929200pt;}
.y3f{bottom:217.092000pt;}
.y9d{bottom:217.595733pt;}
.y18{bottom:230.929200pt;}
.y9c{bottom:236.262400pt;}
.y17{bottom:246.929200pt;}
.y3e{bottom:246.929333pt;}
.y47{bottom:253.095200pt;}
.y9b{bottom:254.929067pt;}
.y46{bottom:261.039200pt;}
.y16{bottom:262.929200pt;}
.y3d{bottom:262.929333pt;}
.y45{bottom:268.983200pt;}
.y44{bottom:278.516133pt;}
.y7b{bottom:278.929067pt;}
.y15{bottom:278.929200pt;}
.y3c{bottom:278.929333pt;}
.y9a{bottom:292.262400pt;}
.y7a{bottom:294.929067pt;}
.y14{bottom:294.929200pt;}
.y3b{bottom:294.929333pt;}
.y79{bottom:310.929067pt;}
.y13{bottom:310.929200pt;}
.y3a{bottom:310.929333pt;}
.y78{bottom:326.929067pt;}
.y83{bottom:326.929200pt;}
.y39{bottom:326.929333pt;}
.y99{bottom:329.595733pt;}
.y77{bottom:342.929067pt;}
.y12{bottom:342.929200pt;}
.y38{bottom:342.929333pt;}
.y76{bottom:358.929067pt;}
.y11{bottom:358.929200pt;}
.y37{bottom:358.929333pt;}
.y98{bottom:366.929067pt;}
.y82{bottom:374.929200pt;}
.y97{bottom:385.595733pt;}
.y75{bottom:390.929067pt;}
.y10{bottom:390.929200pt;}
.y36{bottom:390.929333pt;}
.y96{bottom:404.262400pt;}
.yf{bottom:406.929200pt;}
.y35{bottom:406.929333pt;}
.y81{bottom:422.929200pt;}
.y34{bottom:422.929333pt;}
.ye{bottom:438.929200pt;}
.y33{bottom:438.929333pt;}
.y95{bottom:441.595733pt;}
.yd{bottom:454.929200pt;}
.y94{bottom:460.262400pt;}
.y87{bottom:470.929067pt;}
.yc{bottom:470.929200pt;}
.y32{bottom:470.929333pt;}
.y74{bottom:486.929067pt;}
.yb{bottom:486.929200pt;}
.y31{bottom:486.929333pt;}
.y93{bottom:497.595733pt;}
.y73{bottom:502.929067pt;}
.y92{bottom:516.262400pt;}
.y8e{bottom:516.909733pt;}
.y72{bottom:518.929067pt;}
.ya{bottom:518.929200pt;}
.y8d{bottom:526.243067pt;}
.y71{bottom:534.929067pt;}
.y9{bottom:534.929200pt;}
.y8c{bottom:535.576400pt;}
.y86{bottom:539.369067pt;}
.y6f{bottom:550.929067pt;}
.y8{bottom:550.929200pt;}
.y70{bottom:555.369067pt;}
.y6e{bottom:566.929067pt;}
.y2f{bottom:566.929200pt;}
.y8b{bottom:570.255733pt;}
.y8a{bottom:579.589067pt;}
.y8f{bottom:580.189067pt;}
.y7{bottom:582.929200pt;}
.y2e{bottom:587.369200pt;}
.y69{bottom:598.929067pt;}
.y2d{bottom:598.929200pt;}
.y65{bottom:614.929067pt;}
.y6{bottom:614.929200pt;}
.y64{bottom:630.929067pt;}
.y2c{bottom:630.929200pt;}
.y63{bottom:646.929067pt;}
.y2b{bottom:646.929200pt;}
.y30{bottom:651.369200pt;}
.y62{bottom:662.929067pt;}
.y2a{bottom:662.929200pt;}
.y89{bottom:674.694533pt;}
.y61{bottom:678.929067pt;}
.y29{bottom:678.929200pt;}
.y88{bottom:684.027867pt;}
.y60{bottom:694.929067pt;}
.y28{bottom:694.929200pt;}
.y5f{bottom:710.929067pt;}
.y91{bottom:720.064400pt;}
.y5e{bottom:726.929067pt;}
.y27{bottom:726.929200pt;}
.y90{bottom:729.397733pt;}
.y85{bottom:731.369067pt;}
.y5d{bottom:742.929067pt;}
.y26{bottom:742.929200pt;}
.y5c{bottom:758.929067pt;}
.y25{bottom:758.929200pt;}
.y5b{bottom:774.929067pt;}
.y24{bottom:774.929200pt;}
.y5a{bottom:790.929067pt;}
.y23{bottom:790.929200pt;}
.y59{bottom:806.929067pt;}
.y22{bottom:806.929200pt;}
.y68{bottom:822.929067pt;}
.y20{bottom:822.929200pt;}
.y21{bottom:827.369200pt;}
.y58{bottom:838.929067pt;}
.y1f{bottom:838.929200pt;}
.y57{bottom:854.929067pt;}
.y5{bottom:856.262800pt;}
.y56{bottom:870.929067pt;}
.y80{bottom:870.929200pt;}
.y55{bottom:886.929067pt;}
.y1e{bottom:886.929200pt;}
.y67{bottom:891.369200pt;}
.y4{bottom:894.929467pt;}
.y54{bottom:902.929067pt;}
.y7f{bottom:902.929200pt;}
.y53{bottom:918.929067pt;}
.y7e{bottom:918.929200pt;}
.y66{bottom:923.369200pt;}
.y52{bottom:934.929067pt;}
.y7d{bottom:934.929200pt;}
.y3{bottom:934.929467pt;}
.y51{bottom:950.929067pt;}
.y50{bottom:966.929067pt;}
.y2{bottom:974.929467pt;}
.y4f{bottom:982.929067pt;}
.y7c{bottom:982.929200pt;}
.y84{bottom:1014.929067pt;}
.y1{bottom:1022.929467pt;}
.y4e{bottom:1074.729867pt;}
.hf{height:10.009440pt;}
.h10{height:15.926131pt;}
.h16{height:22.196510pt;}
.h12{height:22.433856pt;}
.h8{height:23.790651pt;}
.h1a{height:24.512000pt;}
.h11{height:28.439520pt;}
.h13{height:28.565104pt;}
.h14{height:30.464000pt;}
.h1c{height:34.804688pt;}
.h5{height:36.726562pt;}
.h19{height:37.973333pt;}
.ha{height:38.072917pt;}
.h18{height:40.520833pt;}
.h7{height:40.807292pt;}
.h9{height:41.550651pt;}
.h15{height:41.551184pt;}
.h1b{height:42.847656pt;}
.hb{height:49.024000pt;}
.h17{height:61.280000pt;}
.hd{height:79.631038pt;}
.h4{height:81.706667pt;}
.h2{height:91.136000pt;}
.h3{height:122.197333pt;}
.h6{height:163.413333pt;}
.hc{height:221.064000pt;}
.he{height:334.398667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:68.604533pt;}
.w3{width:236.444000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:18.897600pt;}
.x12{left:29.511867pt;}
.x14{left:37.334667pt;}
.x11{left:56.393333pt;}
.x13{left:58.122320pt;}
.x23{left:70.194533pt;}
.x9{left:72.527867pt;}
.x24{left:74.293200pt;}
.x6{left:75.590533pt;}
.x17{left:88.622000pt;}
.x28{left:92.516533pt;}
.x1f{left:102.047200pt;}
.x3{left:111.479333pt;}
.x2{left:123.616933pt;}
.x2a{left:132.532000pt;}
.x29{left:149.265067pt;}
.x2b{left:151.991600pt;}
.x2c{left:160.051333pt;}
.x15{left:189.512400pt;}
.x16{left:191.267867pt;}
.x1{left:211.653600pt;}
.x4{left:233.844667pt;}
.x19{left:256.463600pt;}
.x35{left:277.195200pt;}
.x34{left:278.184800pt;}
.x33{left:286.053200pt;}
.x32{left:289.421067pt;}
.x10{left:293.146133pt;}
.xf{left:297.018133pt;}
.xa{left:332.835867pt;}
.xb{left:337.516133pt;}
.x7{left:351.733733pt;}
.x5{left:352.770933pt;}
.x8{left:355.723733pt;}
.x25{left:360.538267pt;}
.x37{left:365.593733pt;}
.x3a{left:371.258267pt;}
.x38{left:374.602800pt;}
.x36{left:375.793867pt;}
.x1e{left:407.058267pt;}
.xc{left:408.499600pt;}
.x1a{left:435.532267pt;}
.x1b{left:441.833067pt;}
.x39{left:448.058533pt;}
.x31{left:454.285867pt;}
.x30{left:461.797333pt;}
.x26{left:496.382400pt;}
.x27{left:503.750267pt;}
.x2e{left:542.945733pt;}
.x1c{left:547.999600pt;}
.x1d{left:550.504267pt;}
.x2f{left:562.458800pt;}
.x2d{left:570.172000pt;}
.x21{left:577.639333pt;}
.x22{left:582.090267pt;}
.xd{left:713.412667pt;}
.xe{left:717.933867pt;}
.x18{left:756.696933pt;}
.x3b{left:759.816667pt;}
}




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