
    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_9a546804ae93bc42b0ec98be.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_c63bf384ec771fc22c7a45dc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.097168;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_f665117460005bbf79fff4cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_d5d10ac81793174f0f5b1e6e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_de6fcc8249845200576ae900.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_9337a8aa3470cb84c4c306e6.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c2c0633fe35019b89b847f02.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_79962ed250db930c8fe01861.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_d615739eb1ac5cc6c2ff8bf8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_ea530c1ccd4dbd29493240f1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.372070;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;}
.m14{transform:matrix(0.154477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154477,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.169777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169777,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.185617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185617,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.187157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187157,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.194583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194583,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.196237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196237,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.233721,0.000000,-0.077899,0.237554,0,0);-ms-transform:matrix(0.233721,0.000000,-0.077899,0.237554,0,0);-webkit-transform:matrix(0.233721,0.000000,-0.077899,0.237554,0,0);}
.m15{transform:matrix(0.234098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234098,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.236618,0.000000,-0.078864,0.237235,0,0);-ms-transform:matrix(0.236618,0.000000,-0.078864,0.237235,0,0);-webkit-transform:matrix(0.236618,0.000000,-0.078864,0.237235,0,0);}
.mb{transform:matrix(0.241363,0.000000,0.000001,0.250000,0,0);-ms-transform:matrix(0.241363,0.000000,0.000001,0.250000,0,0);-webkit-transform:matrix(0.241363,0.000000,0.000001,0.250000,0,0);}
.m7{transform:matrix(0.244290,0.000000,-0.081421,0.236370,0,0);-ms-transform:matrix(0.244290,0.000000,-0.081421,0.236370,0,0);-webkit-transform:matrix(0.244290,0.000000,-0.081421,0.236370,0,0);}
.m5{transform:matrix(0.244355,0.000000,-0.081443,0.236362,0,0);-ms-transform:matrix(0.244355,0.000000,-0.081443,0.236362,0,0);-webkit-transform:matrix(0.244355,0.000000,-0.081443,0.236362,0,0);}
.m12{transform:matrix(0.244384,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.244384,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244384,0.000001,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.244384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244384,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.244384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244384,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245942,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246145,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246229,0.000001,-0.082068,0.236146,0,0);-ms-transform:matrix(0.246229,0.000001,-0.082068,0.236146,0,0);-webkit-transform:matrix(0.246229,0.000001,-0.082068,0.236146,0,0);}
.m25{transform:matrix(0.246943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246943,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248991,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249349,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);}
.m22{transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251832,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.256407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256407,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.256464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256464,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.256498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256498,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.257511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257511,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.258376,0.000000,0.000001,0.250000,0,0);-ms-transform:matrix(0.258376,0.000000,0.000001,0.250000,0,0);-webkit-transform:matrix(0.258376,0.000000,0.000001,0.250000,0,0);}
.m26{transform:matrix(0.258406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258406,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.258455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258455,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.259054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259054,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.259054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259054,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.260197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260197,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.260197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260197,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.261469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261469,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.263429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263429,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.263755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263755,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.263788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263788,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.268554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268554,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.270582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270582,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.v1{vertical-align:-61.166952px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-3.000000px;}
.lsa{letter-spacing:-2.994000px;}
.ls7{letter-spacing:-2.988000px;}
.ls9{letter-spacing:-2.700000px;}
.ls23{letter-spacing:-0.600000px;}
.ls24{letter-spacing:-0.252000px;}
.ls15{letter-spacing:-0.135076px;}
.ls6{letter-spacing:-0.012000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls0{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.150000px;}
.ls20{letter-spacing:0.252000px;}
.ls2{letter-spacing:0.300000px;}
.ls14{letter-spacing:0.303980px;}
.ls10{letter-spacing:0.600000px;}
.ls21{letter-spacing:5.700000px;}
.lsf{letter-spacing:6.180841px;}
.ls1d{letter-spacing:6.960000px;}
.ls1a{letter-spacing:9.646948px;}
.ls19{letter-spacing:9.784988px;}
.ls18{letter-spacing:9.785695px;}
.ls17{letter-spacing:10.067235px;}
.ls13{letter-spacing:10.200000px;}
.ls12{letter-spacing:10.564172px;}
.lsc{letter-spacing:11.428141px;}
.ls1c{letter-spacing:13.500000px;}
.lse{letter-spacing:35.409127px;}
.lsd{letter-spacing:36.600000px;}
.ls1e{letter-spacing:39.900000px;}
.ls16{letter-spacing:47.352463px;}
.lsb{letter-spacing:54.984000px;}
.ls11{letter-spacing:88.492669px;}
.ls1f{letter-spacing:101.100000px;}
.ls22{letter-spacing:111.252000px;}
.ls1b{letter-spacing:144.252000px;}
.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;}
}
.wsf{word-spacing:-88.563487px;}
.ws1d{word-spacing:-47.419565px;}
.wsb{word-spacing:-39.528000px;}
.ws1b{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.ws2c{word-spacing:-16.500000px;}
.ws2e{word-spacing:-16.248000px;}
.ws2d{word-spacing:-15.900000px;}
.ws1f{word-spacing:-15.878101px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.ws1a{word-spacing:-0.075759px;}
.ws24{word-spacing:-0.072455px;}
.ws29{word-spacing:-0.069631px;}
.ws27{word-spacing:-0.069628px;}
.ws25{word-spacing:-0.041942px;}
.ws14{word-spacing:-0.041179px;}
.ws11{word-spacing:-0.039147px;}
.ws1e{word-spacing:-0.038843px;}
.wsa{word-spacing:0.000000px;}
.ws12{word-spacing:32.866854px;}
.ws17{word-spacing:33.003559px;}
.wse{word-spacing:33.202513px;}
.ws15{word-spacing:33.417487px;}
.ws10{word-spacing:36.045336px;}
.ws26{word-spacing:36.300001px;}
.ws16{word-spacing:36.345692px;}
.ws2b{word-spacing:36.444911px;}
.ws13{word-spacing:36.901437px;}
.ws22{word-spacing:47.910857px;}
.wsd{word-spacing:52.284272px;}
.wsc{word-spacing:73.908761px;}
.ws1c{word-spacing:86.427427px;}
.ws21{word-spacing:87.031346px;}
.ws23{word-spacing:105.646718px;}
.ws28{word-spacing:105.845615px;}
.ws2a{word-spacing:106.418438px;}
.ws20{word-spacing:112.683153px;}
.ws18{word-spacing:167.585349px;}
.ws19{word-spacing:448.024898px;}
._49{margin-left:-902.289120px;}
._51{margin-left:-517.085041px;}
._50{margin-left:-474.460900px;}
._52{margin-left:-438.227118px;}
._53{margin-left:-413.150113px;}
._4e{margin-left:-396.823173px;}
._39{margin-left:-292.808838px;}
._33{margin-left:-202.706304px;}
._36{margin-left:-120.984441px;}
._37{margin-left:-111.890751px;}
._3b{margin-left:-30.381717px;}
._4f{margin-left:-7.643413px;}
._4c{margin-left:-5.473820px;}
._15{margin-left:-4.248000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._b{width:2.310000px;}
._8{width:4.176000px;}
._1d{width:6.120000px;}
._9{width:7.344000px;}
._a{width:8.412000px;}
._10{width:9.546000px;}
._6{width:11.016000px;}
._7{width:12.456000px;}
._11{width:13.680000px;}
._12{width:14.760000px;}
._e{width:16.704000px;}
._5d{width:18.150000px;}
._3d{width:19.224000px;}
._2d{width:20.592000px;}
._14{width:21.744000px;}
._13{width:23.400000px;}
._1f{width:24.582000px;}
._c{width:25.632000px;}
._d{width:26.856000px;}
._1e{width:28.008000px;}
._f{width:29.118000px;}
._1a{width:31.104000px;}
._23{width:32.760000px;}
._5{width:34.176000px;}
._4{width:35.430000px;}
._28{width:36.576000px;}
._17{width:37.800000px;}
._2a{width:39.096000px;}
._32{width:40.248000px;}
._38{width:42.048000px;}
._1b{width:43.704000px;}
._24{width:45.672000px;}
._18{width:47.736000px;}
._19{width:49.032000px;}
._1c{width:50.256000px;}
._27{width:51.624000px;}
._29{width:53.856000px;}
._40{width:54.936000px;}
._3a{width:56.664000px;}
._3e{width:58.380000px;}
._46{width:59.671209px;}
._25{width:62.928000px;}
._26{width:64.296000px;}
._21{width:65.376000px;}
._22{width:66.804000px;}
._3f{width:68.196000px;}
._3c{width:69.540000px;}
._16{width:78.048000px;}
._20{width:79.806000px;}
._47{width:82.132897px;}
._48{width:84.592862px;}
._56{width:88.110000px;}
._34{width:89.335626px;}
._4a{width:94.309431px;}
._2b{width:95.904000px;}
._2c{width:97.416000px;}
._59{width:99.418237px;}
._35{width:100.465763px;}
._30{width:101.664000px;}
._2f{width:102.888000px;}
._5c{width:104.610000px;}
._4d{width:108.033628px;}
._45{width:111.321820px;}
._5b{width:113.022000px;}
._5a{width:114.282000px;}
._31{width:117.672000px;}
._57{width:139.788000px;}
._54{width:169.488000px;}
._41{width:177.811096px;}
._4b{width:180.000000px;}
._43{width:190.900831px;}
._44{width:192.809957px;}
._42{width:197.391861px;}
._58{width:279.774000px;}
._2e{width:293.076029px;}
._55{width:367.356000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.804417px;}
.fs1e{font-size:38.842865px;}
.fs16{font-size:39.146902px;}
.fsa{font-size:40.998793px;}
.fs13{font-size:41.035971px;}
.fs18{font-size:41.178859px;}
.fs24{font-size:41.941548px;}
.fsc{font-size:43.364414px;}
.fs8{font-size:53.592176px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1d{font-size:67.102040px;}
.fs1f{font-size:67.240497px;}
.fs15{font-size:67.627271px;}
.fs10{font-size:69.306210px;}
.fs19{font-size:69.627762px;}
.fs25{font-size:69.630955px;}
.fs14{font-size:70.817702px;}
.fsb{font-size:70.945541px;}
.fs17{font-size:71.101036px;}
.fs20{font-size:71.242436px;}
.fse{font-size:71.815614px;}
.fs5{font-size:72.000000px;}
.fs23{font-size:72.455092px;}
.fsf{font-size:73.302681px;}
.fs6{font-size:73.372105px;}
.fsd{font-size:75.039082px;}
.fs1c{font-size:75.758781px;}
.fs12{font-size:79.991927px;}
.fs0{font-size:84.000000px;}
.fs7{font-size:84.182909px;}
.fs11{font-size:84.296016px;}
.fs21{font-size:91.077340px;}
.fs22{font-size:94.874549px;}
.fs1a{font-size:102.771363px;}
.fs1b{font-size:113.029779px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y7e{bottom:2.700030px;}
.y9e{bottom:3.249985px;}
.y9a{bottom:3.250002px;}
.yf7{bottom:3.270392px;}
.y98{bottom:3.270409px;}
.y109{bottom:3.270428px;}
.yb8{bottom:3.270463px;}
.y2a{bottom:3.900000px;}
.yd2{bottom:4.263695px;}
.y167{bottom:4.535725px;}
.y102{bottom:4.535752px;}
.yfa{bottom:4.535780px;}
.ya3{bottom:4.571370px;}
.y84{bottom:4.621197px;}
.y6b{bottom:4.621237px;}
.y83{bottom:4.621239px;}
.y77{bottom:5.120624px;}
.y7{bottom:5.400000px;}
.yd7{bottom:5.606451px;}
.y110{bottom:5.640066px;}
.ya0{bottom:5.684213px;}
.ycd{bottom:5.684239px;}
.yec{bottom:5.684265px;}
.yb{bottom:6.000000px;}
.y142{bottom:6.090001px;}
.y14a{bottom:6.090030px;}
.y139{bottom:6.090058px;}
.yc{bottom:6.750000px;}
.ydf{bottom:6.885000px;}
.yc5{bottom:6.900000px;}
.yc7{bottom:7.050000px;}
.ya9{bottom:7.569360px;}
.y152{bottom:7.569390px;}
.y13c{bottom:7.569419px;}
.y144{bottom:7.569422px;}
.y14d{bottom:7.569739px;}
.ya6{bottom:7.630818px;}
.y80{bottom:7.630852px;}
.yad{bottom:7.630877px;}
.y69{bottom:7.630886px;}
.y7f{bottom:7.630892px;}
.yd1{bottom:8.594366px;}
.yd3{bottom:8.594372px;}
.y10f{bottom:8.627979px;}
.y168{bottom:9.142740px;}
.y103{bottom:9.142779px;}
.yfb{bottom:9.142817px;}
.ya2{bottom:9.178532px;}
.y140{bottom:9.461292px;}
.y148{bottom:9.461325px;}
.y137{bottom:9.461358px;}
.y111{bottom:9.970878px;}
.yd8{bottom:9.970917px;}
.y9f{bottom:10.048924px;}
.yce{bottom:10.048962px;}
.yed{bottom:10.049001px;}
.yb2{bottom:10.704494px;}
.y141{bottom:10.766303px;}
.y149{bottom:10.766319px;}
.y156{bottom:10.766320px;}
.y138{bottom:10.766332px;}
.y14b{bottom:10.766343px;}
.y13a{bottom:10.766382px;}
.y9d{bottom:11.214030px;}
.y99{bottom:11.214038px;}
.yb1{bottom:11.271829px;}
.yb3{bottom:12.822597px;}
.yd6{bottom:17.491362px;}
.ya{bottom:19.950000px;}
.y7a{bottom:20.412381px;}
.y72{bottom:20.412394px;}
.y74{bottom:20.412400px;}
.y6{bottom:20.550000px;}
.yc3{bottom:22.950000px;}
.y29{bottom:24.600000px;}
.y76{bottom:25.953687px;}
.y70{bottom:25.953690px;}
.y6f{bottom:30.547612px;}
.ye6{bottom:30.750000px;}
.y71{bottom:31.600664px;}
.y9{bottom:33.900000px;}
.y79{bottom:35.072126px;}
.y5{bottom:36.000000px;}
.y6d{bottom:41.735923px;}
.y75{bottom:42.506873px;}
.y78{bottom:42.506877px;}
.y73{bottom:42.506880px;}
.y28{bottom:45.300000px;}
.y6e{bottom:48.224690px;}
.ye5{bottom:54.600000px;}
.yf2{bottom:57.000000px;}
.y3{bottom:57.637500px;}
.y27{bottom:66.000000px;}
.ye4{bottom:78.450000px;}
.yf0{bottom:80.700000px;}
.y2{bottom:81.637500px;}
.y26{bottom:86.700000px;}
.ye3{bottom:102.150000px;}
.y25{bottom:107.400000px;}
.y3d{bottom:108.637500px;}
.y12e{bottom:113.587500px;}
.y11a{bottom:113.887500px;}
.yef{bottom:114.750000px;}
.yaa{bottom:115.837500px;}
.ya8{bottom:115.875000px;}
.y16c{bottom:119.737500px;}
.y18e{bottom:124.087500px;}
.ye2{bottom:126.000000px;}
.y24{bottom:128.100000px;}
.y3c{bottom:132.337500px;}
.ye7{bottom:132.487500px;}
.y12c{bottom:137.437500px;}
.y12d{bottom:137.475000px;}
.y119{bottom:137.737500px;}
.yee{bottom:138.600000px;}
.y16b{bottom:143.587500px;}
.y18d{bottom:145.837500px;}
.ya7{bottom:146.287500px;}
.ya5{bottom:146.325000px;}
.y67{bottom:146.587500px;}
.y23{bottom:148.800000px;}
.ye1{bottom:149.835000px;}
.ye0{bottom:150.045000px;}
.y3b{bottom:156.195000px;}
.y118{bottom:161.595000px;}
.yea{bottom:162.330000px;}
.y12b{bottom:163.545000px;}
.y1bc{bottom:164.430000px;}
.y169{bottom:167.430000px;}
.y16a{bottom:167.475000px;}
.y18c{bottom:167.745000px;}
.y22{bottom:169.545000px;}
.y66{bottom:170.445000px;}
.ya4{bottom:172.545000px;}
.ya1{bottom:172.575000px;}
.y3a{bottom:180.045000px;}
.y12a{bottom:183.495000px;}
.y117{bottom:185.295000px;}
.y1bb{bottom:188.145000px;}
.y18b{bottom:189.495000px;}
.y21{bottom:190.245000px;}
.y65{bottom:194.295000px;}
.y165{bottom:201.345000px;}
.y166{bottom:201.375000px;}
.y39{bottom:203.745000px;}
.y9b{bottom:206.445000px;}
.y9c{bottom:206.475000px;}
.y116{bottom:209.130000px;}
.y18a{bottom:211.395000px;}
.y1ba{bottom:211.995000px;}
.y64{bottom:217.995000px;}
.y38{bottom:227.595000px;}
.y115{bottom:232.995000px;}
.y189{bottom:233.130000px;}
.y1b9{bottom:235.245000px;}
.y164{bottom:235.395000px;}
.y96{bottom:240.495000px;}
.y97{bottom:240.524980px;}
.y63{bottom:241.845000px;}
.y37{bottom:251.445000px;}
.y188{bottom:255.045000px;}
.y114{bottom:256.695000px;}
.y1b8{bottom:256.995000px;}
.y163{bottom:259.245000px;}
.y62{bottom:265.695000px;}
.y95{bottom:270.045000px;}
.y36{bottom:275.145000px;}
.y187{bottom:276.795000px;}
.y1b7{bottom:278.745000px;}
.y113{bottom:280.545000px;}
.y162{bottom:282.945000px;}
.y61{bottom:289.395000px;}
.y94{bottom:293.745000px;}
.y186{bottom:298.695000px;}
.y35{bottom:298.995000px;}
.y1b6{bottom:300.630000px;}
.y112{bottom:304.245000px;}
.y10e{bottom:304.275000px;}
.y161{bottom:306.795000px;}
.y60{bottom:313.245000px;}
.yde{bottom:317.445000px;}
.y93{bottom:317.580000px;}
.y185{bottom:320.445000px;}
.y1b5{bottom:322.395000px;}
.y34{bottom:322.845000px;}
.y160{bottom:330.630000px;}
.y5f{bottom:337.095000px;}
.y10d{bottom:339.495000px;}
.y92{bottom:341.445000px;}
.y184{bottom:342.345000px;}
.y1b4{bottom:344.295000px;}
.y33{bottom:346.545000px;}
.ydd{bottom:348.945000px;}
.y15f{bottom:354.495000px;}
.y129{bottom:354.795000px;}
.y5e{bottom:360.945000px;}
.y10c{bottom:363.345000px;}
.y183{bottom:364.095000px;}
.y91{bottom:365.145000px;}
.y1b3{bottom:366.045000px;}
.y32{bottom:370.395000px;}
.ydc{bottom:372.795000px;}
.y15e{bottom:378.195000px;}
.y128{bottom:378.495000px;}
.y5d{bottom:384.675000px;}
.y182{bottom:386.025000px;}
.y10b{bottom:387.075000px;}
.y1b2{bottom:387.975000px;}
.y90{bottom:389.025000px;}
.y31{bottom:394.275000px;}
.ydb{bottom:396.525000px;}
.y15d{bottom:402.075000px;}
.y127{bottom:402.375000px;}
.y181{bottom:407.775000px;}
.y5c{bottom:408.525000px;}
.y1b1{bottom:409.725000px;}
.y10a{bottom:410.925000px;}
.y8f{bottom:412.875000px;}
.y30{bottom:418.125000px;}
.yda{bottom:420.375000px;}
.y15c{bottom:425.925000px;}
.y126{bottom:426.074959px;}
.y125{bottom:426.075000px;}
.y180{bottom:429.525000px;}
.y1b0{bottom:431.625000px;}
.y5b{bottom:432.375000px;}
.y108{bottom:434.774959px;}
.y107{bottom:434.775000px;}
.y8e{bottom:436.575000px;}
.y2f{bottom:441.825000px;}
.yd9{bottom:444.225000px;}
.y15b{bottom:449.625000px;}
.y17f{bottom:451.425000px;}
.y124{bottom:452.325000px;}
.y1af{bottom:453.375000px;}
.y5a{bottom:456.075000px;}
.y8d{bottom:460.425000px;}
.y2e{bottom:465.675000px;}
.yd5{bottom:467.924959px;}
.yd4{bottom:467.925000px;}
.y106{bottom:468.675000px;}
.y17e{bottom:473.175000px;}
.y15a{bottom:473.475000px;}
.y1ae{bottom:475.275000px;}
.y123{bottom:476.175000px;}
.y59{bottom:479.925000px;}
.y8c{bottom:484.275000px;}
.y105{bottom:492.525000px;}
.y17d{bottom:495.075000px;}
.y1ad{bottom:497.025000px;}
.y159{bottom:497.325000px;}
.y2d{bottom:498.375000px;}
.y122{bottom:499.875000px;}
.yd0{bottom:503.024959px;}
.ycf{bottom:503.025000px;}
.y58{bottom:503.775000px;}
.y8b{bottom:507.975000px;}
.y2c{bottom:515.175000px;}
.y104{bottom:516.375000px;}
.y17c{bottom:516.825000px;}
.y157{bottom:517.274959px;}
.y158{bottom:517.275000px;}
.y1ac{bottom:518.925000px;}
.y121{bottom:523.725000px;}
.y57{bottom:527.475000px;}
.y8a{bottom:527.925000px;}
.ycc{bottom:538.274959px;}
.ycb{bottom:538.275000px;}
.y17b{bottom:538.725000px;}
.y101{bottom:540.074959px;}
.y100{bottom:540.075000px;}
.y1ab{bottom:540.675000px;}
.y120{bottom:547.575000px;}
.y155{bottom:547.724959px;}
.y154{bottom:547.725000px;}
.y56{bottom:551.325000px;}
.y2b{bottom:556.575000px;}
.y17a{bottom:560.475000px;}
.y1aa{bottom:562.425000px;}
.y11f{bottom:567.375000px;}
.yca{bottom:567.525000px;}
.yff{bottom:570.225000px;}
.y55{bottom:575.175000px;}
.y20{bottom:577.275000px;}
.y151{bottom:581.324959px;}
.y153{bottom:581.325000px;}
.y179{bottom:582.375000px;}
.y1a9{bottom:584.325000px;}
.yc9{bottom:593.625000px;}
.y54{bottom:598.875000px;}
.y178{bottom:604.125000px;}
.y1a8{bottom:606.075000px;}
.y150{bottom:611.774959px;}
.y14f{bottom:611.775000px;}
.yc8{bottom:619.575000px;}
.y53{bottom:624.075000px;}
.y177{bottom:626.025000px;}
.y1a7{bottom:627.975000px;}
.y14c{bottom:645.524959px;}
.y14e{bottom:645.525000px;}
.yc6{bottom:645.675000px;}
.y52{bottom:647.775000px;}
.y1a6{bottom:649.725000px;}
.y176{bottom:669.675000px;}
.y1a5{bottom:671.625000px;}
.yc4{bottom:671.775000px;}
.y51{bottom:672.825000px;}
.y147{bottom:675.974959px;}
.y146{bottom:675.975000px;}
.y175{bottom:691.425000px;}
.y1a4{bottom:693.375000px;}
.yc2{bottom:697.725000px;}
.y50{bottom:698.025000px;}
.y143{bottom:709.574919px;}
.y145{bottom:709.575000px;}
.y174{bottom:713.325000px;}
.y1a3{bottom:715.275000px;}
.y4f{bottom:721.875000px;}
.y173{bottom:735.075000px;}
.y1a2{bottom:737.025000px;}
.y13f{bottom:740.025000px;}
.y13e{bottom:740.070000px;}
.y4e{bottom:745.620000px;}
.yc1{bottom:746.820000px;}
.y172{bottom:756.870000px;}
.y1a1{bottom:758.970000px;}
.y4d{bottom:769.470000px;}
.yc0{bottom:770.520000px;}
.y13b{bottom:773.624919px;}
.y13d{bottom:773.670000px;}
.y89{bottom:774.570000px;}
.y171{bottom:778.770000px;}
.y1a0{bottom:780.705000px;}
.y1f{bottom:787.920000px;}
.y4c{bottom:793.320000px;}
.ybf{bottom:794.370000px;}
.y88{bottom:798.270000px;}
.y170{bottom:800.520000px;}
.y19f{bottom:802.620000px;}
.yfe{bottom:803.370000px;}
.y136{bottom:804.224919px;}
.y135{bottom:804.270000px;}
.y1e{bottom:807.120000px;}
.y4b{bottom:817.020000px;}
.ybe{bottom:818.220000px;}
.y87{bottom:822.120000px;}
.y16f{bottom:822.420000px;}
.y19e{bottom:824.370000px;}
.yfd{bottom:827.220000px;}
.y1d{bottom:827.820000px;}
.y4a{bottom:840.870000px;}
.y134{bottom:841.620000px;}
.ybd{bottom:841.920000px;}
.y16e{bottom:844.170000px;}
.y86{bottom:845.955000px;}
.y19d{bottom:846.270000px;}
.y1c{bottom:848.520000px;}
.yfc{bottom:851.070000px;}
.y49{bottom:864.720000px;}
.y133{bottom:865.275000px;}
.y132{bottom:865.320000px;}
.ybc{bottom:865.770000px;}
.y16d{bottom:866.070000px;}
.y19c{bottom:868.020000px;}
.y1b{bottom:869.220000px;}
.y85{bottom:869.820000px;}
.yf9{bottom:874.724919px;}
.yf8{bottom:874.770000px;}
.y48{bottom:888.420000px;}
.ybb{bottom:889.620000px;}
.y19b{bottom:889.770000px;}
.y1a{bottom:889.920000px;}
.y131{bottom:891.570000px;}
.y82{bottom:893.474919px;}
.y81{bottom:893.520000px;}
.yf6{bottom:908.775000px;}
.yf5{bottom:908.820000px;}
.y19{bottom:910.620000px;}
.y130{bottom:911.520000px;}
.y19a{bottom:911.670000px;}
.y47{bottom:912.270000px;}
.yba{bottom:913.320000px;}
.y7d{bottom:918.374919px;}
.y7c{bottom:918.420000px;}
.y18{bottom:931.320000px;}
.y199{bottom:933.420000px;}
.yf4{bottom:934.920000px;}
.y46{bottom:936.120000px;}
.yb9{bottom:937.170000px;}
.y6c{bottom:940.724919px;}
.y7b{bottom:940.770000px;}
.y17{bottom:952.020000px;}
.ye9{bottom:952.470000px;}
.y198{bottom:955.320000px;}
.y45{bottom:959.970000px;}
.yb7{bottom:960.824919px;}
.yb6{bottom:960.870000px;}
.y16{bottom:972.720000px;}
.y197{bottom:977.070000px;}
.yf3{bottom:983.174919px;}
.y44{bottom:983.670000px;}
.yb5{bottom:987.120000px;}
.y15{bottom:993.420000px;}
.y196{bottom:998.970000px;}
.y68{bottom:1005.074919px;}
.y6a{bottom:1005.120000px;}
.y43{bottom:1007.520000px;}
.yb4{bottom:1010.970000px;}
.y14{bottom:1014.120000px;}
.y195{bottom:1020.720000px;}
.y11e{bottom:1028.970000px;}
.y42{bottom:1031.370000px;}
.yf1{bottom:1033.124919px;}
.yb0{bottom:1034.624919px;}
.yaf{bottom:1034.670000px;}
.y13{bottom:1034.820000px;}
.y194{bottom:1042.620000px;}
.y11d{bottom:1052.820000px;}
.y41{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y193{bottom:1064.370000px;}
.y11{bottom:1076.220000px;}
.y12f{bottom:1076.474919px;}
.yae{bottom:1076.520000px;}
.y40{bottom:1078.920000px;}
.y192{bottom:1086.270000px;}
.y10{bottom:1096.950000px;}
.yac{bottom:1100.324919px;}
.yab{bottom:1100.400000px;}
.y3f{bottom:1102.800000px;}
.y191{bottom:1108.050000px;}
.yeb{bottom:1114.724919px;}
.y11c{bottom:1124.024919px;}
.y11b{bottom:1124.100000px;}
.y3e{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.y190{bottom:1129.950000px;}
.ye8{bottom:1142.550000px;}
.ye{bottom:1150.350000px;}
.y18f{bottom:1151.700000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h22{height:14.700012px;}
.h8{height:17.887500px;}
.h15{height:17.999956px;}
.h36{height:19.200320px;}
.h28{height:19.200341px;}
.h4c{height:19.200361px;}
.h13{height:19.200402px;}
.h10{height:20.700000px;}
.h2d{height:22.500233px;}
.h2a{height:22.500254px;}
.h37{height:23.549376px;}
.h5b{height:23.549417px;}
.h56{height:23.549458px;}
.h59{height:23.550497px;}
.h3e{height:23.700000px;}
.h3f{height:23.850000px;}
.h2e{height:26.999836px;}
.h40{height:26.999877px;}
.h48{height:26.999918px;}
.h32{height:27.000188px;}
.h4b{height:27.000229px;}
.h49{height:27.000270px;}
.h4d{height:28.199638px;}
.h41{height:28.199679px;}
.h20{height:28.466935px;}
.h19{height:29.251406px;}
.h1e{height:30.109471px;}
.h57{height:30.449259px;}
.h58{height:30.449299px;}
.h51{height:30.449340px;}
.h39{height:34.949833px;}
.h18{height:37.210974px;}
.h43{height:38.103182px;}
.h4f{height:38.122148px;}
.h30{height:38.401429px;}
.h3d{height:39.787500px;}
.h1c{height:40.218054px;}
.h1a{height:40.238073px;}
.h2b{height:40.274562px;}
.h34{height:40.394691px;}
.h54{height:41.142856px;}
.h11{height:41.400000px;}
.h6{height:45.300000px;}
.h25{height:48.121792px;}
.h3{height:48.600000px;}
.h21{height:49.260039px;}
.ha{height:50.800781px;}
.h24{height:50.896685px;}
.h14{height:50.944889px;}
.h1f{height:52.102332px;}
.h7{height:52.998047px;}
.h27{height:55.541269px;}
.h5{height:55.942383px;}
.h17{height:57.448786px;}
.h5d{height:58.168945px;}
.h16{height:58.451219px;}
.h26{height:58.529753px;}
.h4{height:58.886719px;}
.h4e{height:63.238270px;}
.hc{height:63.457031px;}
.he{height:64.775391px;}
.h9{height:65.645508px;}
.h44{height:65.824218px;}
.h42{height:65.856983px;}
.h52{height:65.874809px;}
.h45{height:65.960039px;}
.h31{height:66.339447px;}
.h2f{height:66.372469px;}
.h5c{height:67.837600px;}
.h29{height:67.986414px;}
.h38{height:68.335840px;}
.h5a{height:68.338974px;}
.h2c{height:69.469123px;}
.h1d{height:69.594527px;}
.h1b{height:69.629168px;}
.h35{height:69.747061px;}
.h33{height:69.781778px;}
.h4a{height:69.885769px;}
.h23{height:70.448031px;}
.hd{height:70.664062px;}
.h55{height:71.075332px;}
.h53{height:71.110711px;}
.h3a{height:71.357851px;}
.h50{height:71.824219px;}
.hb{height:72.562500px;}
.h12{height:74.004654px;}
.h3c{height:74.353100px;}
.h3b{height:78.480638px;}
.h2{height:82.441406px;}
.h46{height:166.650000px;}
.h47{height:189.330000px;}
.hf{height:207.045000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w28{width:18.000579px;}
.w14{width:18.000620px;}
.wa{width:19.200474px;}
.w9{width:19.200515px;}
.wf{width:19.200716px;}
.w10{width:23.549354px;}
.w20{width:25.950475px;}
.w27{width:25.950480px;}
.w26{width:25.950485px;}
.w17{width:25.950496px;}
.w24{width:25.950516px;}
.w21{width:25.950557px;}
.wc{width:26.999420px;}
.w1a{width:26.999583px;}
.w1f{width:26.999624px;}
.wd{width:30.449780px;}
.w23{width:32.700539px;}
.we{width:32.700579px;}
.w22{width:32.700620px;}
.w1c{width:41.550473px;}
.w11{width:57.448320px;}
.w12{width:68.701528px;}
.w13{width:73.200779px;}
.w15{width:73.201257px;}
.w16{width:95.702660px;}
.w1b{width:95.702670px;}
.w2a{width:109.199629px;}
.w30{width:113.702811px;}
.w2e{width:120.453148px;}
.w29{width:129.298866px;}
.w2c{width:130.496055px;}
.w2b{width:135.000095px;}
.w2d{width:142.798193px;}
.w2f{width:145.195111px;}
.wb{width:156.445446px;}
.w6{width:178.350000px;}
.w18{width:187.680000px;}
.w19{width:202.380000px;}
.w5{width:262.995000px;}
.w25{width:277.788797px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w1e{width:393.780000px;}
.w1d{width:393.825000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:1.426297px;}
.x27{left:3.254896px;}
.x4a{left:5.074410px;}
.x4{left:6.900000px;}
.x57{left:8.100000px;}
.x46{left:10.454645px;}
.x9{left:12.435000px;}
.x2f{left:14.031962px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x3b{left:18.463548px;}
.x21{left:20.887500px;}
.x5{left:22.200000px;}
.x74{left:24.121412px;}
.x45{left:27.737053px;}
.x48{left:30.307147px;}
.xb{left:32.100000px;}
.x5d{left:34.050000px;}
.x4e{left:36.740850px;}
.x36{left:39.455312px;}
.x3{left:42.599987px;}
.x43{left:49.382279px;}
.x69{left:72.074995px;}
.x2e{left:73.125011px;}
.x33{left:75.439860px;}
.x59{left:76.650000px;}
.x78{left:81.571266px;}
.x75{left:82.613558px;}
.x66{left:91.274990px;}
.x22{left:95.699987px;}
.x6a{left:97.949987px;}
.x20{left:100.200000px;}
.x1f{left:104.700000px;}
.xd{left:106.980000px;}
.x35{left:112.870396px;}
.x67{left:117.149987px;}
.x2a{left:119.705719px;}
.x6{left:121.687500px;}
.x25{left:122.737487px;}
.x30{left:124.407156px;}
.x2d{left:126.793775px;}
.xa{left:128.130000px;}
.x34{left:129.433088px;}
.x32{left:131.964757px;}
.x31{left:135.942425px;}
.x2c{left:140.174325px;}
.x2b{left:146.900478px;}
.x26{left:149.737487px;}
.x4f{left:209.144987px;}
.x51{left:231.795000px;}
.x6c{left:243.824980px;}
.x54{left:258.374980px;}
.x5b{left:265.245000px;}
.x6d{left:269.744987px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x50{left:336.374980px;}
.x4c{left:344.174959px;}
.x10{left:350.744987px;}
.x55{left:354.044987px;}
.x4d{left:362.144987px;}
.x56{left:394.425000px;}
.x52{left:408.974959px;}
.x53{left:435.974987px;}
.x6b{left:438.674987px;}
.x68{left:443.174987px;}
.x23{left:457.274987px;}
.x5c{left:464.925000px;}
.x4b{left:475.274987px;}
.x14{left:477.374987px;}
.x1c{left:498.374987px;}
.x13{left:503.324987px;}
.x58{left:506.474959px;}
.x24{left:510.374987px;}
.x29{left:521.624987px;}
.x73{left:526.874959px;}
.x49{left:530.474987px;}
.x12{left:533.774987px;}
.x62{left:536.175000px;}
.x19{left:551.024987px;}
.x18{left:562.724987px;}
.x77{left:566.474987px;}
.x63{left:568.874987px;}
.x7d{left:570.974987px;}
.x7b{left:577.724987px;}
.x38{left:578.925000px;}
.x60{left:587.925000px;}
.x11{left:591.074987px;}
.x7a{left:600.074987px;}
.x39{left:605.924987px;}
.x42{left:608.624959px;}
.x1b{left:611.624987px;}
.x61{left:620.624987px;}
.xc{left:625.425000px;}
.x3c{left:644.969987px;}
.x7e{left:647.369987px;}
.x76{left:656.219987px;}
.x64{left:659.774959px;}
.x79{left:661.904987px;}
.x37{left:666.854987px;}
.x7c{left:672.104987px;}
.x1a{left:673.154987px;}
.x71{left:678.675000px;}
.x44{left:680.774959px;}
.x65{left:685.754987px;}
.x16{left:687.104987px;}
.x5a{left:695.024919px;}
.x72{left:696.719987px;}
.x1e{left:707.504987px;}
.xf{left:713.655000px;}
.x6e{left:720.824919px;}
.x15{left:722.654987px;}
.x3e{left:734.624919px;}
.x6f{left:746.819987px;}
.x47{left:749.504987px;}
.x3f{left:753.869987px;}
.x40{left:759.824919px;}
.x1d{left:767.069987px;}
.x7f{left:768.524919px;}
.x41{left:783.419987px;}
.x80{left:801.254987px;}
.x5f{left:817.874919px;}
.x2{left:819.119987px;}
.x3a{left:820.124919px;}
.x5e{left:824.624919px;}
.x3d{left:846.704987px;}
.x17{left:850.619987px;}
.x70{left:864.569987px;}
@media print{
.v1{vertical-align:-54.370624pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-2.666667pt;}
.lsa{letter-spacing:-2.661333pt;}
.ls7{letter-spacing:-2.656000pt;}
.ls9{letter-spacing:-2.400000pt;}
.ls23{letter-spacing:-0.533333pt;}
.ls24{letter-spacing:-0.224000pt;}
.ls15{letter-spacing:-0.120067pt;}
.ls6{letter-spacing:-0.010667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.133333pt;}
.ls20{letter-spacing:0.224000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls14{letter-spacing:0.270204pt;}
.ls10{letter-spacing:0.533333pt;}
.ls21{letter-spacing:5.066667pt;}
.lsf{letter-spacing:5.494081pt;}
.ls1d{letter-spacing:6.186667pt;}
.ls1a{letter-spacing:8.575065pt;}
.ls19{letter-spacing:8.697767pt;}
.ls18{letter-spacing:8.698396pt;}
.ls17{letter-spacing:8.948654pt;}
.ls13{letter-spacing:9.066667pt;}
.ls12{letter-spacing:9.390375pt;}
.lsc{letter-spacing:10.158347pt;}
.ls1c{letter-spacing:12.000000pt;}
.lse{letter-spacing:31.474779pt;}
.lsd{letter-spacing:32.533333pt;}
.ls1e{letter-spacing:35.466667pt;}
.ls16{letter-spacing:42.091078pt;}
.lsb{letter-spacing:48.874667pt;}
.ls11{letter-spacing:78.660150pt;}
.ls1f{letter-spacing:89.866667pt;}
.ls22{letter-spacing:98.890667pt;}
.ls1b{letter-spacing:128.224000pt;}
.wsf{word-spacing:-78.723099pt;}
.ws1d{word-spacing:-42.150724pt;}
.wsb{word-spacing:-35.136000pt;}
.ws1b{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.ws2c{word-spacing:-14.666667pt;}
.ws2e{word-spacing:-14.442667pt;}
.ws2d{word-spacing:-14.133333pt;}
.ws1f{word-spacing:-14.113868pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws1a{word-spacing:-0.067341pt;}
.ws24{word-spacing:-0.064405pt;}
.ws29{word-spacing:-0.061894pt;}
.ws27{word-spacing:-0.061891pt;}
.ws25{word-spacing:-0.037281pt;}
.ws14{word-spacing:-0.036603pt;}
.ws11{word-spacing:-0.034797pt;}
.ws1e{word-spacing:-0.034527pt;}
.wsa{word-spacing:0.000000pt;}
.ws12{word-spacing:29.214981pt;}
.ws17{word-spacing:29.336497pt;}
.wse{word-spacing:29.513345pt;}
.ws15{word-spacing:29.704433pt;}
.ws10{word-spacing:32.040298pt;}
.ws26{word-spacing:32.266668pt;}
.ws16{word-spacing:32.307281pt;}
.ws2b{word-spacing:32.395477pt;}
.ws13{word-spacing:32.801278pt;}
.ws22{word-spacing:42.587428pt;}
.wsd{word-spacing:46.474908pt;}
.wsc{word-spacing:65.696676pt;}
.ws1c{word-spacing:76.824380pt;}
.ws21{word-spacing:77.361196pt;}
.ws23{word-spacing:93.908193pt;}
.ws28{word-spacing:94.084991pt;}
.ws2a{word-spacing:94.594167pt;}
.ws20{word-spacing:100.162802pt;}
.ws18{word-spacing:148.964755pt;}
.ws19{word-spacing:398.244354pt;}
._49{margin-left:-802.034773pt;}
._51{margin-left:-459.631147pt;}
._50{margin-left:-421.743022pt;}
._52{margin-left:-389.535216pt;}
._53{margin-left:-367.244545pt;}
._4e{margin-left:-352.731709pt;}
._39{margin-left:-260.274523pt;}
._33{margin-left:-180.183381pt;}
._36{margin-left:-107.541725pt;}
._37{margin-left:-99.458446pt;}
._3b{margin-left:-27.005971pt;}
._4f{margin-left:-6.794145pt;}
._4c{margin-left:-4.865618pt;}
._15{margin-left:-3.776000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._b{width:2.053333pt;}
._8{width:3.712000pt;}
._1d{width:5.440000pt;}
._9{width:6.528000pt;}
._a{width:7.477333pt;}
._10{width:8.485333pt;}
._6{width:9.792000pt;}
._7{width:11.072000pt;}
._11{width:12.160000pt;}
._12{width:13.120000pt;}
._e{width:14.848000pt;}
._5d{width:16.133333pt;}
._3d{width:17.088000pt;}
._2d{width:18.304000pt;}
._14{width:19.328000pt;}
._13{width:20.800000pt;}
._1f{width:21.850667pt;}
._c{width:22.784000pt;}
._d{width:23.872000pt;}
._1e{width:24.896000pt;}
._f{width:25.882667pt;}
._1a{width:27.648000pt;}
._23{width:29.120000pt;}
._5{width:30.378667pt;}
._4{width:31.493333pt;}
._28{width:32.512000pt;}
._17{width:33.600000pt;}
._2a{width:34.752000pt;}
._32{width:35.776000pt;}
._38{width:37.376000pt;}
._1b{width:38.848000pt;}
._24{width:40.597333pt;}
._18{width:42.432000pt;}
._19{width:43.584000pt;}
._1c{width:44.672000pt;}
._27{width:45.888000pt;}
._29{width:47.872000pt;}
._40{width:48.832000pt;}
._3a{width:50.368000pt;}
._3e{width:51.893333pt;}
._46{width:53.041074pt;}
._25{width:55.936000pt;}
._26{width:57.152000pt;}
._21{width:58.112000pt;}
._22{width:59.381333pt;}
._3f{width:60.618667pt;}
._3c{width:61.813333pt;}
._16{width:69.376000pt;}
._20{width:70.938667pt;}
._47{width:73.007019pt;}
._48{width:75.193655pt;}
._56{width:78.320000pt;}
._34{width:79.409445pt;}
._4a{width:83.830605pt;}
._2b{width:85.248000pt;}
._2c{width:86.592000pt;}
._59{width:88.371766pt;}
._35{width:89.302901pt;}
._30{width:90.368000pt;}
._2f{width:91.456000pt;}
._5c{width:92.986667pt;}
._4d{width:96.029892pt;}
._45{width:98.952729pt;}
._5b{width:100.464000pt;}
._5a{width:101.584000pt;}
._31{width:104.597333pt;}
._57{width:124.256000pt;}
._54{width:150.656000pt;}
._41{width:158.054307pt;}
._4b{width:160.000000pt;}
._43{width:169.689627pt;}
._44{width:171.386629pt;}
._42{width:175.459432pt;}
._58{width:248.688000pt;}
._2e{width:260.512026pt;}
._55{width:326.538667pt;}
.fs9{font-size:26.492815pt;}
.fs1e{font-size:34.526991pt;}
.fs16{font-size:34.797246pt;}
.fsa{font-size:36.443371pt;}
.fs13{font-size:36.476419pt;}
.fs18{font-size:36.603430pt;}
.fs24{font-size:37.281376pt;}
.fsc{font-size:38.546146pt;}
.fs8{font-size:47.637490pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1d{font-size:59.646258pt;}
.fs1f{font-size:59.769331pt;}
.fs15{font-size:60.113130pt;}
.fs10{font-size:61.605520pt;}
.fs19{font-size:61.891344pt;}
.fs25{font-size:61.894182pt;}
.fs14{font-size:62.949068pt;}
.fsb{font-size:63.062703pt;}
.fs17{font-size:63.200921pt;}
.fs20{font-size:63.326610pt;}
.fse{font-size:63.836101pt;}
.fs5{font-size:64.000000pt;}
.fs23{font-size:64.404526pt;}
.fsf{font-size:65.157938pt;}
.fs6{font-size:65.219648pt;}
.fsd{font-size:66.701407pt;}
.fs1c{font-size:67.341138pt;}
.fs12{font-size:71.103935pt;}
.fs0{font-size:74.666667pt;}
.fs7{font-size:74.829252pt;}
.fs11{font-size:74.929792pt;}
.fs21{font-size:80.957635pt;}
.fs22{font-size:84.332933pt;}
.fs1a{font-size:91.352323pt;}
.fs1b{font-size:100.470915pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y7e{bottom:2.400027pt;}
.y9e{bottom:2.888875pt;}
.y9a{bottom:2.888891pt;}
.yf7{bottom:2.907015pt;}
.y98{bottom:2.907030pt;}
.y109{bottom:2.907047pt;}
.yb8{bottom:2.907078pt;}
.y2a{bottom:3.466667pt;}
.yd2{bottom:3.789951pt;}
.y167{bottom:4.031756pt;}
.y102{bottom:4.031780pt;}
.yfa{bottom:4.031804pt;}
.ya3{bottom:4.063440pt;}
.y84{bottom:4.107731pt;}
.y6b{bottom:4.107766pt;}
.y83{bottom:4.107768pt;}
.y77{bottom:4.551666pt;}
.y7{bottom:4.800000pt;}
.yd7{bottom:4.983512pt;}
.y110{bottom:5.013392pt;}
.ya0{bottom:5.052634pt;}
.ycd{bottom:5.052657pt;}
.yec{bottom:5.052680pt;}
.yb{bottom:5.333333pt;}
.y142{bottom:5.413334pt;}
.y14a{bottom:5.413360pt;}
.y139{bottom:5.413385pt;}
.yc{bottom:6.000000pt;}
.ydf{bottom:6.120000pt;}
.yc5{bottom:6.133333pt;}
.yc7{bottom:6.266667pt;}
.ya9{bottom:6.728320pt;}
.y152{bottom:6.728347pt;}
.y13c{bottom:6.728372pt;}
.y144{bottom:6.728375pt;}
.y14d{bottom:6.728657pt;}
.ya6{bottom:6.782950pt;}
.y80{bottom:6.782980pt;}
.yad{bottom:6.783002pt;}
.y69{bottom:6.783010pt;}
.y7f{bottom:6.783015pt;}
.yd1{bottom:7.639436pt;}
.yd3{bottom:7.639442pt;}
.y10f{bottom:7.669314pt;}
.y168{bottom:8.126880pt;}
.y103{bottom:8.126914pt;}
.yfb{bottom:8.126949pt;}
.ya2{bottom:8.158695pt;}
.y140{bottom:8.410037pt;}
.y148{bottom:8.410067pt;}
.y137{bottom:8.410096pt;}
.y111{bottom:8.863003pt;}
.yd8{bottom:8.863037pt;}
.y9f{bottom:8.932377pt;}
.yce{bottom:8.932411pt;}
.yed{bottom:8.932445pt;}
.yb2{bottom:9.515106pt;}
.y141{bottom:9.570047pt;}
.y149{bottom:9.570061pt;}
.y156{bottom:9.570063pt;}
.y138{bottom:9.570073pt;}
.y14b{bottom:9.570082pt;}
.y13a{bottom:9.570118pt;}
.y9d{bottom:9.968027pt;}
.y99{bottom:9.968034pt;}
.yb1{bottom:10.019403pt;}
.yb3{bottom:11.397864pt;}
.yd6{bottom:15.547878pt;}
.ya{bottom:17.733333pt;}
.y7a{bottom:18.144339pt;}
.y72{bottom:18.144350pt;}
.y74{bottom:18.144355pt;}
.y6{bottom:18.266667pt;}
.yc3{bottom:20.400000pt;}
.y29{bottom:21.866667pt;}
.y76{bottom:23.069944pt;}
.y70{bottom:23.069947pt;}
.y6f{bottom:27.153433pt;}
.ye6{bottom:27.333333pt;}
.y71{bottom:28.089479pt;}
.y9{bottom:30.133333pt;}
.y79{bottom:31.175223pt;}
.y5{bottom:32.000000pt;}
.y6d{bottom:37.098599pt;}
.y75{bottom:37.783888pt;}
.y78{bottom:37.783891pt;}
.y73{bottom:37.783893pt;}
.y28{bottom:40.266667pt;}
.y6e{bottom:42.866391pt;}
.ye5{bottom:48.533333pt;}
.yf2{bottom:50.666667pt;}
.y3{bottom:51.233333pt;}
.y27{bottom:58.666667pt;}
.ye4{bottom:69.733333pt;}
.yf0{bottom:71.733333pt;}
.y2{bottom:72.566667pt;}
.y26{bottom:77.066667pt;}
.ye3{bottom:90.800000pt;}
.y25{bottom:95.466667pt;}
.y3d{bottom:96.566667pt;}
.y12e{bottom:100.966667pt;}
.y11a{bottom:101.233333pt;}
.yef{bottom:102.000000pt;}
.yaa{bottom:102.966667pt;}
.ya8{bottom:103.000000pt;}
.y16c{bottom:106.433333pt;}
.y18e{bottom:110.300000pt;}
.ye2{bottom:112.000000pt;}
.y24{bottom:113.866667pt;}
.y3c{bottom:117.633333pt;}
.ye7{bottom:117.766667pt;}
.y12c{bottom:122.166667pt;}
.y12d{bottom:122.200000pt;}
.y119{bottom:122.433333pt;}
.yee{bottom:123.200000pt;}
.y16b{bottom:127.633333pt;}
.y18d{bottom:129.633333pt;}
.ya7{bottom:130.033333pt;}
.ya5{bottom:130.066667pt;}
.y67{bottom:130.300000pt;}
.y23{bottom:132.266667pt;}
.ye1{bottom:133.186667pt;}
.ye0{bottom:133.373333pt;}
.y3b{bottom:138.840000pt;}
.y118{bottom:143.640000pt;}
.yea{bottom:144.293333pt;}
.y12b{bottom:145.373333pt;}
.y1bc{bottom:146.160000pt;}
.y169{bottom:148.826667pt;}
.y16a{bottom:148.866667pt;}
.y18c{bottom:149.106667pt;}
.y22{bottom:150.706667pt;}
.y66{bottom:151.506667pt;}
.ya4{bottom:153.373333pt;}
.ya1{bottom:153.400000pt;}
.y3a{bottom:160.040000pt;}
.y12a{bottom:163.106667pt;}
.y117{bottom:164.706667pt;}
.y1bb{bottom:167.240000pt;}
.y18b{bottom:168.440000pt;}
.y21{bottom:169.106667pt;}
.y65{bottom:172.706667pt;}
.y165{bottom:178.973333pt;}
.y166{bottom:179.000000pt;}
.y39{bottom:181.106667pt;}
.y9b{bottom:183.506667pt;}
.y9c{bottom:183.533333pt;}
.y116{bottom:185.893333pt;}
.y18a{bottom:187.906667pt;}
.y1ba{bottom:188.440000pt;}
.y64{bottom:193.773333pt;}
.y38{bottom:202.306667pt;}
.y115{bottom:207.106667pt;}
.y189{bottom:207.226667pt;}
.y1b9{bottom:209.106667pt;}
.y164{bottom:209.240000pt;}
.y96{bottom:213.773333pt;}
.y97{bottom:213.799982pt;}
.y63{bottom:214.973333pt;}
.y37{bottom:223.506667pt;}
.y188{bottom:226.706667pt;}
.y114{bottom:228.173333pt;}
.y1b8{bottom:228.440000pt;}
.y163{bottom:230.440000pt;}
.y62{bottom:236.173333pt;}
.y95{bottom:240.040000pt;}
.y36{bottom:244.573333pt;}
.y187{bottom:246.040000pt;}
.y1b7{bottom:247.773333pt;}
.y113{bottom:249.373333pt;}
.y162{bottom:251.506667pt;}
.y61{bottom:257.240000pt;}
.y94{bottom:261.106667pt;}
.y186{bottom:265.506667pt;}
.y35{bottom:265.773333pt;}
.y1b6{bottom:267.226667pt;}
.y112{bottom:270.440000pt;}
.y10e{bottom:270.466667pt;}
.y161{bottom:272.706667pt;}
.y60{bottom:278.440000pt;}
.yde{bottom:282.173333pt;}
.y93{bottom:282.293333pt;}
.y185{bottom:284.840000pt;}
.y1b5{bottom:286.573333pt;}
.y34{bottom:286.973333pt;}
.y160{bottom:293.893333pt;}
.y5f{bottom:299.640000pt;}
.y10d{bottom:301.773333pt;}
.y92{bottom:303.506667pt;}
.y184{bottom:304.306667pt;}
.y1b4{bottom:306.040000pt;}
.y33{bottom:308.040000pt;}
.ydd{bottom:310.173333pt;}
.y15f{bottom:315.106667pt;}
.y129{bottom:315.373333pt;}
.y5e{bottom:320.840000pt;}
.y10c{bottom:322.973333pt;}
.y183{bottom:323.640000pt;}
.y91{bottom:324.573333pt;}
.y1b3{bottom:325.373333pt;}
.y32{bottom:329.240000pt;}
.ydc{bottom:331.373333pt;}
.y15e{bottom:336.173333pt;}
.y128{bottom:336.440000pt;}
.y5d{bottom:341.933333pt;}
.y182{bottom:343.133333pt;}
.y10b{bottom:344.066667pt;}
.y1b2{bottom:344.866667pt;}
.y90{bottom:345.800000pt;}
.y31{bottom:350.466667pt;}
.ydb{bottom:352.466667pt;}
.y15d{bottom:357.400000pt;}
.y127{bottom:357.666667pt;}
.y181{bottom:362.466667pt;}
.y5c{bottom:363.133333pt;}
.y1b1{bottom:364.200000pt;}
.y10a{bottom:365.266667pt;}
.y8f{bottom:367.000000pt;}
.y30{bottom:371.666667pt;}
.yda{bottom:373.666667pt;}
.y15c{bottom:378.600000pt;}
.y126{bottom:378.733297pt;}
.y125{bottom:378.733333pt;}
.y180{bottom:381.800000pt;}
.y1b0{bottom:383.666667pt;}
.y5b{bottom:384.333333pt;}
.y108{bottom:386.466630pt;}
.y107{bottom:386.466667pt;}
.y8e{bottom:388.066667pt;}
.y2f{bottom:392.733333pt;}
.yd9{bottom:394.866667pt;}
.y15b{bottom:399.666667pt;}
.y17f{bottom:401.266667pt;}
.y124{bottom:402.066667pt;}
.y1af{bottom:403.000000pt;}
.y5a{bottom:405.400000pt;}
.y8d{bottom:409.266667pt;}
.y2e{bottom:413.933333pt;}
.yd5{bottom:415.933297pt;}
.yd4{bottom:415.933333pt;}
.y106{bottom:416.600000pt;}
.y17e{bottom:420.600000pt;}
.y15a{bottom:420.866667pt;}
.y1ae{bottom:422.466667pt;}
.y123{bottom:423.266667pt;}
.y59{bottom:426.600000pt;}
.y8c{bottom:430.466667pt;}
.y105{bottom:437.800000pt;}
.y17d{bottom:440.066667pt;}
.y1ad{bottom:441.800000pt;}
.y159{bottom:442.066667pt;}
.y2d{bottom:443.000000pt;}
.y122{bottom:444.333333pt;}
.yd0{bottom:447.133297pt;}
.ycf{bottom:447.133333pt;}
.y58{bottom:447.800000pt;}
.y8b{bottom:451.533333pt;}
.y2c{bottom:457.933333pt;}
.y104{bottom:459.000000pt;}
.y17c{bottom:459.400000pt;}
.y157{bottom:459.799964pt;}
.y158{bottom:459.800000pt;}
.y1ac{bottom:461.266667pt;}
.y121{bottom:465.533333pt;}
.y57{bottom:468.866667pt;}
.y8a{bottom:469.266667pt;}
.ycc{bottom:478.466630pt;}
.ycb{bottom:478.466667pt;}
.y17b{bottom:478.866667pt;}
.y101{bottom:480.066630pt;}
.y100{bottom:480.066667pt;}
.y1ab{bottom:480.600000pt;}
.y120{bottom:486.733333pt;}
.y155{bottom:486.866630pt;}
.y154{bottom:486.866667pt;}
.y56{bottom:490.066667pt;}
.y2b{bottom:494.733333pt;}
.y17a{bottom:498.200000pt;}
.y1aa{bottom:499.933333pt;}
.y11f{bottom:504.333333pt;}
.yca{bottom:504.466667pt;}
.yff{bottom:506.866667pt;}
.y55{bottom:511.266667pt;}
.y20{bottom:513.133333pt;}
.y151{bottom:516.733297pt;}
.y153{bottom:516.733333pt;}
.y179{bottom:517.666667pt;}
.y1a9{bottom:519.400000pt;}
.yc9{bottom:527.666667pt;}
.y54{bottom:532.333333pt;}
.y178{bottom:537.000000pt;}
.y1a8{bottom:538.733333pt;}
.y150{bottom:543.799964pt;}
.y14f{bottom:543.800000pt;}
.yc8{bottom:550.733333pt;}
.y53{bottom:554.733333pt;}
.y177{bottom:556.466667pt;}
.y1a7{bottom:558.200000pt;}
.y14c{bottom:573.799964pt;}
.y14e{bottom:573.800000pt;}
.yc6{bottom:573.933333pt;}
.y52{bottom:575.800000pt;}
.y1a6{bottom:577.533333pt;}
.y176{bottom:595.266667pt;}
.y1a5{bottom:597.000000pt;}
.yc4{bottom:597.133333pt;}
.y51{bottom:598.066667pt;}
.y147{bottom:600.866630pt;}
.y146{bottom:600.866667pt;}
.y175{bottom:614.600000pt;}
.y1a4{bottom:616.333333pt;}
.yc2{bottom:620.200000pt;}
.y50{bottom:620.466667pt;}
.y143{bottom:630.733261pt;}
.y145{bottom:630.733333pt;}
.y174{bottom:634.066667pt;}
.y1a3{bottom:635.800000pt;}
.y4f{bottom:641.666667pt;}
.y173{bottom:653.400000pt;}
.y1a2{bottom:655.133333pt;}
.y13f{bottom:657.800000pt;}
.y13e{bottom:657.840000pt;}
.y4e{bottom:662.773333pt;}
.yc1{bottom:663.840000pt;}
.y172{bottom:672.773333pt;}
.y1a1{bottom:674.640000pt;}
.y4d{bottom:683.973333pt;}
.yc0{bottom:684.906667pt;}
.y13b{bottom:687.666594pt;}
.y13d{bottom:687.706667pt;}
.y89{bottom:688.506667pt;}
.y171{bottom:692.240000pt;}
.y1a0{bottom:693.960000pt;}
.y1f{bottom:700.373333pt;}
.y4c{bottom:705.173333pt;}
.ybf{bottom:706.106667pt;}
.y88{bottom:709.573333pt;}
.y170{bottom:711.573333pt;}
.y19f{bottom:713.440000pt;}
.yfe{bottom:714.106667pt;}
.y136{bottom:714.866594pt;}
.y135{bottom:714.906667pt;}
.y1e{bottom:717.440000pt;}
.y4b{bottom:726.240000pt;}
.ybe{bottom:727.306667pt;}
.y87{bottom:730.773333pt;}
.y16f{bottom:731.040000pt;}
.y19e{bottom:732.773333pt;}
.yfd{bottom:735.306667pt;}
.y1d{bottom:735.840000pt;}
.y4a{bottom:747.440000pt;}
.y134{bottom:748.106667pt;}
.ybd{bottom:748.373333pt;}
.y16e{bottom:750.373333pt;}
.y86{bottom:751.960000pt;}
.y19d{bottom:752.240000pt;}
.y1c{bottom:754.240000pt;}
.yfc{bottom:756.506667pt;}
.y49{bottom:768.640000pt;}
.y133{bottom:769.133333pt;}
.y132{bottom:769.173333pt;}
.ybc{bottom:769.573333pt;}
.y16d{bottom:769.840000pt;}
.y19c{bottom:771.573333pt;}
.y1b{bottom:772.640000pt;}
.y85{bottom:773.173333pt;}
.yf9{bottom:777.533261pt;}
.yf8{bottom:777.573333pt;}
.y48{bottom:789.706667pt;}
.ybb{bottom:790.773333pt;}
.y19b{bottom:790.906667pt;}
.y1a{bottom:791.040000pt;}
.y131{bottom:792.506667pt;}
.y82{bottom:794.199928pt;}
.y81{bottom:794.240000pt;}
.yf6{bottom:807.800000pt;}
.yf5{bottom:807.840000pt;}
.y19{bottom:809.440000pt;}
.y130{bottom:810.240000pt;}
.y19a{bottom:810.373333pt;}
.y47{bottom:810.906667pt;}
.yba{bottom:811.840000pt;}
.y7d{bottom:816.333261pt;}
.y7c{bottom:816.373333pt;}
.y18{bottom:827.840000pt;}
.y199{bottom:829.706667pt;}
.yf4{bottom:831.040000pt;}
.y46{bottom:832.106667pt;}
.yb9{bottom:833.040000pt;}
.y6c{bottom:836.199928pt;}
.y7b{bottom:836.240000pt;}
.y17{bottom:846.240000pt;}
.ye9{bottom:846.640000pt;}
.y198{bottom:849.173333pt;}
.y45{bottom:853.306667pt;}
.yb7{bottom:854.066594pt;}
.yb6{bottom:854.106667pt;}
.y16{bottom:864.640000pt;}
.y197{bottom:868.506667pt;}
.yf3{bottom:873.933261pt;}
.y44{bottom:874.373333pt;}
.yb5{bottom:877.440000pt;}
.y15{bottom:883.040000pt;}
.y196{bottom:887.973333pt;}
.y68{bottom:893.399928pt;}
.y6a{bottom:893.440000pt;}
.y43{bottom:895.573333pt;}
.yb4{bottom:898.640000pt;}
.y14{bottom:901.440000pt;}
.y195{bottom:907.306667pt;}
.y11e{bottom:914.640000pt;}
.y42{bottom:916.773333pt;}
.yf1{bottom:918.333261pt;}
.yb0{bottom:919.666594pt;}
.yaf{bottom:919.706667pt;}
.y13{bottom:919.840000pt;}
.y194{bottom:926.773333pt;}
.y11d{bottom:935.840000pt;}
.y41{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y193{bottom:946.106667pt;}
.y11{bottom:956.640000pt;}
.y12f{bottom:956.866594pt;}
.yae{bottom:956.906667pt;}
.y40{bottom:959.040000pt;}
.y192{bottom:965.573333pt;}
.y10{bottom:975.066667pt;}
.yac{bottom:978.066594pt;}
.yab{bottom:978.133333pt;}
.y3f{bottom:980.266667pt;}
.y191{bottom:984.933333pt;}
.yeb{bottom:990.866594pt;}
.y11c{bottom:999.133261pt;}
.y11b{bottom:999.200000pt;}
.y3e{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.y190{bottom:1004.400000pt;}
.ye8{bottom:1015.600000pt;}
.ye{bottom:1022.533333pt;}
.y18f{bottom:1023.733333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h22{height:13.066677pt;}
.h8{height:15.900000pt;}
.h15{height:15.999961pt;}
.h36{height:17.066951pt;}
.h28{height:17.066970pt;}
.h4c{height:17.066988pt;}
.h13{height:17.067024pt;}
.h10{height:18.400000pt;}
.h2d{height:20.000207pt;}
.h2a{height:20.000225pt;}
.h37{height:20.932779pt;}
.h5b{height:20.932815pt;}
.h56{height:20.932851pt;}
.h59{height:20.933775pt;}
.h3e{height:21.066667pt;}
.h3f{height:21.200000pt;}
.h2e{height:23.999855pt;}
.h40{height:23.999891pt;}
.h48{height:23.999927pt;}
.h32{height:24.000167pt;}
.h4b{height:24.000203pt;}
.h49{height:24.000240pt;}
.h4d{height:25.066345pt;}
.h41{height:25.066381pt;}
.h20{height:25.303942pt;}
.h19{height:26.001249pt;}
.h1e{height:26.763974pt;}
.h57{height:27.066008pt;}
.h58{height:27.066044pt;}
.h51{height:27.066080pt;}
.h39{height:31.066518pt;}
.h18{height:33.076421pt;}
.h43{height:33.869495pt;}
.h4f{height:33.886354pt;}
.h30{height:34.134604pt;}
.h3d{height:35.366667pt;}
.h1c{height:35.749381pt;}
.h1a{height:35.767176pt;}
.h2b{height:35.799610pt;}
.h34{height:35.906392pt;}
.h54{height:36.571428pt;}
.h11{height:36.800000pt;}
.h6{height:40.266667pt;}
.h25{height:42.774926pt;}
.h3{height:43.200000pt;}
.h21{height:43.786701pt;}
.ha{height:45.156250pt;}
.h24{height:45.241498pt;}
.h14{height:45.284346pt;}
.h1f{height:46.313184pt;}
.h7{height:47.109375pt;}
.h27{height:49.370017pt;}
.h5{height:49.726562pt;}
.h17{height:51.065587pt;}
.h5d{height:51.705729pt;}
.h16{height:51.956639pt;}
.h26{height:52.026447pt;}
.h4{height:52.343750pt;}
.h4e{height:56.211796pt;}
.hc{height:56.406250pt;}
.he{height:57.578125pt;}
.h9{height:58.351562pt;}
.h44{height:58.510416pt;}
.h42{height:58.539540pt;}
.h52{height:58.555386pt;}
.h45{height:58.631146pt;}
.h31{height:58.968398pt;}
.h2f{height:58.997750pt;}
.h5c{height:60.300089pt;}
.h29{height:60.432368pt;}
.h38{height:60.742969pt;}
.h5a{height:60.745755pt;}
.h2c{height:61.750331pt;}
.h1d{height:61.861802pt;}
.h1b{height:61.892594pt;}
.h35{height:61.997387pt;}
.h33{height:62.028247pt;}
.h4a{height:62.120683pt;}
.h23{height:62.620472pt;}
.hd{height:62.812500pt;}
.h55{height:63.178073pt;}
.h53{height:63.209521pt;}
.h3a{height:63.429201pt;}
.h50{height:63.843750pt;}
.hb{height:64.500000pt;}
.h12{height:65.781915pt;}
.h3c{height:66.091645pt;}
.h3b{height:69.760567pt;}
.h2{height:73.281250pt;}
.h46{height:148.133333pt;}
.h47{height:168.293333pt;}
.hf{height:184.040000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w28{width:16.000515pt;}
.w14{width:16.000551pt;}
.wa{width:17.067088pt;}
.w9{width:17.067124pt;}
.wf{width:17.067303pt;}
.w10{width:20.932759pt;}
.w20{width:23.067089pt;}
.w27{width:23.067094pt;}
.w26{width:23.067098pt;}
.w17{width:23.067107pt;}
.w24{width:23.067125pt;}
.w21{width:23.067162pt;}
.wc{width:23.999485pt;}
.w1a{width:23.999629pt;}
.w1f{width:23.999665pt;}
.wd{width:27.066471pt;}
.w23{width:29.067145pt;}
.we{width:29.067182pt;}
.w22{width:29.067218pt;}
.w1c{width:36.933754pt;}
.w11{width:51.065173pt;}
.w12{width:61.068024pt;}
.w13{width:65.067359pt;}
.w15{width:65.067784pt;}
.w16{width:85.069031pt;}
.w1b{width:85.069040pt;}
.w2a{width:97.066337pt;}
.w30{width:101.069165pt;}
.w2e{width:107.069465pt;}
.w29{width:114.932325pt;}
.w2c{width:115.996494pt;}
.w2b{width:120.000085pt;}
.w2d{width:126.931727pt;}
.w2f{width:129.062320pt;}
.wb{width:139.062619pt;}
.w6{width:158.533333pt;}
.w18{width:166.826667pt;}
.w19{width:179.893333pt;}
.w5{width:233.773333pt;}
.w25{width:246.923376pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w1e{width:350.026667pt;}
.w1d{width:350.066667pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:1.267820pt;}
.x27{left:2.893241pt;}
.x4a{left:4.510587pt;}
.x4{left:6.133333pt;}
.x57{left:7.200000pt;}
.x46{left:9.293017pt;}
.x9{left:11.053333pt;}
.x2f{left:12.472855pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x3b{left:16.412042pt;}
.x21{left:18.566667pt;}
.x5{left:19.733333pt;}
.x74{left:21.441255pt;}
.x45{left:24.655158pt;}
.x48{left:26.939687pt;}
.xb{left:28.533333pt;}
.x5d{left:30.266667pt;}
.x4e{left:32.658533pt;}
.x36{left:35.071389pt;}
.x3{left:37.866655pt;}
.x43{left:43.895359pt;}
.x69{left:64.066662pt;}
.x2e{left:65.000010pt;}
.x33{left:67.057653pt;}
.x59{left:68.133333pt;}
.x78{left:72.507792pt;}
.x75{left:73.434274pt;}
.x66{left:81.133324pt;}
.x22{left:85.066655pt;}
.x6a{left:87.066655pt;}
.x20{left:89.066667pt;}
.x1f{left:93.066667pt;}
.xd{left:95.093333pt;}
.x35{left:100.329241pt;}
.x67{left:104.133322pt;}
.x2a{left:106.405084pt;}
.x6{left:108.166667pt;}
.x25{left:109.099988pt;}
.x30{left:110.584138pt;}
.x2d{left:112.705578pt;}
.xa{left:113.893333pt;}
.x34{left:115.051633pt;}
.x32{left:117.302007pt;}
.x31{left:120.837711pt;}
.x2c{left:124.599400pt;}
.x2b{left:130.578202pt;}
.x26{left:133.099988pt;}
.x4f{left:185.906655pt;}
.x51{left:206.040000pt;}
.x6c{left:216.733315pt;}
.x54{left:229.666649pt;}
.x5b{left:235.773333pt;}
.x6d{left:239.773322pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x50{left:298.999982pt;}
.x4c{left:305.933297pt;}
.x10{left:311.773322pt;}
.x55{left:314.706655pt;}
.x4d{left:321.906655pt;}
.x56{left:350.600000pt;}
.x52{left:363.533297pt;}
.x53{left:387.533322pt;}
.x6b{left:389.933322pt;}
.x68{left:393.933322pt;}
.x23{left:406.466655pt;}
.x5c{left:413.266667pt;}
.x4b{left:422.466655pt;}
.x14{left:424.333322pt;}
.x1c{left:442.999988pt;}
.x13{left:447.399988pt;}
.x58{left:450.199964pt;}
.x24{left:453.666655pt;}
.x29{left:463.666655pt;}
.x73{left:468.333297pt;}
.x49{left:471.533322pt;}
.x12{left:474.466655pt;}
.x62{left:476.600000pt;}
.x19{left:489.799988pt;}
.x18{left:500.199988pt;}
.x77{left:503.533322pt;}
.x63{left:505.666655pt;}
.x7d{left:507.533322pt;}
.x7b{left:513.533322pt;}
.x38{left:514.600000pt;}
.x60{left:522.600000pt;}
.x11{left:525.399988pt;}
.x7a{left:533.399988pt;}
.x39{left:538.599988pt;}
.x42{left:540.999964pt;}
.x1b{left:543.666655pt;}
.x61{left:551.666655pt;}
.xc{left:555.933333pt;}
.x3c{left:573.306655pt;}
.x7e{left:575.439988pt;}
.x76{left:583.306655pt;}
.x64{left:586.466630pt;}
.x79{left:588.359988pt;}
.x37{left:592.759988pt;}
.x7c{left:597.426655pt;}
.x1a{left:598.359988pt;}
.x71{left:603.266667pt;}
.x44{left:605.133297pt;}
.x65{left:609.559988pt;}
.x16{left:610.759988pt;}
.x5a{left:617.799928pt;}
.x72{left:619.306655pt;}
.x1e{left:628.893322pt;}
.xf{left:634.360000pt;}
.x6e{left:640.733261pt;}
.x15{left:642.359988pt;}
.x3e{left:652.999928pt;}
.x6f{left:663.839988pt;}
.x47{left:666.226655pt;}
.x3f{left:670.106655pt;}
.x40{left:675.399928pt;}
.x1d{left:681.839988pt;}
.x7f{left:683.133261pt;}
.x41{left:696.373322pt;}
.x80{left:712.226655pt;}
.x5f{left:726.999928pt;}
.x2{left:728.106655pt;}
.x3a{left:728.999928pt;}
.x5e{left:732.999928pt;}
.x3d{left:752.626655pt;}
.x17{left:756.106655pt;}
.x70{left:768.506655pt;}
}




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