
    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_3330ffe8c15da86c6b06f78e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_c10e37a3c95b46a5bf9e8fc6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_1c14eb930b7d26dfc41d272f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_ebfefd14c64451bd6bb97f47.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_6a4c21ff1693cbfc52a48fab.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_e6101ea00984473b5e7d1646.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_c10e37a3c95b46a5bf9e8fc6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_486ac58221a337f14e767b43.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_15f150998ba18215e50039f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.095703;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_c10e37a3c95b46a5bf9e8fc6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.093262;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_86346e85fcc141819f805717.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.862305;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_ae89b75b5000aa9111c74e85.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.093262;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_526be3d8c598d5cfc0f1e14b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.093262;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_2945794a38d09ef64a378965.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.093262;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_6511b74aae7c55e55a3b481a.woff2')format("woff");}.fff{font-family:fff;line-height:0.862305;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_ffcd5a19ca5028fb60914c70.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.855957;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_6659939b1eb36dc27f7b252c.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.093262;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_181a2318404f83c7158a9fcf.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;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;}
.m49{transform:matrix(0.235603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235603,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.ma3{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);}
.m2e{transform:matrix(0.247554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247554,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m9c{transform:matrix(0.247931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247931,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.248008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248008,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.248027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248027,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.248044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248044,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.248298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248298,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.248367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248367,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248388,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.248396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248396,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);}
.m4e{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);}
.m62{transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);}
.m3f{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);}
.m93{transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248771,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248812,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248877,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.248904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248904,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.249063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249063,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249088,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.249108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249108,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249121,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.249169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249169,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249181,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249196,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249227,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.249238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249238,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249281,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249294,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249340,0.000000,0.000000,0.250000,0,0);}
.m7b{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);}
.m31{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.249446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249446,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249504,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249506,0.000000,0.000000,0.250000,0,0);}
.m92{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);}
.m91{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249546,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249596,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.249613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249613,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249696,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.mb0{transform:matrix(0.249721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249721,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.249746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249746,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249804,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249896,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.249923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249923,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,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);}
.m5b{transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.250133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250133,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.250223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250223,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);}
.m73{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);}
.m95{transform:matrix(0.250381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250381,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.250596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250596,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250683,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.250744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250744,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.250829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250829,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.250869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250869,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.250879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250879,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.251031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251031,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.251044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251044,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.251081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251081,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.251177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251177,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.251192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251192,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.251342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251342,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.251404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251404,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.251452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251452,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.251460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251460,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.251535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251535,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.251583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251583,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.251604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251604,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.251804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251804,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.251892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251892,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.251898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251898,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.252269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252269,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252377,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.252473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252473,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.252483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252483,0.000000,0.000000,0.250000,0,0);}
.m35{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);}
.m5{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);}
.v3{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:11.413776px;}
.v1{vertical-align:21.780000px;}
.v2{vertical-align:23.760000px;}
.ls18{letter-spacing:-0.912000px;}
.ls45{letter-spacing:-0.576000px;}
.ls17{letter-spacing:-0.570000px;}
.ls14{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.420000px;}
.ls11{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.300000px;}
.ls13{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.240000px;}
.lsf{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.120000px;}
.lsa{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.060000px;}
.ls1{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.000600px;}
.ls2c{letter-spacing:0.007800px;}
.ls1a{letter-spacing:0.008400px;}
.ls2d{letter-spacing:0.010800px;}
.ls32{letter-spacing:0.011400px;}
.ls1b{letter-spacing:0.012000px;}
.ls1c{letter-spacing:0.012600px;}
.ls38{letter-spacing:0.017328px;}
.ls37{letter-spacing:0.017928px;}
.ls3a{letter-spacing:0.020692px;}
.ls3c{letter-spacing:0.040241px;}
.ls39{letter-spacing:0.040654px;}
.ls4{letter-spacing:0.060000px;}
.lsd{letter-spacing:0.072000px;}
.ls31{letter-spacing:0.116874px;}
.ls30{letter-spacing:0.140370px;}
.ls10{letter-spacing:0.144000px;}
.ls33{letter-spacing:0.174490px;}
.ls35{letter-spacing:0.175087px;}
.ls0{letter-spacing:0.180000px;}
.ls34{letter-spacing:0.198019px;}
.ls3e{letter-spacing:0.198599px;}
.ls3d{letter-spacing:0.198981px;}
.ls19{letter-spacing:0.216000px;}
.ls42{letter-spacing:0.231840px;}
.ls5{letter-spacing:0.288000px;}
.ls46{letter-spacing:0.317915px;}
.ls16{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.432000px;}
.ls41{letter-spacing:0.484386px;}
.ls40{letter-spacing:0.497530px;}
.ls12{letter-spacing:0.504000px;}
.ls3f{letter-spacing:0.540508px;}
.ls29{letter-spacing:0.575525px;}
.ls15{letter-spacing:0.576000px;}
.ls27{letter-spacing:0.578471px;}
.ls2a{letter-spacing:0.597505px;}
.ls2b{letter-spacing:0.598337px;}
.ls26{letter-spacing:0.598574px;}
.ls44{letter-spacing:0.606297px;}
.ls43{letter-spacing:0.617703px;}
.ls2e{letter-spacing:0.742455px;}
.ls20{letter-spacing:0.783327px;}
.ls21{letter-spacing:0.783921px;}
.ls22{letter-spacing:0.792000px;}
.ls23{letter-spacing:0.794733px;}
.ls25{letter-spacing:0.795564px;}
.ls1e{letter-spacing:0.936000px;}
.ls36{letter-spacing:0.949200px;}
.ls1d{letter-spacing:0.959762px;}
.ls2f{letter-spacing:1.080000px;}
.ls3b{letter-spacing:5.966218px;}
.ls28{letter-spacing:7.040792px;}
.ls24{letter-spacing:9.409307px;}
.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;}
}
.ws2d{word-spacing:-19.500000px;}
.ws3c{word-spacing:-19.080000px;}
.ws3e{word-spacing:-18.504000px;}
.ws3{word-spacing:-18.000000px;}
.ws1f{word-spacing:-17.928000px;}
.ws3d{word-spacing:-17.856000px;}
.ws3b{word-spacing:-17.784000px;}
.ws48{word-spacing:-17.496000px;}
.ws2{word-spacing:-16.500000px;}
.ws4{word-spacing:-15.180000px;}
.ws0{word-spacing:-15.000000px;}
.wsa{word-spacing:-14.940000px;}
.ws20{word-spacing:-13.680000px;}
.ws1e{word-spacing:-13.650000px;}
.ws23{word-spacing:-13.500000px;}
.ws4d{word-spacing:-12.831840px;}
.ws2e{word-spacing:-12.600000px;}
.ws27{word-spacing:-11.725061px;}
.ws2c{word-spacing:-11.592444px;}
.ws1{word-spacing:-9.570000px;}
.ws5{word-spacing:-7.830000px;}
.ws51{word-spacing:-4.104000px;}
.ws4c{word-spacing:-3.672000px;}
.ws30{word-spacing:-3.600000px;}
.ws44{word-spacing:-3.528000px;}
.ws54{word-spacing:-3.456000px;}
.wsc{word-spacing:-3.000000px;}
.ws3f{word-spacing:-2.592000px;}
.ws4f{word-spacing:-2.232000px;}
.ws53{word-spacing:-2.088000px;}
.ws39{word-spacing:-1.800000px;}
.ws2f{word-spacing:-1.656000px;}
.ws35{word-spacing:-1.512000px;}
.ws4a{word-spacing:-1.440000px;}
.ws43{word-spacing:-1.368000px;}
.ws42{word-spacing:-1.080000px;}
.ws32{word-spacing:-0.936000px;}
.ws37{word-spacing:-0.792000px;}
.ws1d{word-spacing:-0.576000px;}
.ws1a{word-spacing:-0.504000px;}
.ws16{word-spacing:-0.432000px;}
.ws21{word-spacing:-0.360000px;}
.ws11{word-spacing:-0.288000px;}
.ws28{word-spacing:-0.216000px;}
.ws7{word-spacing:-0.180000px;}
.ws17{word-spacing:-0.144000px;}
.ws18{word-spacing:-0.072000px;}
.wsf{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.wsb{word-spacing:0.060000px;}
.ws12{word-spacing:0.072000px;}
.ws9{word-spacing:0.120000px;}
.ws13{word-spacing:0.144000px;}
.wse{word-spacing:0.180000px;}
.ws15{word-spacing:0.216000px;}
.ws8{word-spacing:0.240000px;}
.ws1b{word-spacing:0.288000px;}
.ws10{word-spacing:0.300000px;}
.ws19{word-spacing:0.360000px;}
.wsd{word-spacing:0.420000px;}
.ws14{word-spacing:0.432000px;}
.ws1c{word-spacing:0.504000px;}
.ws22{word-spacing:0.570000px;}
.ws50{word-spacing:0.576000px;}
.ws46{word-spacing:0.648000px;}
.ws24{word-spacing:0.912000px;}
.ws58{word-spacing:1.512000px;}
.ws38{word-spacing:1.656000px;}
.ws31{word-spacing:2.088000px;}
.ws56{word-spacing:2.160000px;}
.ws59{word-spacing:2.520000px;}
.ws4e{word-spacing:2.664000px;}
.ws4b{word-spacing:2.952000px;}
.ws34{word-spacing:3.384000px;}
.ws57{word-spacing:3.600000px;}
.ws3a{word-spacing:3.672000px;}
.ws52{word-spacing:3.888000px;}
.ws49{word-spacing:3.960000px;}
.ws45{word-spacing:4.608000px;}
.ws36{word-spacing:4.752000px;}
.ws47{word-spacing:5.400000px;}
.ws55{word-spacing:5.616000px;}
.ws33{word-spacing:5.904000px;}
.ws40{word-spacing:6.696000px;}
.ws41{word-spacing:11.592000px;}
.ws29{word-spacing:54.213442px;}
.ws2b{word-spacing:68.631372px;}
.ws2a{word-spacing:77.179212px;}
.ws25{word-spacing:105.266143px;}
.ws26{word-spacing:430.921925px;}
._11{margin-left:-1197.305102px;}
._4{margin-left:-17.056800px;}
._1b{margin-left:-9.920400px;}
._d{margin-left:-8.675396px;}
._1{margin-left:-6.859800px;}
._5{margin-left:-5.731200px;}
._0{margin-left:-4.452000px;}
._6{margin-left:-3.446400px;}
._2{margin-left:-2.428800px;}
._3{margin-left:-1.346400px;}
._9{width:1.056000px;}
._8{width:2.694000px;}
._a{width:3.752999px;}
._7{width:5.085001px;}
._b{width:6.161998px;}
._c{width:7.240809px;}
._19{width:8.508238px;}
._1a{width:9.636774px;}
._18{width:10.842596px;}
._17{width:12.295057px;}
._f{width:28.063200px;}
._e{width:41.839800px;}
._13{width:79.119617px;}
._12{width:91.722742px;}
._16{width:93.909066px;}
._15{width:105.470712px;}
._14{width:119.616462px;}
._10{width:643.174168px;}
.fc2{color:transparent;}
.fc1{color:rgb(34,34,33);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:31.320000px;}
.fs2{font-size:38.280000px;}
.fs5{font-size:41.760000px;}
.fsd{font-size:50.012400px;}
.fs13{font-size:50.400000px;}
.fs11{font-size:51.294000px;}
.fsb{font-size:51.880800px;}
.fs7{font-size:54.000000px;}
.fs9{font-size:54.600000px;}
.fsf{font-size:56.583000px;}
.fsa{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs8{font-size:78.000000px;}
.fse{font-size:78.067800px;}
.fs10{font-size:78.724200px;}
.fs12{font-size:80.067600px;}
.fsc{font-size:80.984400px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yf8{bottom:6.297608px;}
.y12e{bottom:6.383389px;}
.ydc{bottom:6.456824px;}
.y116{bottom:7.124608px;}
.yed{bottom:30.666150px;}
.ydd{bottom:31.126144px;}
.yf9{bottom:31.603882px;}
.y126{bottom:35.146500px;}
.y12f{bottom:36.095439px;}
.y110{bottom:37.438950px;}
.y117{bottom:37.877468px;}
.yee{bottom:50.796141px;}
.yfa{bottom:51.733873px;}
.ydb{bottom:55.497150px;}
.y127{bottom:60.485736px;}
.y130{bottom:61.742439px;}
.y10e{bottom:62.963250px;}
.y118{bottom:65.560701px;}
.yef{bottom:71.226206px;}
.yfb{bottom:71.863865px;}
.y1{bottom:79.831800px;}
.y128{bottom:85.824972px;}
.y131{bottom:87.081675px;}
.yf0{bottom:91.356197px;}
.yfc{bottom:91.993855px;}
.y119{bottom:93.243934px;}
.y10f{bottom:93.461487px;}
.y129{bottom:111.164208px;}
.yf1{bottom:111.486188px;}
.yfd{bottom:112.123847px;}
.y132{bottom:112.420911px;}
.y11a{bottom:120.913021px;}
.y111{bottom:121.959806px;}
.yd5{bottom:129.525836px;}
.yf2{bottom:131.616179px;}
.yfe{bottom:132.253837px;}
.y12a{bottom:136.490620px;}
.y133{bottom:137.760147px;}
.y20{bottom:144.566850px;}
.y15a{bottom:145.253250px;}
.y13e{bottom:145.508250px;}
.y112{bottom:145.554917px;}
.y81{bottom:146.032800px;}
.y147{bottom:147.583350px;}
.y11b{bottom:148.596253px;}
.ye9{bottom:148.623300px;}
.yd6{bottom:150.083603px;}
.y10a{bottom:151.659600px;}
.yf3{bottom:151.746170px;}
.yff{bottom:152.383828px;}
.y1f{bottom:160.766850px;}
.y45{bottom:161.733450px;}
.y12b{bottom:162.137620px;}
.y134{bottom:163.099383px;}
.y159{bottom:166.853250px;}
.y8f{bottom:166.853400px;}
.y13d{bottom:167.108250px;}
.y67{bottom:167.632800px;}
.y9b{bottom:168.653400px;}
.y146{bottom:169.183350px;}
.ye8{bottom:170.223450px;}
.yf4{bottom:171.876161px;}
.y100{bottom:172.513820px;}
.y109{bottom:173.259600px;}
.y113{bottom:174.327373px;}
.y11c{bottom:176.265340px;}
.y1e{bottom:181.421850px;}
.y44{bottom:183.333450px;}
.y12c{bottom:187.476856px;}
.y158{bottom:188.453250px;}
.y8e{bottom:188.453400px;}
.y13c{bottom:188.708250px;}
.y135{bottom:188.746383px;}
.y80{bottom:189.232800px;}
.y66{bottom:189.232950px;}
.y9a{bottom:190.253400px;}
.y145{bottom:190.783350px;}
.ye7{bottom:191.823300px;}
.yf5{bottom:192.006152px;}
.y101{bottom:192.943885px;}
.y108{bottom:194.859600px;}
.yd7{bottom:201.017579px;}
.y114{bottom:202.137917px;}
.y11d{bottom:203.934427px;}
.y43{bottom:204.933450px;}
.y157{bottom:210.053250px;}
.y8d{bottom:210.053400px;}
.y13b{bottom:210.308250px;}
.y7f{bottom:210.832800px;}
.y65{bottom:210.832950px;}
.y99{bottom:211.853400px;}
.yf6{bottom:212.136143px;}
.y144{bottom:212.383350px;}
.y12d{bottom:212.816092px;}
.y102{bottom:213.073876px;}
.ye6{bottom:213.423300px;}
.y1d{bottom:213.821850px;}
.y136{bottom:214.085619px;}
.y107{bottom:216.459600px;}
.yb1{bottom:218.864100px;}
.yd0{bottom:222.290100px;}
.y1c{bottom:225.566850px;}
.y42{bottom:226.533450px;}
.y115{bottom:226.992000px;}
.y11e{bottom:231.617660px;}
.y156{bottom:231.653250px;}
.y8c{bottom:231.653400px;}
.y13a{bottom:231.908250px;}
.yf7{bottom:232.266134px;}
.y7e{bottom:232.432800px;}
.y64{bottom:232.432950px;}
.y103{bottom:233.203867px;}
.y98{bottom:233.453400px;}
.y143{bottom:233.983350px;}
.ye5{bottom:235.023450px;}
.yd4{bottom:236.763450px;}
.yd8{bottom:237.710275px;}
.y106{bottom:238.059600px;}
.y1b{bottom:241.766850px;}
.yb0{bottom:244.375950px;}
.y41{bottom:248.133450px;}
.y138{bottom:252.213658px;}
.y155{bottom:253.253250px;}
.y8b{bottom:253.253400px;}
.y178{bottom:254.015250px;}
.y7d{bottom:254.032800px;}
.y63{bottom:254.032950px;}
.y97{bottom:255.053400px;}
.ye4{bottom:256.623300px;}
.ycf{bottom:257.688600px;}
.y121{bottom:259.659600px;}
.y1a{bottom:262.421850px;}
.y104{bottom:268.530000px;}
.y40{bottom:269.733450px;}
.yaf{bottom:269.887650px;}
.yda{bottom:271.252475px;}
.y11f{bottom:271.279800px;}
.y137{bottom:274.412400px;}
.y139{bottom:274.768050px;}
.y154{bottom:274.853250px;}
.y8a{bottom:274.853400px;}
.y177{bottom:275.615250px;}
.y62{bottom:275.632800px;}
.y96{bottom:276.653400px;}
.y142{bottom:276.843150px;}
.ye3{bottom:278.223450px;}
.y19{bottom:278.621850px;}
.y105{bottom:280.919400px;}
.yce{bottom:283.200450px;}
.ycb{bottom:287.406300px;}
.yd9{bottom:293.705400px;}
.yae{bottom:295.399500px;}
.y153{bottom:296.453250px;}
.y89{bottom:296.453400px;}
.y176{bottom:297.215250px;}
.y7c{bottom:297.232800px;}
.y61{bottom:297.232950px;}
.y95{bottom:298.253400px;}
.ye2{bottom:299.823300px;}
.y120{bottom:302.519400px;}
.yca{bottom:304.506450px;}
.ya9{bottom:308.155500px;}
.ycd{bottom:308.712300px;}
.y3f{bottom:312.593250px;}
.y125{bottom:312.972000px;}
.yec{bottom:316.204500px;}
.y152{bottom:318.053250px;}
.y88{bottom:318.053400px;}
.y175{bottom:318.815250px;}
.y18{bottom:318.829050px;}
.y7b{bottom:318.832800px;}
.y60{bottom:318.832950px;}
.y94{bottom:319.853400px;}
.yad{bottom:320.911350px;}
.ye1{bottom:321.423300px;}
.ycc{bottom:334.224150px;}
.y10d{bottom:336.328500px;}
.y17{bottom:336.829050px;}
.y151{bottom:339.653250px;}
.y87{bottom:339.653400px;}
.y174{bottom:340.415250px;}
.y7a{bottom:340.432800px;}
.y5f{bottom:340.432950px;}
.y93{bottom:341.453400px;}
.y141{bottom:342.762900px;}
.ye0{bottom:343.023450px;}
.yac{bottom:346.423200px;}
.y16{bottom:354.829050px;}
.yc9{bottom:359.735850px;}
.y150{bottom:361.253250px;}
.y86{bottom:361.253400px;}
.y173{bottom:362.015250px;}
.y79{bottom:362.032800px;}
.y5e{bottom:362.032950px;}
.y92{bottom:363.053400px;}
.ydf{bottom:364.623300px;}
.yab{bottom:371.934900px;}
.y15{bottom:372.829050px;}
.y3e{bottom:378.513000px;}
.y14f{bottom:382.853250px;}
.y85{bottom:382.853400px;}
.y172{bottom:383.615250px;}
.y5d{bottom:383.632800px;}
.y91{bottom:384.653400px;}
.yc8{bottom:385.247700px;}
.y14{bottom:390.829050px;}
.y3d{bottom:396.513000px;}
.yaa{bottom:397.446750px;}
.y14e{bottom:404.453250px;}
.y84{bottom:404.453400px;}
.y171{bottom:405.215250px;}
.y78{bottom:405.232800px;}
.y5c{bottom:405.232950px;}
.yde{bottom:407.483250px;}
.y13{bottom:408.829050px;}
.yc6{bottom:410.759550px;}
.y3c{bottom:414.513000px;}
.ya8{bottom:422.905500px;}
.y14d{bottom:426.053250px;}
.y83{bottom:426.053400px;}
.y170{bottom:426.815250px;}
.y12{bottom:426.829050px;}
.y77{bottom:426.832800px;}
.y5b{bottom:426.832950px;}
.y90{bottom:427.513200px;}
.y3b{bottom:432.513000px;}
.yc7{bottom:436.271400px;}
.ya7{bottom:440.005500px;}
.yd3{bottom:443.970000px;}
.y11{bottom:444.829050px;}
.y14c{bottom:447.653250px;}
.y16f{bottom:448.415250px;}
.y76{bottom:448.432800px;}
.y5a{bottom:448.432950px;}
.y3a{bottom:450.513000px;}
.yc5{bottom:461.783100px;}
.y10{bottom:462.829050px;}
.y39{bottom:468.513000px;}
.y82{bottom:468.913200px;}
.y14b{bottom:469.253250px;}
.y16e{bottom:470.015250px;}
.y75{bottom:470.032800px;}
.y59{bottom:470.032950px;}
.yf{bottom:480.829050px;}
.ya6{bottom:481.045500px;}
.y38{bottom:486.513000px;}
.yc4{bottom:487.294950px;}
.y14a{bottom:490.853250px;}
.y16d{bottom:491.615250px;}
.y58{bottom:491.632800px;}
.ye{bottom:498.829050px;}
.ya5{bottom:499.045500px;}
.yc1{bottom:500.050800px;}
.y37{bottom:504.513000px;}
.y149{bottom:512.453250px;}
.yc3{bottom:512.806800px;}
.y16c{bottom:513.215250px;}
.y74{bottom:513.232800px;}
.y57{bottom:513.232950px;}
.yd{bottom:516.829050px;}
.y36{bottom:522.513000px;}
.ya4{bottom:534.053250px;}
.y16b{bottom:534.815250px;}
.y73{bottom:534.832800px;}
.y56{bottom:534.832950px;}
.yc2{bottom:538.318650px;}
.y35{bottom:540.513000px;}
.y6{bottom:546.721950px;}
.ya3{bottom:555.653250px;}
.y16a{bottom:556.415250px;}
.y72{bottom:556.432800px;}
.y55{bottom:556.432950px;}
.y34{bottom:558.513000px;}
.yc0{bottom:563.830350px;}
.y33{bottom:576.513000px;}
.ya2{bottom:577.253250px;}
.y169{bottom:578.015250px;}
.y71{bottom:578.032800px;}
.y54{bottom:578.032950px;}
.y5{bottom:579.721950px;}
.ybf{bottom:587.479200px;}
.y32{bottom:594.513000px;}
.ya1{bottom:598.853250px;}
.y168{bottom:599.615250px;}
.y53{bottom:599.632800px;}
.ybe{bottom:604.579200px;}
.y31{bottom:612.513000px;}
.y4{bottom:612.721950px;}
.y148{bottom:620.113200px;}
.ya0{bottom:620.453250px;}
.y167{bottom:621.215250px;}
.y70{bottom:621.232800px;}
.y52{bottom:621.232950px;}
.ybd{bottom:628.228050px;}
.y30{bottom:630.513000px;}
.y3{bottom:632.521950px;}
.yeb{bottom:633.024900px;}
.y124{bottom:636.625050px;}
.y9f{bottom:642.053250px;}
.y166{bottom:642.815250px;}
.y6f{bottom:642.832800px;}
.y51{bottom:642.832950px;}
.y2f{bottom:648.513000px;}
.yea{bottom:651.024900px;}
.y2{bottom:652.321950px;}
.ybc{bottom:653.739900px;}
.y10c{bottom:654.624900px;}
.y123{bottom:654.625050px;}
.y9e{bottom:663.653250px;}
.y165{bottom:664.415250px;}
.y6e{bottom:664.432800px;}
.y50{bottom:664.432950px;}
.y2e{bottom:666.513000px;}
.y10b{bottom:672.624900px;}
.y122{bottom:672.625050px;}
.y140{bottom:676.225050px;}
.ybb{bottom:679.251750px;}
.y2d{bottom:684.513000px;}
.y9d{bottom:685.253250px;}
.y164{bottom:686.015250px;}
.y6d{bottom:686.032800px;}
.y4f{bottom:686.032950px;}
.y13f{bottom:694.225050px;}
.yb4{bottom:698.076450px;}
.y2c{bottom:702.513000px;}
.yba{bottom:704.763450px;}
.y163{bottom:707.615250px;}
.y4e{bottom:707.632800px;}
.yc{bottom:711.258750px;}
.y9c{bottom:728.113200px;}
.y162{bottom:729.215250px;}
.y6c{bottom:729.232800px;}
.y4d{bottom:729.232950px;}
.yb9{bottom:730.275300px;}
.yb{bottom:733.510650px;}
.y2b{bottom:738.513000px;}
.y161{bottom:750.815250px;}
.y6b{bottom:750.832800px;}
.y4c{bottom:750.832950px;}
.ya{bottom:755.110650px;}
.yb8{bottom:755.787150px;}
.y2a{bottom:756.513000px;}
.y160{bottom:772.415250px;}
.y6a{bottom:772.432800px;}
.y4b{bottom:772.432950px;}
.y29{bottom:774.513000px;}
.yb7{bottom:781.299000px;}
.yd2{bottom:784.225050px;}
.y28{bottom:792.513000px;}
.y15f{bottom:794.015250px;}
.y69{bottom:794.032800px;}
.y4a{bottom:794.032950px;}
.y9{bottom:798.310800px;}
.yd1{bottom:802.225050px;}
.yb6{bottom:806.810700px;}
.y27{bottom:810.513000px;}
.y15e{bottom:815.615250px;}
.y49{bottom:815.632800px;}
.y8{bottom:824.162700px;}
.y26{bottom:828.513000px;}
.yb5{bottom:832.322550px;}
.y15d{bottom:837.215400px;}
.y48{bottom:837.232950px;}
.y25{bottom:846.513000px;}
.y7{bottom:849.362700px;}
.yb3{bottom:857.781300px;}
.y15c{bottom:858.815400px;}
.y47{bottom:858.832800px;}
.y68{bottom:858.832950px;}
.y24{bottom:864.513000px;}
.yb2{bottom:874.881450px;}
.y15b{bottom:880.415250px;}
.y46{bottom:880.432950px;}
.y23{bottom:882.513000px;}
.y21{bottom:946.277850px;}
.y22{bottom:946.292550px;}
.h8{height:29.561836px;}
.h1a{height:34.788753px;}
.h19{height:35.114350px;}
.hf{height:35.516055px;}
.h13{height:43.882951px;}
.h1c{height:44.223047px;}
.h10{height:46.929831px;}
.h9{height:47.381836px;}
.hd{height:47.513672px;}
.h16{height:49.648267px;}
.hc{height:50.014160px;}
.hb{height:50.153320px;}
.h4{height:52.646484px;}
.h2{height:52.792969px;}
.h3{height:58.072266px;}
.h7{height:63.175781px;}
.h6{height:63.351562px;}
.ha{height:68.440430px;}
.h14{height:68.499920px;}
.h17{height:69.075873px;}
.h1b{height:70.254628px;}
.h11{height:71.059066px;}
.h5{height:73.705078px;}
.h12{height:292.026000px;}
.h15{height:294.973500px;}
.h18{height:298.510500px;}
.he{height:318.079500px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:425.197500px;}
.w3{width:504.520500px;}
.w4{width:509.862000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x32{left:9.778521px;}
.x3e{left:11.244930px;}
.x1f{left:40.740000px;}
.x49{left:54.679415px;}
.x48{left:64.823041px;}
.x2e{left:68.057568px;}
.x1d{left:71.107464px;}
.x1e{left:77.579969px;}
.x47{left:79.660178px;}
.x3d{left:81.947638px;}
.x1{left:85.039350px;}
.x2c{left:87.162992px;}
.x17{left:90.992100px;}
.x3b{left:92.925089px;}
.x9{left:95.508600px;}
.x2f{left:98.616244px;}
.x3c{left:103.152791px;}
.xc{left:106.299150px;}
.x22{left:108.187500px;}
.x2d{left:109.369297px;}
.x2b{left:115.295980px;}
.x3{left:121.793550px;}
.x7{left:124.782750px;}
.xf{left:127.559100px;}
.x3f{left:130.228618px;}
.x2{left:131.493750px;}
.x31{left:132.638404px;}
.x5{left:135.860700px;}
.x4f{left:136.982550px;}
.x30{left:138.902682px;}
.x8{left:141.510900px;}
.x4c{left:144.237300px;}
.x14{left:148.025250px;}
.x13{left:151.966650px;}
.x53{left:154.069800px;}
.x4a{left:157.573950px;}
.x4d{left:160.493250px;}
.x21{left:169.299450px;}
.x1a{left:180.344400px;}
.x3a{left:186.799272px;}
.x46{left:190.047448px;}
.x50{left:197.487450px;}
.x4b{left:202.692900px;}
.xb{left:207.857700px;}
.x33{left:209.683950px;}
.x40{left:211.637850px;}
.x51{left:213.009150px;}
.x2a{left:215.649472px;}
.x39{left:217.793596px;}
.x20{left:227.483711px;}
.x54{left:229.896600px;}
.x45{left:234.969220px;}
.x44{left:241.586300px;}
.x12{left:244.753500px;}
.x41{left:252.194850px;}
.xa{left:258.150150px;}
.x55{left:270.229500px;}
.x29{left:279.717662px;}
.x43{left:281.250314px;}
.x4{left:283.763550px;}
.x28{left:291.395978px;}
.x1b{left:295.102800px;}
.x4e{left:299.334900px;}
.x18{left:303.590550px;}
.x38{left:309.687311px;}
.x27{left:314.740106px;}
.x37{left:317.085774px;}
.x6{left:321.850500px;}
.x19{left:328.286250px;}
.x1c{left:329.813062px;}
.x11{left:331.809150px;}
.x52{left:340.318800px;}
.x26{left:343.923391px;}
.x25{left:349.762549px;}
.x56{left:351.790650px;}
.x35{left:383.624842px;}
.x24{left:408.129121px;}
.x16{left:412.199100px;}
.x15{left:416.140500px;}
.x57{left:418.579950px;}
.x34{left:442.784250px;}
.x42{left:453.127705px;}
.x58{left:455.353800px;}
.x36{left:461.801400px;}
.xd{left:470.275800px;}
.x23{left:472.334850px;}
.x59{left:516.002400px;}
.x5a{left:551.367600px;}
.xe{left:622.795200px;}
.x10{left:631.802100px;}
@media print{
.v3{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.145579pt;}
.v1{vertical-align:19.360000pt;}
.v2{vertical-align:21.120000pt;}
.ls18{letter-spacing:-0.810667pt;}
.ls45{letter-spacing:-0.512000pt;}
.ls17{letter-spacing:-0.506667pt;}
.ls14{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.373333pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.266667pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.213333pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.106667pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.053333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.000533pt;}
.ls2c{letter-spacing:0.006933pt;}
.ls1a{letter-spacing:0.007467pt;}
.ls2d{letter-spacing:0.009600pt;}
.ls32{letter-spacing:0.010133pt;}
.ls1b{letter-spacing:0.010667pt;}
.ls1c{letter-spacing:0.011200pt;}
.ls38{letter-spacing:0.015403pt;}
.ls37{letter-spacing:0.015936pt;}
.ls3a{letter-spacing:0.018393pt;}
.ls3c{letter-spacing:0.035770pt;}
.ls39{letter-spacing:0.036136pt;}
.ls4{letter-spacing:0.053333pt;}
.lsd{letter-spacing:0.064000pt;}
.ls31{letter-spacing:0.103888pt;}
.ls30{letter-spacing:0.124774pt;}
.ls10{letter-spacing:0.128000pt;}
.ls33{letter-spacing:0.155102pt;}
.ls35{letter-spacing:0.155633pt;}
.ls0{letter-spacing:0.160000pt;}
.ls34{letter-spacing:0.176017pt;}
.ls3e{letter-spacing:0.176532pt;}
.ls3d{letter-spacing:0.176872pt;}
.ls19{letter-spacing:0.192000pt;}
.ls42{letter-spacing:0.206080pt;}
.ls5{letter-spacing:0.256000pt;}
.ls46{letter-spacing:0.282591pt;}
.ls16{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls41{letter-spacing:0.430566pt;}
.ls40{letter-spacing:0.442249pt;}
.ls12{letter-spacing:0.448000pt;}
.ls3f{letter-spacing:0.480451pt;}
.ls29{letter-spacing:0.511578pt;}
.ls15{letter-spacing:0.512000pt;}
.ls27{letter-spacing:0.514197pt;}
.ls2a{letter-spacing:0.531116pt;}
.ls2b{letter-spacing:0.531855pt;}
.ls26{letter-spacing:0.532066pt;}
.ls44{letter-spacing:0.538931pt;}
.ls43{letter-spacing:0.549069pt;}
.ls2e{letter-spacing:0.659960pt;}
.ls20{letter-spacing:0.696290pt;}
.ls21{letter-spacing:0.696818pt;}
.ls22{letter-spacing:0.704000pt;}
.ls23{letter-spacing:0.706429pt;}
.ls25{letter-spacing:0.707168pt;}
.ls1e{letter-spacing:0.832000pt;}
.ls36{letter-spacing:0.843733pt;}
.ls1d{letter-spacing:0.853122pt;}
.ls2f{letter-spacing:0.960000pt;}
.ls3b{letter-spacing:5.303305pt;}
.ls28{letter-spacing:6.258482pt;}
.ls24{letter-spacing:8.363828pt;}
.ws2d{word-spacing:-17.333333pt;}
.ws3c{word-spacing:-16.960000pt;}
.ws3e{word-spacing:-16.448000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws1f{word-spacing:-15.936000pt;}
.ws3d{word-spacing:-15.872000pt;}
.ws3b{word-spacing:-15.808000pt;}
.ws48{word-spacing:-15.552000pt;}
.ws2{word-spacing:-14.666667pt;}
.ws4{word-spacing:-13.493333pt;}
.ws0{word-spacing:-13.333333pt;}
.wsa{word-spacing:-13.280000pt;}
.ws20{word-spacing:-12.160000pt;}
.ws1e{word-spacing:-12.133333pt;}
.ws23{word-spacing:-12.000000pt;}
.ws4d{word-spacing:-11.406080pt;}
.ws2e{word-spacing:-11.200000pt;}
.ws27{word-spacing:-10.422276pt;}
.ws2c{word-spacing:-10.304395pt;}
.ws1{word-spacing:-8.506667pt;}
.ws5{word-spacing:-6.960000pt;}
.ws51{word-spacing:-3.648000pt;}
.ws4c{word-spacing:-3.264000pt;}
.ws30{word-spacing:-3.200000pt;}
.ws44{word-spacing:-3.136000pt;}
.ws54{word-spacing:-3.072000pt;}
.wsc{word-spacing:-2.666667pt;}
.ws3f{word-spacing:-2.304000pt;}
.ws4f{word-spacing:-1.984000pt;}
.ws53{word-spacing:-1.856000pt;}
.ws39{word-spacing:-1.600000pt;}
.ws2f{word-spacing:-1.472000pt;}
.ws35{word-spacing:-1.344000pt;}
.ws4a{word-spacing:-1.280000pt;}
.ws43{word-spacing:-1.216000pt;}
.ws42{word-spacing:-0.960000pt;}
.ws32{word-spacing:-0.832000pt;}
.ws37{word-spacing:-0.704000pt;}
.ws1d{word-spacing:-0.512000pt;}
.ws1a{word-spacing:-0.448000pt;}
.ws16{word-spacing:-0.384000pt;}
.ws21{word-spacing:-0.320000pt;}
.ws11{word-spacing:-0.256000pt;}
.ws28{word-spacing:-0.192000pt;}
.ws7{word-spacing:-0.160000pt;}
.ws17{word-spacing:-0.128000pt;}
.ws18{word-spacing:-0.064000pt;}
.wsf{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.wsb{word-spacing:0.053333pt;}
.ws12{word-spacing:0.064000pt;}
.ws9{word-spacing:0.106667pt;}
.ws13{word-spacing:0.128000pt;}
.wse{word-spacing:0.160000pt;}
.ws15{word-spacing:0.192000pt;}
.ws8{word-spacing:0.213333pt;}
.ws1b{word-spacing:0.256000pt;}
.ws10{word-spacing:0.266667pt;}
.ws19{word-spacing:0.320000pt;}
.wsd{word-spacing:0.373333pt;}
.ws14{word-spacing:0.384000pt;}
.ws1c{word-spacing:0.448000pt;}
.ws22{word-spacing:0.506667pt;}
.ws50{word-spacing:0.512000pt;}
.ws46{word-spacing:0.576000pt;}
.ws24{word-spacing:0.810667pt;}
.ws58{word-spacing:1.344000pt;}
.ws38{word-spacing:1.472000pt;}
.ws31{word-spacing:1.856000pt;}
.ws56{word-spacing:1.920000pt;}
.ws59{word-spacing:2.240000pt;}
.ws4e{word-spacing:2.368000pt;}
.ws4b{word-spacing:2.624000pt;}
.ws34{word-spacing:3.008000pt;}
.ws57{word-spacing:3.200000pt;}
.ws3a{word-spacing:3.264000pt;}
.ws52{word-spacing:3.456000pt;}
.ws49{word-spacing:3.520000pt;}
.ws45{word-spacing:4.096000pt;}
.ws36{word-spacing:4.224000pt;}
.ws47{word-spacing:4.800000pt;}
.ws55{word-spacing:4.992000pt;}
.ws33{word-spacing:5.248000pt;}
.ws40{word-spacing:5.952000pt;}
.ws41{word-spacing:10.304000pt;}
.ws29{word-spacing:48.189726pt;}
.ws2b{word-spacing:61.005664pt;}
.ws2a{word-spacing:68.603744pt;}
.ws25{word-spacing:93.569905pt;}
.ws26{word-spacing:383.041711pt;}
._11{margin-left:-1064.271202pt;}
._4{margin-left:-15.161600pt;}
._1b{margin-left:-8.818133pt;}
._d{margin-left:-7.711463pt;}
._1{margin-left:-6.097600pt;}
._5{margin-left:-5.094400pt;}
._0{margin-left:-3.957333pt;}
._6{margin-left:-3.063467pt;}
._2{margin-left:-2.158933pt;}
._3{margin-left:-1.196800pt;}
._9{width:0.938667pt;}
._8{width:2.394667pt;}
._a{width:3.335999pt;}
._7{width:4.520001pt;}
._b{width:5.477331pt;}
._c{width:6.436275pt;}
._19{width:7.562878pt;}
._1a{width:8.566022pt;}
._18{width:9.637863pt;}
._17{width:10.928940pt;}
._f{width:24.945067pt;}
._e{width:37.190933pt;}
._13{width:70.328548pt;}
._12{width:81.531326pt;}
._16{width:83.474725pt;}
._15{width:93.751744pt;}
._14{width:106.325744pt;}
._10{width:571.710372pt;}
.fs6{font-size:27.840000pt;}
.fs2{font-size:34.026667pt;}
.fs5{font-size:37.120000pt;}
.fsd{font-size:44.455467pt;}
.fs13{font-size:44.800000pt;}
.fs11{font-size:45.594667pt;}
.fsb{font-size:46.116267pt;}
.fs7{font-size:48.000000pt;}
.fs9{font-size:48.533333pt;}
.fsf{font-size:50.296000pt;}
.fsa{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs8{font-size:69.333333pt;}
.fse{font-size:69.393600pt;}
.fs10{font-size:69.977067pt;}
.fs12{font-size:71.171200pt;}
.fsc{font-size:71.986133pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yf8{bottom:5.597874pt;}
.y12e{bottom:5.674124pt;}
.ydc{bottom:5.739399pt;}
.y116{bottom:6.332985pt;}
.yed{bottom:27.258800pt;}
.ydd{bottom:27.667684pt;}
.yf9{bottom:28.092340pt;}
.y126{bottom:31.241333pt;}
.y12f{bottom:32.084835pt;}
.y110{bottom:33.279067pt;}
.y117{bottom:33.668861pt;}
.yee{bottom:45.152125pt;}
.yfa{bottom:45.985665pt;}
.ydb{bottom:49.330800pt;}
.y127{bottom:53.765099pt;}
.y130{bottom:54.882168pt;}
.y10e{bottom:55.967333pt;}
.y118{bottom:58.276179pt;}
.yef{bottom:63.312183pt;}
.yfb{bottom:63.878991pt;}
.y1{bottom:70.961600pt;}
.y128{bottom:76.288864pt;}
.y131{bottom:77.405933pt;}
.yf0{bottom:81.205509pt;}
.yfc{bottom:81.772316pt;}
.y119{bottom:82.883497pt;}
.y10f{bottom:83.076877pt;}
.y129{bottom:98.812629pt;}
.yf1{bottom:99.098834pt;}
.yfd{bottom:99.665641pt;}
.y132{bottom:99.929699pt;}
.y11a{bottom:107.478241pt;}
.y111{bottom:108.408717pt;}
.yd5{bottom:115.134077pt;}
.yf2{bottom:116.992159pt;}
.yfe{bottom:117.558967pt;}
.y12a{bottom:121.324996pt;}
.y133{bottom:122.453464pt;}
.y20{bottom:128.503867pt;}
.y15a{bottom:129.114000pt;}
.y13e{bottom:129.340667pt;}
.y112{bottom:129.382149pt;}
.y81{bottom:129.806933pt;}
.y147{bottom:131.185200pt;}
.y11b{bottom:132.085559pt;}
.ye9{bottom:132.109600pt;}
.yd6{bottom:133.407647pt;}
.y10a{bottom:134.808533pt;}
.yf3{bottom:134.885485pt;}
.yff{bottom:135.452292pt;}
.y1f{bottom:142.903867pt;}
.y45{bottom:143.763067pt;}
.y12b{bottom:144.122329pt;}
.y134{bottom:144.977229pt;}
.y159{bottom:148.314000pt;}
.y8f{bottom:148.314133pt;}
.y13d{bottom:148.540667pt;}
.y67{bottom:149.006933pt;}
.y9b{bottom:149.914133pt;}
.y146{bottom:150.385200pt;}
.ye8{bottom:151.309733pt;}
.yf4{bottom:152.778810pt;}
.y100{bottom:153.345617pt;}
.y109{bottom:154.008533pt;}
.y113{bottom:154.957665pt;}
.y11c{bottom:156.680303pt;}
.y1e{bottom:161.263867pt;}
.y44{bottom:162.963067pt;}
.y12c{bottom:166.646095pt;}
.y158{bottom:167.514000pt;}
.y8e{bottom:167.514133pt;}
.y13c{bottom:167.740667pt;}
.y135{bottom:167.774563pt;}
.y80{bottom:168.206933pt;}
.y66{bottom:168.207067pt;}
.y9a{bottom:169.114133pt;}
.y145{bottom:169.585200pt;}
.ye7{bottom:170.509600pt;}
.yf5{bottom:170.672135pt;}
.y101{bottom:171.505675pt;}
.y108{bottom:173.208533pt;}
.yd7{bottom:178.682292pt;}
.y114{bottom:179.678149pt;}
.y11d{bottom:181.275047pt;}
.y43{bottom:182.163067pt;}
.y157{bottom:186.714000pt;}
.y8d{bottom:186.714133pt;}
.y13b{bottom:186.940667pt;}
.y7f{bottom:187.406933pt;}
.y65{bottom:187.407067pt;}
.y99{bottom:188.314133pt;}
.yf6{bottom:188.565461pt;}
.y144{bottom:188.785200pt;}
.y12d{bottom:189.169860pt;}
.y102{bottom:189.399001pt;}
.ye6{bottom:189.709600pt;}
.y1d{bottom:190.063867pt;}
.y136{bottom:190.298328pt;}
.y107{bottom:192.408533pt;}
.yb1{bottom:194.545867pt;}
.yd0{bottom:197.591200pt;}
.y1c{bottom:200.503867pt;}
.y42{bottom:201.363067pt;}
.y115{bottom:201.770667pt;}
.y11e{bottom:205.882365pt;}
.y156{bottom:205.914000pt;}
.y8c{bottom:205.914133pt;}
.y13a{bottom:206.140667pt;}
.yf7{bottom:206.458786pt;}
.y7e{bottom:206.606933pt;}
.y64{bottom:206.607067pt;}
.y103{bottom:207.292326pt;}
.y98{bottom:207.514133pt;}
.y143{bottom:207.985200pt;}
.ye5{bottom:208.909733pt;}
.yd4{bottom:210.456400pt;}
.yd8{bottom:211.298022pt;}
.y106{bottom:211.608533pt;}
.y1b{bottom:214.903867pt;}
.yb0{bottom:217.223067pt;}
.y41{bottom:220.563067pt;}
.y138{bottom:224.189918pt;}
.y155{bottom:225.114000pt;}
.y8b{bottom:225.114133pt;}
.y178{bottom:225.791333pt;}
.y7d{bottom:225.806933pt;}
.y63{bottom:225.807067pt;}
.y97{bottom:226.714133pt;}
.ye4{bottom:228.109600pt;}
.ycf{bottom:229.056533pt;}
.y121{bottom:230.808533pt;}
.y1a{bottom:233.263867pt;}
.y104{bottom:238.693333pt;}
.y40{bottom:239.763067pt;}
.yaf{bottom:239.900133pt;}
.yda{bottom:241.113311pt;}
.y11f{bottom:241.137600pt;}
.y137{bottom:243.922133pt;}
.y139{bottom:244.238267pt;}
.y154{bottom:244.314000pt;}
.y8a{bottom:244.314133pt;}
.y177{bottom:244.991333pt;}
.y62{bottom:245.006933pt;}
.y96{bottom:245.914133pt;}
.y142{bottom:246.082800pt;}
.ye3{bottom:247.309733pt;}
.y19{bottom:247.663867pt;}
.y105{bottom:249.706133pt;}
.yce{bottom:251.733733pt;}
.ycb{bottom:255.472267pt;}
.yd9{bottom:261.071467pt;}
.yae{bottom:262.577333pt;}
.y153{bottom:263.514000pt;}
.y89{bottom:263.514133pt;}
.y176{bottom:264.191333pt;}
.y7c{bottom:264.206933pt;}
.y61{bottom:264.207067pt;}
.y95{bottom:265.114133pt;}
.ye2{bottom:266.509600pt;}
.y120{bottom:268.906133pt;}
.yca{bottom:270.672400pt;}
.ya9{bottom:273.916000pt;}
.ycd{bottom:274.410933pt;}
.y3f{bottom:277.860667pt;}
.y125{bottom:278.197333pt;}
.yec{bottom:281.070667pt;}
.y152{bottom:282.714000pt;}
.y88{bottom:282.714133pt;}
.y175{bottom:283.391333pt;}
.y18{bottom:283.403600pt;}
.y7b{bottom:283.406933pt;}
.y60{bottom:283.407067pt;}
.y94{bottom:284.314133pt;}
.yad{bottom:285.254533pt;}
.ye1{bottom:285.709600pt;}
.ycc{bottom:297.088133pt;}
.y10d{bottom:298.958667pt;}
.y17{bottom:299.403600pt;}
.y151{bottom:301.914000pt;}
.y87{bottom:301.914133pt;}
.y174{bottom:302.591333pt;}
.y7a{bottom:302.606933pt;}
.y5f{bottom:302.607067pt;}
.y93{bottom:303.514133pt;}
.y141{bottom:304.678133pt;}
.ye0{bottom:304.909733pt;}
.yac{bottom:307.931733pt;}
.y16{bottom:315.403600pt;}
.yc9{bottom:319.765200pt;}
.y150{bottom:321.114000pt;}
.y86{bottom:321.114133pt;}
.y173{bottom:321.791333pt;}
.y79{bottom:321.806933pt;}
.y5e{bottom:321.807067pt;}
.y92{bottom:322.714133pt;}
.ydf{bottom:324.109600pt;}
.yab{bottom:330.608800pt;}
.y15{bottom:331.403600pt;}
.y3e{bottom:336.456000pt;}
.y14f{bottom:340.314000pt;}
.y85{bottom:340.314133pt;}
.y172{bottom:340.991333pt;}
.y5d{bottom:341.006933pt;}
.y91{bottom:341.914133pt;}
.yc8{bottom:342.442400pt;}
.y14{bottom:347.403600pt;}
.y3d{bottom:352.456000pt;}
.yaa{bottom:353.286000pt;}
.y14e{bottom:359.514000pt;}
.y84{bottom:359.514133pt;}
.y171{bottom:360.191333pt;}
.y78{bottom:360.206933pt;}
.y5c{bottom:360.207067pt;}
.yde{bottom:362.207333pt;}
.y13{bottom:363.403600pt;}
.yc6{bottom:365.119600pt;}
.y3c{bottom:368.456000pt;}
.ya8{bottom:375.916000pt;}
.y14d{bottom:378.714000pt;}
.y83{bottom:378.714133pt;}
.y170{bottom:379.391333pt;}
.y12{bottom:379.403600pt;}
.y77{bottom:379.406933pt;}
.y5b{bottom:379.407067pt;}
.y90{bottom:380.011733pt;}
.y3b{bottom:384.456000pt;}
.yc7{bottom:387.796800pt;}
.ya7{bottom:391.116000pt;}
.yd3{bottom:394.640000pt;}
.y11{bottom:395.403600pt;}
.y14c{bottom:397.914000pt;}
.y16f{bottom:398.591333pt;}
.y76{bottom:398.606933pt;}
.y5a{bottom:398.607067pt;}
.y3a{bottom:400.456000pt;}
.yc5{bottom:410.473867pt;}
.y10{bottom:411.403600pt;}
.y39{bottom:416.456000pt;}
.y82{bottom:416.811733pt;}
.y14b{bottom:417.114000pt;}
.y16e{bottom:417.791333pt;}
.y75{bottom:417.806933pt;}
.y59{bottom:417.807067pt;}
.yf{bottom:427.403600pt;}
.ya6{bottom:427.596000pt;}
.y38{bottom:432.456000pt;}
.yc4{bottom:433.151067pt;}
.y14a{bottom:436.314000pt;}
.y16d{bottom:436.991333pt;}
.y58{bottom:437.006933pt;}
.ye{bottom:443.403600pt;}
.ya5{bottom:443.596000pt;}
.yc1{bottom:444.489600pt;}
.y37{bottom:448.456000pt;}
.y149{bottom:455.514000pt;}
.yc3{bottom:455.828267pt;}
.y16c{bottom:456.191333pt;}
.y74{bottom:456.206933pt;}
.y57{bottom:456.207067pt;}
.yd{bottom:459.403600pt;}
.y36{bottom:464.456000pt;}
.ya4{bottom:474.714000pt;}
.y16b{bottom:475.391333pt;}
.y73{bottom:475.406933pt;}
.y56{bottom:475.407067pt;}
.yc2{bottom:478.505467pt;}
.y35{bottom:480.456000pt;}
.y6{bottom:485.975067pt;}
.ya3{bottom:493.914000pt;}
.y16a{bottom:494.591333pt;}
.y72{bottom:494.606933pt;}
.y55{bottom:494.607067pt;}
.y34{bottom:496.456000pt;}
.yc0{bottom:501.182533pt;}
.y33{bottom:512.456000pt;}
.ya2{bottom:513.114000pt;}
.y169{bottom:513.791333pt;}
.y71{bottom:513.806933pt;}
.y54{bottom:513.807067pt;}
.y5{bottom:515.308400pt;}
.ybf{bottom:522.203733pt;}
.y32{bottom:528.456000pt;}
.ya1{bottom:532.314000pt;}
.y168{bottom:532.991333pt;}
.y53{bottom:533.006933pt;}
.ybe{bottom:537.403733pt;}
.y31{bottom:544.456000pt;}
.y4{bottom:544.641733pt;}
.y148{bottom:551.211733pt;}
.ya0{bottom:551.514000pt;}
.y167{bottom:552.191333pt;}
.y70{bottom:552.206933pt;}
.y52{bottom:552.207067pt;}
.ybd{bottom:558.424933pt;}
.y30{bottom:560.456000pt;}
.y3{bottom:562.241733pt;}
.yeb{bottom:562.688800pt;}
.y124{bottom:565.888933pt;}
.y9f{bottom:570.714000pt;}
.y166{bottom:571.391333pt;}
.y6f{bottom:571.406933pt;}
.y51{bottom:571.407067pt;}
.y2f{bottom:576.456000pt;}
.yea{bottom:578.688800pt;}
.y2{bottom:579.841733pt;}
.ybc{bottom:581.102133pt;}
.y10c{bottom:581.888800pt;}
.y123{bottom:581.888933pt;}
.y9e{bottom:589.914000pt;}
.y165{bottom:590.591333pt;}
.y6e{bottom:590.606933pt;}
.y50{bottom:590.607067pt;}
.y2e{bottom:592.456000pt;}
.y10b{bottom:597.888800pt;}
.y122{bottom:597.888933pt;}
.y140{bottom:601.088933pt;}
.ybb{bottom:603.779333pt;}
.y2d{bottom:608.456000pt;}
.y9d{bottom:609.114000pt;}
.y164{bottom:609.791333pt;}
.y6d{bottom:609.806933pt;}
.y4f{bottom:609.807067pt;}
.y13f{bottom:617.088933pt;}
.yb4{bottom:620.512400pt;}
.y2c{bottom:624.456000pt;}
.yba{bottom:626.456400pt;}
.y163{bottom:628.991333pt;}
.y4e{bottom:629.006933pt;}
.yc{bottom:632.230000pt;}
.y9c{bottom:647.211733pt;}
.y162{bottom:648.191333pt;}
.y6c{bottom:648.206933pt;}
.y4d{bottom:648.207067pt;}
.yb9{bottom:649.133600pt;}
.yb{bottom:652.009467pt;}
.y2b{bottom:656.456000pt;}
.y161{bottom:667.391333pt;}
.y6b{bottom:667.406933pt;}
.y4c{bottom:667.407067pt;}
.ya{bottom:671.209467pt;}
.yb8{bottom:671.810800pt;}
.y2a{bottom:672.456000pt;}
.y160{bottom:686.591333pt;}
.y6a{bottom:686.606933pt;}
.y4b{bottom:686.607067pt;}
.y29{bottom:688.456000pt;}
.yb7{bottom:694.488000pt;}
.yd2{bottom:697.088933pt;}
.y28{bottom:704.456000pt;}
.y15f{bottom:705.791333pt;}
.y69{bottom:705.806933pt;}
.y4a{bottom:705.807067pt;}
.y9{bottom:709.609600pt;}
.yd1{bottom:713.088933pt;}
.yb6{bottom:717.165067pt;}
.y27{bottom:720.456000pt;}
.y15e{bottom:724.991333pt;}
.y49{bottom:725.006933pt;}
.y8{bottom:732.589067pt;}
.y26{bottom:736.456000pt;}
.yb5{bottom:739.842267pt;}
.y15d{bottom:744.191467pt;}
.y48{bottom:744.207067pt;}
.y25{bottom:752.456000pt;}
.y7{bottom:754.989067pt;}
.yb3{bottom:762.472267pt;}
.y15c{bottom:763.391467pt;}
.y47{bottom:763.406933pt;}
.y68{bottom:763.407067pt;}
.y24{bottom:768.456000pt;}
.yb2{bottom:777.672400pt;}
.y15b{bottom:782.591333pt;}
.y46{bottom:782.607067pt;}
.y23{bottom:784.456000pt;}
.y21{bottom:841.135867pt;}
.y22{bottom:841.148933pt;}
.h8{height:26.277187pt;}
.h1a{height:30.923336pt;}
.h19{height:31.212755pt;}
.hf{height:31.569827pt;}
.h13{height:39.007067pt;}
.h1c{height:39.309375pt;}
.h10{height:41.715406pt;}
.h9{height:42.117188pt;}
.hd{height:42.234375pt;}
.h16{height:44.131793pt;}
.hc{height:44.457031pt;}
.hb{height:44.580729pt;}
.h4{height:46.796875pt;}
.h2{height:46.927083pt;}
.h3{height:51.619792pt;}
.h7{height:56.156250pt;}
.h6{height:56.312500pt;}
.ha{height:60.835938pt;}
.h14{height:60.888818pt;}
.h17{height:61.400776pt;}
.h1b{height:62.448558pt;}
.h11{height:63.163614pt;}
.h5{height:65.515625pt;}
.h12{height:259.578667pt;}
.h15{height:262.198667pt;}
.h18{height:265.342667pt;}
.he{height:282.737333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:377.953333pt;}
.w3{width:448.462667pt;}
.w4{width:453.210667pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x32{left:8.692019pt;}
.x3e{left:9.995493pt;}
.x1f{left:36.213333pt;}
.x49{left:48.603925pt;}
.x48{left:57.620481pt;}
.x2e{left:60.495616pt;}
.x1d{left:63.206635pt;}
.x1e{left:68.959972pt;}
.x47{left:70.809047pt;}
.x3d{left:72.842345pt;}
.x1{left:75.590533pt;}
.x2c{left:77.478215pt;}
.x17{left:80.881867pt;}
.x3b{left:82.600079pt;}
.x9{left:84.896533pt;}
.x2f{left:87.658884pt;}
.x3c{left:91.691370pt;}
.xc{left:94.488133pt;}
.x22{left:96.166667pt;}
.x2d{left:97.217153pt;}
.x2b{left:102.485315pt;}
.x3{left:108.260933pt;}
.x7{left:110.918000pt;}
.xf{left:113.385867pt;}
.x3f{left:115.758772pt;}
.x2{left:116.883333pt;}
.x31{left:117.900803pt;}
.x5{left:120.765067pt;}
.x4f{left:121.762267pt;}
.x30{left:123.469051pt;}
.x8{left:125.787467pt;}
.x4c{left:128.210933pt;}
.x14{left:131.578000pt;}
.x13{left:135.081467pt;}
.x53{left:136.950933pt;}
.x4a{left:140.065733pt;}
.x4d{left:142.660667pt;}
.x21{left:150.488400pt;}
.x1a{left:160.306133pt;}
.x3a{left:166.043797pt;}
.x46{left:168.931065pt;}
.x50{left:175.544400pt;}
.x4b{left:180.171467pt;}
.xb{left:184.762400pt;}
.x33{left:186.385733pt;}
.x40{left:188.122533pt;}
.x51{left:189.341467pt;}
.x2a{left:191.688420pt;}
.x39{left:193.594308pt;}
.x20{left:202.207743pt;}
.x54{left:204.352533pt;}
.x45{left:208.861529pt;}
.x44{left:214.743378pt;}
.x12{left:217.558667pt;}
.x41{left:224.173200pt;}
.xa{left:229.466800pt;}
.x55{left:240.204000pt;}
.x29{left:248.637922pt;}
.x43{left:250.000279pt;}
.x4{left:252.234267pt;}
.x28{left:259.018647pt;}
.x1b{left:262.313600pt;}
.x4e{left:266.075467pt;}
.x18{left:269.858267pt;}
.x38{left:275.277610pt;}
.x27{left:279.768983pt;}
.x37{left:281.854021pt;}
.x6{left:286.089333pt;}
.x19{left:291.810000pt;}
.x1c{left:293.167166pt;}
.x11{left:294.941467pt;}
.x52{left:302.505600pt;}
.x26{left:305.709681pt;}
.x25{left:310.900044pt;}
.x56{left:312.702800pt;}
.x35{left:340.999859pt;}
.x24{left:362.781441pt;}
.x16{left:366.399200pt;}
.x15{left:369.902667pt;}
.x57{left:372.071067pt;}
.x34{left:393.586000pt;}
.x42{left:402.780182pt;}
.x58{left:404.758933pt;}
.x36{left:410.490133pt;}
.xd{left:418.022933pt;}
.x23{left:419.853200pt;}
.x59{left:458.668800pt;}
.x5a{left:490.104533pt;}
.xe{left:553.595733pt;}
.x10{left:561.601867pt;}
}




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