
    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_d9c8921890126a5090c7817d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_db35423d80eff3cf75a32159.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b6f63ca627729df75a83c8f0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_2b4782c16c17c76ab1f783d8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_05cd25f65070cb2592025e07.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_64d9209f1d5ece9fbd63240a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a1f4c6e2762693abe95aa3f0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_7fb90bc9d9f7107bc3911762.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d3f24ef40e26a965e486740c.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1d272bac5f36108cd40a4610.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4aec4f8cf9d4aee55e0a60ac.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_4836a4fadb52cf090bc915ec.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_cb34a79b7d94752493ac1ecc.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_551e5519373b2e573e8642c4.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_54df5aa334aed84fb02a9508.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_db34e5612417c9bb38b64238.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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_df22efe2cb4687cc2f7346fc.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m48{transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m47{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);}
.m49{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m42{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);}
.m11{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);}
.m1f{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
.fc0{color:transparent;}
.fs6{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs1{font-size:102.000000px;}
.fs0{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:65.098500px;}
.y3c{bottom:65.398500px;}
.y3d{bottom:65.473500px;}
.y3a{bottom:104.173500px;}
.ya8{bottom:105.073500px;}
.ydd{bottom:106.723500px;}
.y76{bottom:115.875000px;}
.y77{bottom:116.625000px;}
.yda{bottom:122.548500px;}
.ydb{bottom:123.598500px;}
.y39{bottom:123.973500px;}
.ydc{bottom:124.348500px;}
.ya7{bottom:125.250000px;}
.y14f{bottom:125.848500px;}
.y150{bottom:126.223500px;}
.yab{bottom:134.473500px;}
.yaa{bottom:134.848500px;}
.ya9{bottom:135.223500px;}
.y75{bottom:136.125000px;}
.y152{bottom:139.573500px;}
.y151{bottom:139.650000px;}
.y38{bottom:142.348500px;}
.y37{bottom:144.073500px;}
.ya6{bottom:145.423500px;}
.y36{bottom:146.250000px;}
.y10f{bottom:150.673500px;}
.y74{bottom:156.598500px;}
.y14e{bottom:161.173500px;}
.y35{bottom:164.625000px;}
.ya5{bottom:165.223500px;}
.ya4{bottom:165.598500px;}
.y10e{bottom:169.423500px;}
.yd9{bottom:174.073500px;}
.y73{bottom:177.823500px;}
.y14d{bottom:182.698500px;}
.y34{bottom:184.500000px;}
.ya3{bottom:185.400000px;}
.y10d{bottom:189.598500px;}
.yd8{bottom:194.548500px;}
.y72{bottom:198.298500px;}
.y14c{bottom:202.573500px;}
.y33{bottom:205.650000px;}
.y32{bottom:206.400000px;}
.ya2{bottom:208.048500px;}
.y10c{bottom:209.698500px;}
.yd7{bottom:214.048500px;}
.y71{bottom:218.848500px;}
.y147{bottom:221.250000px;}
.y148{bottom:221.625000px;}
.y14a{bottom:222.973500px;}
.y149{bottom:223.048500px;}
.y31{bottom:223.275000px;}
.y14b{bottom:223.423500px;}
.y30{bottom:224.400000px;}
.y2f{bottom:225.823500px;}
.y2e{bottom:226.198500px;}
.y2d{bottom:226.875000px;}
.ya1{bottom:227.848500px;}
.y10b{bottom:231.000000px;}
.yd6{bottom:234.525000px;}
.y70{bottom:238.348500px;}
.y146{bottom:242.848500px;}
.y2c{bottom:243.823500px;}
.y2b{bottom:244.875000px;}
.y2a{bottom:246.298500px;}
.ya0{bottom:248.025000px;}
.y10a{bottom:250.048500px;}
.y109{bottom:251.473500px;}
.yd5{bottom:254.698500px;}
.y6e{bottom:258.523500px;}
.y6f{bottom:259.875000px;}
.y145{bottom:261.598500px;}
.y28{bottom:263.625000px;}
.y29{bottom:263.698500px;}
.y27{bottom:265.423500px;}
.y9f{bottom:268.500000px;}
.y108{bottom:270.223500px;}
.y107{bottom:271.348500px;}
.yd4{bottom:274.875000px;}
.y6b{bottom:278.625000px;}
.y6c{bottom:279.000000px;}
.y6d{bottom:279.673500px;}
.y142{bottom:282.448500px;}
.y143{bottom:283.198500px;}
.y144{bottom:283.875000px;}
.y26{bottom:287.398500px;}
.y9e{bottom:288.375000px;}
.y106{bottom:290.098500px;}
.y105{bottom:291.823500px;}
.y104{bottom:292.198500px;}
.yd3{bottom:295.048500px;}
.y6a{bottom:299.473500px;}
.y141{bottom:303.375000px;}
.y25{bottom:306.073500px;}
.y9d{bottom:308.848500px;}
.y103{bottom:311.250000px;}
.yd2{bottom:315.148500px;}
.y69{bottom:319.648500px;}
.y13f{bottom:323.173500px;}
.y140{bottom:324.223500px;}
.y24{bottom:325.948500px;}
.y9c{bottom:329.398500px;}
.y102{bottom:330.750000px;}
.y101{bottom:332.848500px;}
.ycf{bottom:335.023500px;}
.yd0{bottom:335.698500px;}
.yd1{bottom:336.448500px;}
.y66{bottom:339.448500px;}
.y67{bottom:340.573500px;}
.y68{bottom:340.875000px;}
.y13e{bottom:343.648500px;}
.y23{bottom:346.048500px;}
.y100{bottom:349.423500px;}
.y9b{bottom:349.500000px;}
.yff{bottom:350.098500px;}
.yfe{bottom:351.898500px;}
.ycb{bottom:355.125000px;}
.ycd{bottom:355.875000px;}
.ycc{bottom:356.173500px;}
.yce{bottom:356.250000px;}
.y65{bottom:361.423500px;}
.y13d{bottom:363.823500px;}
.y22{bottom:366.223500px;}
.y9a{bottom:369.375000px;}
.yfd{bottom:371.398500px;}
.yca{bottom:375.298500px;}
.y64{bottom:381.598500px;}
.y13c{bottom:383.698500px;}
.y21{bottom:387.823500px;}
.y20{bottom:388.198500px;}
.y99{bottom:389.473500px;}
.y98{bottom:389.848500px;}
.yfc{bottom:391.875000px;}
.yc9{bottom:395.848500px;}
.y63{bottom:402.448500px;}
.y13b{bottom:404.098500px;}
.y1f{bottom:406.875000px;}
.y97{bottom:410.023500px;}
.yfb{bottom:411.750000px;}
.yc8{bottom:414.898500px;}
.y139{bottom:423.223500px;}
.y62{bottom:424.048500px;}
.y13a{bottom:424.273500px;}
.y1e{bottom:425.250000px;}
.y1d{bottom:426.000000px;}
.y1c{bottom:426.298500px;}
.y1b{bottom:427.798500px;}
.y96{bottom:430.198500px;}
.yfa{bottom:432.223500px;}
.yc7{bottom:436.125000px;}
.y136{bottom:442.648500px;}
.y137{bottom:443.398500px;}
.y138{bottom:444.448500px;}
.y61{bottom:444.598500px;}
.y1a{bottom:447.223500px;}
.y95{bottom:450.673500px;}
.yf9{bottom:452.398500px;}
.yc6{bottom:456.298500px;}
.y134{bottom:463.948500px;}
.y60{bottom:464.773500px;}
.y135{bottom:465.375000px;}
.y19{bottom:467.398500px;}
.y93{bottom:470.473500px;}
.y94{bottom:470.548500px;}
.y92{bottom:470.923500px;}
.yf8{bottom:472.573500px;}
.yc5{bottom:476.473500px;}
.y133{bottom:484.423500px;}
.y5e{bottom:484.875000px;}
.y5f{bottom:485.625000px;}
.y18{bottom:489.000000px;}
.y91{bottom:491.023500px;}
.yf7{bottom:493.048500px;}
.yc4{bottom:496.948500px;}
.y130{bottom:503.548500px;}
.y131{bottom:504.598500px;}
.y5c{bottom:504.673500px;}
.y5b{bottom:504.750000px;}
.y132{bottom:505.273500px;}
.y5d{bottom:505.798500px;}
.y17{bottom:506.323500px;}
.y16{bottom:506.625000px;}
.y15{bottom:508.423500px;}
.y90{bottom:511.198500px;}
.yf6{bottom:513.223500px;}
.yc3{bottom:516.073500px;}
.y5a{bottom:525.223500px;}
.y12f{bottom:525.448500px;}
.y14{bottom:527.848500px;}
.y8f{bottom:533.098500px;}
.yf5{bottom:533.398500px;}
.yc2{bottom:537.298500px;}
.y12e{bottom:545.323500px;}
.y59{bottom:545.398500px;}
.y13{bottom:548.398500px;}
.y8e{bottom:552.973500px;}
.yf4{bottom:553.573500px;}
.yc1{bottom:557.398500px;}
.y58{bottom:565.198500px;}
.y12d{bottom:565.423500px;}
.y12{bottom:568.950000px;}
.yf3{bottom:573.750000px;}
.y8d{bottom:575.700000px;}
.yc0{bottom:577.575000px;}
.y56{bottom:585.375000px;}
.y12c{bottom:585.598500px;}
.y57{bottom:586.798500px;}
.y11{bottom:586.875000px;}
.y10{bottom:589.048500px;}
.y8c{bottom:594.375000px;}
.yf2{bottom:594.598500px;}
.y8b{bottom:595.048500px;}
.y8a{bottom:595.798500px;}
.ybd{bottom:597.075000px;}
.ybe{bottom:597.750000px;}
.ybf{bottom:597.825000px;}
.y12b{bottom:605.773500px;}
.y55{bottom:605.848500px;}
.yf{bottom:608.923500px;}
.yf1{bottom:614.398500px;}
.y89{bottom:615.223500px;}
.ybc{bottom:617.923500px;}
.y12a{bottom:626.250000px;}
.y54{bottom:627.148500px;}
.ye{bottom:629.398500px;}
.yf0{bottom:634.200000px;}
.y88{bottom:635.700000px;}
.ybb{bottom:638.098500px;}
.y128{bottom:645.375000px;}
.y129{bottom:646.798500px;}
.y53{bottom:648.000000px;}
.yd{bottom:649.875000px;}
.yef{bottom:654.000000px;}
.yee{bottom:654.673500px;}
.y87{bottom:655.875000px;}
.yed{bottom:656.173500px;}
.yba{bottom:658.275000px;}
.y126{bottom:666.900000px;}
.y127{bottom:668.400000px;}
.y52{bottom:668.848500px;}
.yc{bottom:669.673500px;}
.yec{bottom:675.298500px;}
.y86{bottom:676.048500px;}
.yb9{bottom:678.750000px;}
.y125{bottom:687.150000px;}
.y50{bottom:687.598500px;}
.y51{bottom:687.900000px;}
.yb{bottom:690.223500px;}
.ya{bottom:692.025000px;}
.y9{bottom:692.400000px;}
.yeb{bottom:695.698500px;}
.y85{bottom:695.923500px;}
.yb8{bottom:698.173500px;}
.y124{bottom:707.625000px;}
.y4f{bottom:709.198500px;}
.yea{bottom:716.250000px;}
.y84{bottom:718.875000px;}
.yb7{bottom:719.098500px;}
.y8{bottom:724.798500px;}
.y7{bottom:725.473500px;}
.y123{bottom:727.500000px;}
.y4d{bottom:729.673500px;}
.y4e{bottom:730.798500px;}
.ye9{bottom:736.423500px;}
.y83{bottom:738.375000px;}
.yb6{bottom:739.275000px;}
.y121{bottom:747.223500px;}
.y122{bottom:748.348500px;}
.y4c{bottom:749.923500px;}
.ye8{bottom:756.598500px;}
.y82{bottom:758.848500px;}
.yb5{bottom:760.125000px;}
.y4{bottom:767.625000px;}
.y5{bottom:768.000000px;}
.y120{bottom:768.448500px;}
.y6{bottom:769.800000px;}
.y4a{bottom:770.025000px;}
.y4b{bottom:771.448500px;}
.ye7{bottom:777.073500px;}
.y81{bottom:779.025000px;}
.yb4{bottom:779.550000px;}
.y3{bottom:786.675000px;}
.y11d{bottom:787.948500px;}
.y2{bottom:788.473500px;}
.y11e{bottom:788.625000px;}
.y11f{bottom:789.375000px;}
.y47{bottom:789.823500px;}
.y48{bottom:790.500000px;}
.y49{bottom:791.625000px;}
.ye6{bottom:797.250000px;}
.y80{bottom:799.198500px;}
.yb3{bottom:800.473500px;}
.y11c{bottom:808.425000px;}
.y46{bottom:811.125000px;}
.ye5{bottom:817.800000px;}
.y7f{bottom:819.750000px;}
.yb2{bottom:820.948500px;}
.y1{bottom:822.000000px;}
.y119{bottom:828.900000px;}
.y11a{bottom:829.650000px;}
.y11b{bottom:830.025000px;}
.y45{bottom:831.300000px;}
.ye4{bottom:837.973500px;}
.y7e{bottom:839.848500px;}
.ye3{bottom:840.073500px;}
.yb1{bottom:841.125000px;}
.y116{bottom:848.775000px;}
.y117{bottom:849.823500px;}
.y118{bottom:850.573500px;}
.y44{bottom:851.775000px;}
.ye2{bottom:858.823500px;}
.yb0{bottom:861.300000px;}
.y7d{bottom:862.875000px;}
.y115{bottom:870.000000px;}
.y43{bottom:873.675000px;}
.ye1{bottom:879.000000px;}
.yaf{bottom:881.775000px;}
.y7c{bottom:882.375000px;}
.y42{bottom:894.598500px;}
.ye0{bottom:899.473500px;}
.yae{bottom:901.948500px;}
.y7b{bottom:902.848500px;}
.y112{bottom:903.073500px;}
.y111{bottom:903.150000px;}
.y113{bottom:904.198500px;}
.y114{bottom:905.250000px;}
.y41{bottom:914.025000px;}
.ydf{bottom:919.650000px;}
.yad{bottom:922.198500px;}
.y7a{bottom:923.400000px;}
.y3f{bottom:934.573500px;}
.y40{bottom:936.675000px;}
.y110{bottom:949.198500px;}
.yde{bottom:956.025000px;}
.yac{bottom:959.175000px;}
.y78{bottom:960.448500px;}
.y79{bottom:960.525000px;}
.y3e{bottom:972.375000px;}
.ha{height:41.220703px;}
.hb{height:47.109375px;}
.hf{height:48.375000px;}
.h13{height:52.998047px;}
.h15{height:56.320312px;}
.h7{height:58.886719px;}
.he{height:62.578125px;}
.h8{height:64.775391px;}
.hd{height:66.515625px;}
.h5{height:70.664062px;}
.h3{height:72.562500px;}
.h10{height:76.552734px;}
.h4{height:76.824000px;}
.h11{height:78.609375px;}
.h6{height:81.351562px;}
.h2{height:102.796875px;}
.h1{height:114.890625px;}
.h9{height:691.500000px;}
.h16{height:1014.000000px;}
.h0{height:1020.000000px;}
.h14{height:1021.500000px;}
.h12{height:1023.000000px;}
.h17{height:1024.500000px;}
.hc{height:1026.000000px;}
.w0{width:672.000000px;}
.w3{width:679.500000px;}
.w5{width:681.000000px;}
.w2{width:684.000000px;}
.w4{width:687.000000px;}
.w1{width:1011.000000px;}
.x0{left:0.000000px;}
.x5d{left:75.975000px;}
.x1{left:77.025000px;}
.xe{left:78.150000px;}
.x49{left:79.200000px;}
.x4a{left:80.250000px;}
.x4d{left:81.375000px;}
.x55{left:82.425000px;}
.x31{left:83.850000px;}
.x39{left:84.975000px;}
.x42{left:86.025000px;}
.x45{left:87.450000px;}
.x6b{left:88.950000px;}
.x71{left:90.375000px;}
.x76{left:92.175000px;}
.x5e{left:93.975000px;}
.x61{left:95.025000px;}
.x4f{left:97.948500px;}
.x26{left:99.375000px;}
.x27{left:104.400000px;}
.x60{left:105.448500px;}
.x25{left:107.250000px;}
.x12{left:108.375000px;}
.xb{left:109.425000px;}
.x1f{left:110.850000px;}
.x59{left:112.350000px;}
.x33{left:113.775000px;}
.x38{left:115.200000px;}
.x3f{left:117.375000px;}
.x6d{left:118.800000px;}
.x72{left:119.850000px;}
.x75{left:121.650000px;}
.x40{left:126.750000px;}
.xc{left:134.625000px;}
.x6a{left:136.050000px;}
.x2{left:140.775000px;}
.x16{left:144.750000px;}
.x3b{left:147.225000px;}
.x17{left:157.350000px;}
.x6c{left:159.150000px;}
.x24{left:160.200000px;}
.x18{left:163.425000px;}
.x6f{left:167.400000px;}
.x5a{left:175.350000px;}
.x28{left:176.400000px;}
.x20{left:179.250000px;}
.x9{left:184.350000px;}
.xd{left:186.450000px;}
.x77{left:190.800000px;}
.x62{left:194.773500px;}
.xa{left:200.550000px;}
.x21{left:206.250000px;}
.x4b{left:224.625000px;}
.x50{left:232.200000px;}
.x4c{left:244.050000px;}
.x3c{left:253.800000px;}
.x70{left:257.025000px;}
.x69{left:263.850000px;}
.x78{left:270.375000px;}
.x22{left:275.025000px;}
.x2b{left:279.750000px;}
.x53{left:294.825000px;}
.x3d{left:297.000000px;}
.x54{left:298.050000px;}
.x46{left:303.150000px;}
.x52{left:304.575000px;}
.x68{left:306.375000px;}
.x34{left:308.175000px;}
.x2f{left:310.650000px;}
.x1d{left:322.575000px;}
.x47{left:326.175000px;}
.x35{left:328.650000px;}
.x4{left:330.825000px;}
.x30{left:333.375000px;}
.x43{left:336.975000px;}
.x5{left:356.025000px;}
.x66{left:366.150000px;}
.x6{left:367.950000px;}
.x64{left:376.200000px;}
.x44{left:380.550000px;}
.x7{left:385.575000px;}
.x48{left:401.775000px;}
.x1e{left:405.000000px;}
.x13{left:407.173500px;}
.x73{left:416.548500px;}
.x56{left:419.775000px;}
.x67{left:423.000000px;}
.x79{left:424.423500px;}
.x57{left:425.548500px;}
.x4e{left:426.600000px;}
.x2c{left:428.400000px;}
.x51{left:431.250000px;}
.x65{left:434.548500px;}
.x8{left:435.975000px;}
.x14{left:442.423500px;}
.x63{left:451.798500px;}
.x3{left:454.650000px;}
.x19{left:461.175000px;}
.x5f{left:473.775000px;}
.x74{left:494.625000px;}
.x58{left:505.050000px;}
.x5b{left:510.450000px;}
.x15{left:514.050000px;}
.x1a{left:518.025000px;}
.x1b{left:519.825000px;}
.x32{left:522.375000px;}
.x36{left:528.825000px;}
.x23{left:530.625000px;}
.x10{left:531.750000px;}
.x5c{left:543.975000px;}
.x1c{left:545.400000px;}
.x29{left:546.825000px;}
.x11{left:553.650000px;}
.x41{left:558.375000px;}
.xf{left:561.225000px;}
.x37{left:563.775000px;}
.x3a{left:567.375000px;}
.x6e{left:569.175000px;}
.x2a{left:572.400000px;}
.x2d{left:576.000000px;}
.x3e{left:577.800000px;}
.x2e{left:591.825000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
.fs6{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs1{font-size:90.666667pt;}
.fs0{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:57.865333pt;}
.y3c{bottom:58.132000pt;}
.y3d{bottom:58.198667pt;}
.y3a{bottom:92.598667pt;}
.ya8{bottom:93.398667pt;}
.ydd{bottom:94.865333pt;}
.y76{bottom:103.000000pt;}
.y77{bottom:103.666667pt;}
.yda{bottom:108.932000pt;}
.ydb{bottom:109.865333pt;}
.y39{bottom:110.198667pt;}
.ydc{bottom:110.532000pt;}
.ya7{bottom:111.333333pt;}
.y14f{bottom:111.865333pt;}
.y150{bottom:112.198667pt;}
.yab{bottom:119.532000pt;}
.yaa{bottom:119.865333pt;}
.ya9{bottom:120.198667pt;}
.y75{bottom:121.000000pt;}
.y152{bottom:124.065333pt;}
.y151{bottom:124.133333pt;}
.y38{bottom:126.532000pt;}
.y37{bottom:128.065333pt;}
.ya6{bottom:129.265333pt;}
.y36{bottom:130.000000pt;}
.y10f{bottom:133.932000pt;}
.y74{bottom:139.198667pt;}
.y14e{bottom:143.265333pt;}
.y35{bottom:146.333333pt;}
.ya5{bottom:146.865333pt;}
.ya4{bottom:147.198667pt;}
.y10e{bottom:150.598667pt;}
.yd9{bottom:154.732000pt;}
.y73{bottom:158.065333pt;}
.y14d{bottom:162.398667pt;}
.y34{bottom:164.000000pt;}
.ya3{bottom:164.800000pt;}
.y10d{bottom:168.532000pt;}
.yd8{bottom:172.932000pt;}
.y72{bottom:176.265333pt;}
.y14c{bottom:180.065333pt;}
.y33{bottom:182.800000pt;}
.y32{bottom:183.466667pt;}
.ya2{bottom:184.932000pt;}
.y10c{bottom:186.398667pt;}
.yd7{bottom:190.265333pt;}
.y71{bottom:194.532000pt;}
.y147{bottom:196.666667pt;}
.y148{bottom:197.000000pt;}
.y14a{bottom:198.198667pt;}
.y149{bottom:198.265333pt;}
.y31{bottom:198.466667pt;}
.y14b{bottom:198.598667pt;}
.y30{bottom:199.466667pt;}
.y2f{bottom:200.732000pt;}
.y2e{bottom:201.065333pt;}
.y2d{bottom:201.666667pt;}
.ya1{bottom:202.532000pt;}
.y10b{bottom:205.333333pt;}
.yd6{bottom:208.466667pt;}
.y70{bottom:211.865333pt;}
.y146{bottom:215.865333pt;}
.y2c{bottom:216.732000pt;}
.y2b{bottom:217.666667pt;}
.y2a{bottom:218.932000pt;}
.ya0{bottom:220.466667pt;}
.y10a{bottom:222.265333pt;}
.y109{bottom:223.532000pt;}
.yd5{bottom:226.398667pt;}
.y6e{bottom:229.798667pt;}
.y6f{bottom:231.000000pt;}
.y145{bottom:232.532000pt;}
.y28{bottom:234.333333pt;}
.y29{bottom:234.398667pt;}
.y27{bottom:235.932000pt;}
.y9f{bottom:238.666667pt;}
.y108{bottom:240.198667pt;}
.y107{bottom:241.198667pt;}
.yd4{bottom:244.333333pt;}
.y6b{bottom:247.666667pt;}
.y6c{bottom:248.000000pt;}
.y6d{bottom:248.598667pt;}
.y142{bottom:251.065333pt;}
.y143{bottom:251.732000pt;}
.y144{bottom:252.333333pt;}
.y26{bottom:255.465333pt;}
.y9e{bottom:256.333333pt;}
.y106{bottom:257.865333pt;}
.y105{bottom:259.398667pt;}
.y104{bottom:259.732000pt;}
.yd3{bottom:262.265333pt;}
.y6a{bottom:266.198667pt;}
.y141{bottom:269.666667pt;}
.y25{bottom:272.065333pt;}
.y9d{bottom:274.532000pt;}
.y103{bottom:276.666667pt;}
.yd2{bottom:280.132000pt;}
.y69{bottom:284.132000pt;}
.y13f{bottom:287.265333pt;}
.y140{bottom:288.198667pt;}
.y24{bottom:289.732000pt;}
.y9c{bottom:292.798667pt;}
.y102{bottom:294.000000pt;}
.y101{bottom:295.865333pt;}
.ycf{bottom:297.798667pt;}
.yd0{bottom:298.398667pt;}
.yd1{bottom:299.065333pt;}
.y66{bottom:301.732000pt;}
.y67{bottom:302.732000pt;}
.y68{bottom:303.000000pt;}
.y13e{bottom:305.465333pt;}
.y23{bottom:307.598667pt;}
.y100{bottom:310.598667pt;}
.y9b{bottom:310.666667pt;}
.yff{bottom:311.198667pt;}
.yfe{bottom:312.798667pt;}
.ycb{bottom:315.666667pt;}
.ycd{bottom:316.333333pt;}
.ycc{bottom:316.598667pt;}
.yce{bottom:316.666667pt;}
.y65{bottom:321.265333pt;}
.y13d{bottom:323.398667pt;}
.y22{bottom:325.532000pt;}
.y9a{bottom:328.333333pt;}
.yfd{bottom:330.132000pt;}
.yca{bottom:333.598667pt;}
.y64{bottom:339.198667pt;}
.y13c{bottom:341.065333pt;}
.y21{bottom:344.732000pt;}
.y20{bottom:345.065333pt;}
.y99{bottom:346.198667pt;}
.y98{bottom:346.532000pt;}
.yfc{bottom:348.333333pt;}
.yc9{bottom:351.865333pt;}
.y63{bottom:357.732000pt;}
.y13b{bottom:359.198667pt;}
.y1f{bottom:361.666667pt;}
.y97{bottom:364.465333pt;}
.yfb{bottom:366.000000pt;}
.yc8{bottom:368.798667pt;}
.y139{bottom:376.198667pt;}
.y62{bottom:376.932000pt;}
.y13a{bottom:377.132000pt;}
.y1e{bottom:378.000000pt;}
.y1d{bottom:378.666667pt;}
.y1c{bottom:378.932000pt;}
.y1b{bottom:380.265333pt;}
.y96{bottom:382.398667pt;}
.yfa{bottom:384.198667pt;}
.yc7{bottom:387.666667pt;}
.y136{bottom:393.465333pt;}
.y137{bottom:394.132000pt;}
.y138{bottom:395.065333pt;}
.y61{bottom:395.198667pt;}
.y1a{bottom:397.532000pt;}
.y95{bottom:400.598667pt;}
.yf9{bottom:402.132000pt;}
.yc6{bottom:405.598667pt;}
.y134{bottom:412.398667pt;}
.y60{bottom:413.132000pt;}
.y135{bottom:413.666667pt;}
.y19{bottom:415.465333pt;}
.y93{bottom:418.198667pt;}
.y94{bottom:418.265333pt;}
.y92{bottom:418.598667pt;}
.yf8{bottom:420.065333pt;}
.yc5{bottom:423.532000pt;}
.y133{bottom:430.598667pt;}
.y5e{bottom:431.000000pt;}
.y5f{bottom:431.666667pt;}
.y18{bottom:434.666667pt;}
.y91{bottom:436.465333pt;}
.yf7{bottom:438.265333pt;}
.yc4{bottom:441.732000pt;}
.y130{bottom:447.598667pt;}
.y131{bottom:448.532000pt;}
.y5c{bottom:448.598667pt;}
.y5b{bottom:448.666667pt;}
.y132{bottom:449.132000pt;}
.y5d{bottom:449.598667pt;}
.y17{bottom:450.065333pt;}
.y16{bottom:450.333333pt;}
.y15{bottom:451.932000pt;}
.y90{bottom:454.398667pt;}
.yf6{bottom:456.198667pt;}
.yc3{bottom:458.732000pt;}
.y5a{bottom:466.865333pt;}
.y12f{bottom:467.065333pt;}
.y14{bottom:469.198667pt;}
.y8f{bottom:473.865333pt;}
.yf5{bottom:474.132000pt;}
.yc2{bottom:477.598667pt;}
.y12e{bottom:484.732000pt;}
.y59{bottom:484.798667pt;}
.y13{bottom:487.465333pt;}
.y8e{bottom:491.532000pt;}
.yf4{bottom:492.065333pt;}
.yc1{bottom:495.465333pt;}
.y58{bottom:502.398667pt;}
.y12d{bottom:502.598667pt;}
.y12{bottom:505.733333pt;}
.yf3{bottom:510.000000pt;}
.y8d{bottom:511.733333pt;}
.yc0{bottom:513.400000pt;}
.y56{bottom:520.333333pt;}
.y12c{bottom:520.532000pt;}
.y57{bottom:521.598667pt;}
.y11{bottom:521.666667pt;}
.y10{bottom:523.598667pt;}
.y8c{bottom:528.333333pt;}
.yf2{bottom:528.532000pt;}
.y8b{bottom:528.932000pt;}
.y8a{bottom:529.598667pt;}
.ybd{bottom:530.733333pt;}
.ybe{bottom:531.333333pt;}
.ybf{bottom:531.400000pt;}
.y12b{bottom:538.465333pt;}
.y55{bottom:538.532000pt;}
.yf{bottom:541.265333pt;}
.yf1{bottom:546.132000pt;}
.y89{bottom:546.865333pt;}
.ybc{bottom:549.265333pt;}
.y12a{bottom:556.666667pt;}
.y54{bottom:557.465333pt;}
.ye{bottom:559.465333pt;}
.yf0{bottom:563.733333pt;}
.y88{bottom:565.066667pt;}
.ybb{bottom:567.198667pt;}
.y128{bottom:573.666667pt;}
.y129{bottom:574.932000pt;}
.y53{bottom:576.000000pt;}
.yd{bottom:577.666667pt;}
.yef{bottom:581.333333pt;}
.yee{bottom:581.932000pt;}
.y87{bottom:583.000000pt;}
.yed{bottom:583.265333pt;}
.yba{bottom:585.133333pt;}
.y126{bottom:592.800000pt;}
.y127{bottom:594.133333pt;}
.y52{bottom:594.532000pt;}
.yc{bottom:595.265333pt;}
.yec{bottom:600.265333pt;}
.y86{bottom:600.932000pt;}
.yb9{bottom:603.333333pt;}
.y125{bottom:610.800000pt;}
.y50{bottom:611.198667pt;}
.y51{bottom:611.466667pt;}
.yb{bottom:613.532000pt;}
.ya{bottom:615.133333pt;}
.y9{bottom:615.466667pt;}
.yeb{bottom:618.398667pt;}
.y85{bottom:618.598667pt;}
.yb8{bottom:620.598667pt;}
.y124{bottom:629.000000pt;}
.y4f{bottom:630.398667pt;}
.yea{bottom:636.666667pt;}
.y84{bottom:639.000000pt;}
.yb7{bottom:639.198667pt;}
.y8{bottom:644.265333pt;}
.y7{bottom:644.865333pt;}
.y123{bottom:646.666667pt;}
.y4d{bottom:648.598667pt;}
.y4e{bottom:649.598667pt;}
.ye9{bottom:654.598667pt;}
.y83{bottom:656.333333pt;}
.yb6{bottom:657.133333pt;}
.y121{bottom:664.198667pt;}
.y122{bottom:665.198667pt;}
.y4c{bottom:666.598667pt;}
.ye8{bottom:672.532000pt;}
.y82{bottom:674.532000pt;}
.yb5{bottom:675.666667pt;}
.y4{bottom:682.333333pt;}
.y5{bottom:682.666667pt;}
.y120{bottom:683.065333pt;}
.y6{bottom:684.266667pt;}
.y4a{bottom:684.466667pt;}
.y4b{bottom:685.732000pt;}
.ye7{bottom:690.732000pt;}
.y81{bottom:692.466667pt;}
.yb4{bottom:692.933333pt;}
.y3{bottom:699.266667pt;}
.y11d{bottom:700.398667pt;}
.y2{bottom:700.865333pt;}
.y11e{bottom:701.000000pt;}
.y11f{bottom:701.666667pt;}
.y47{bottom:702.065333pt;}
.y48{bottom:702.666667pt;}
.y49{bottom:703.666667pt;}
.ye6{bottom:708.666667pt;}
.y80{bottom:710.398667pt;}
.yb3{bottom:711.532000pt;}
.y11c{bottom:718.600000pt;}
.y46{bottom:721.000000pt;}
.ye5{bottom:726.933333pt;}
.y7f{bottom:728.666667pt;}
.yb2{bottom:729.732000pt;}
.y1{bottom:730.666667pt;}
.y119{bottom:736.800000pt;}
.y11a{bottom:737.466667pt;}
.y11b{bottom:737.800000pt;}
.y45{bottom:738.933333pt;}
.ye4{bottom:744.865333pt;}
.y7e{bottom:746.532000pt;}
.ye3{bottom:746.732000pt;}
.yb1{bottom:747.666667pt;}
.y116{bottom:754.466667pt;}
.y117{bottom:755.398667pt;}
.y118{bottom:756.065333pt;}
.y44{bottom:757.133333pt;}
.ye2{bottom:763.398667pt;}
.yb0{bottom:765.600000pt;}
.y7d{bottom:767.000000pt;}
.y115{bottom:773.333333pt;}
.y43{bottom:776.600000pt;}
.ye1{bottom:781.333333pt;}
.yaf{bottom:783.800000pt;}
.y7c{bottom:784.333333pt;}
.y42{bottom:795.198667pt;}
.ye0{bottom:799.532000pt;}
.yae{bottom:801.732000pt;}
.y7b{bottom:802.532000pt;}
.y112{bottom:802.732000pt;}
.y111{bottom:802.800000pt;}
.y113{bottom:803.732000pt;}
.y114{bottom:804.666667pt;}
.y41{bottom:812.466667pt;}
.ydf{bottom:817.466667pt;}
.yad{bottom:819.732000pt;}
.y7a{bottom:820.800000pt;}
.y3f{bottom:830.732000pt;}
.y40{bottom:832.600000pt;}
.y110{bottom:843.732000pt;}
.yde{bottom:849.800000pt;}
.yac{bottom:852.600000pt;}
.y78{bottom:853.732000pt;}
.y79{bottom:853.800000pt;}
.y3e{bottom:864.333333pt;}
.ha{height:36.640625pt;}
.hb{height:41.875000pt;}
.hf{height:43.000000pt;}
.h13{height:47.109375pt;}
.h15{height:50.062500pt;}
.h7{height:52.343750pt;}
.he{height:55.625000pt;}
.h8{height:57.578125pt;}
.hd{height:59.125000pt;}
.h5{height:62.812500pt;}
.h3{height:64.500000pt;}
.h10{height:68.046875pt;}
.h4{height:68.288000pt;}
.h11{height:69.875000pt;}
.h6{height:72.312500pt;}
.h2{height:91.375000pt;}
.h1{height:102.125000pt;}
.h9{height:614.666667pt;}
.h16{height:901.333333pt;}
.h0{height:906.666667pt;}
.h14{height:908.000000pt;}
.h12{height:909.333333pt;}
.h17{height:910.666667pt;}
.hc{height:912.000000pt;}
.w0{width:597.333333pt;}
.w3{width:604.000000pt;}
.w5{width:605.333333pt;}
.w2{width:608.000000pt;}
.w4{width:610.666667pt;}
.w1{width:898.666667pt;}
.x0{left:0.000000pt;}
.x5d{left:67.533333pt;}
.x1{left:68.466667pt;}
.xe{left:69.466667pt;}
.x49{left:70.400000pt;}
.x4a{left:71.333333pt;}
.x4d{left:72.333333pt;}
.x55{left:73.266667pt;}
.x31{left:74.533333pt;}
.x39{left:75.533333pt;}
.x42{left:76.466667pt;}
.x45{left:77.733333pt;}
.x6b{left:79.066667pt;}
.x71{left:80.333333pt;}
.x76{left:81.933333pt;}
.x5e{left:83.533333pt;}
.x61{left:84.466667pt;}
.x4f{left:87.065333pt;}
.x26{left:88.333333pt;}
.x27{left:92.800000pt;}
.x60{left:93.732000pt;}
.x25{left:95.333333pt;}
.x12{left:96.333333pt;}
.xb{left:97.266667pt;}
.x1f{left:98.533333pt;}
.x59{left:99.866667pt;}
.x33{left:101.133333pt;}
.x38{left:102.400000pt;}
.x3f{left:104.333333pt;}
.x6d{left:105.600000pt;}
.x72{left:106.533333pt;}
.x75{left:108.133333pt;}
.x40{left:112.666667pt;}
.xc{left:119.666667pt;}
.x6a{left:120.933333pt;}
.x2{left:125.133333pt;}
.x16{left:128.666667pt;}
.x3b{left:130.866667pt;}
.x17{left:139.866667pt;}
.x6c{left:141.466667pt;}
.x24{left:142.400000pt;}
.x18{left:145.266667pt;}
.x6f{left:148.800000pt;}
.x5a{left:155.866667pt;}
.x28{left:156.800000pt;}
.x20{left:159.333333pt;}
.x9{left:163.866667pt;}
.xd{left:165.733333pt;}
.x77{left:169.600000pt;}
.x62{left:173.132000pt;}
.xa{left:178.266667pt;}
.x21{left:183.333333pt;}
.x4b{left:199.666667pt;}
.x50{left:206.400000pt;}
.x4c{left:216.933333pt;}
.x3c{left:225.600000pt;}
.x70{left:228.466667pt;}
.x69{left:234.533333pt;}
.x78{left:240.333333pt;}
.x22{left:244.466667pt;}
.x2b{left:248.666667pt;}
.x53{left:262.066667pt;}
.x3d{left:264.000000pt;}
.x54{left:264.933333pt;}
.x46{left:269.466667pt;}
.x52{left:270.733333pt;}
.x68{left:272.333333pt;}
.x34{left:273.933333pt;}
.x2f{left:276.133333pt;}
.x1d{left:286.733333pt;}
.x47{left:289.933333pt;}
.x35{left:292.133333pt;}
.x4{left:294.066667pt;}
.x30{left:296.333333pt;}
.x43{left:299.533333pt;}
.x5{left:316.466667pt;}
.x66{left:325.466667pt;}
.x6{left:327.066667pt;}
.x64{left:334.400000pt;}
.x44{left:338.266667pt;}
.x7{left:342.733333pt;}
.x48{left:357.133333pt;}
.x1e{left:360.000000pt;}
.x13{left:361.932000pt;}
.x73{left:370.265333pt;}
.x56{left:373.133333pt;}
.x67{left:376.000000pt;}
.x79{left:377.265333pt;}
.x57{left:378.265333pt;}
.x4e{left:379.200000pt;}
.x2c{left:380.800000pt;}
.x51{left:383.333333pt;}
.x65{left:386.265333pt;}
.x8{left:387.533333pt;}
.x14{left:393.265333pt;}
.x63{left:401.598667pt;}
.x3{left:404.133333pt;}
.x19{left:409.933333pt;}
.x5f{left:421.133333pt;}
.x74{left:439.666667pt;}
.x58{left:448.933333pt;}
.x5b{left:453.733333pt;}
.x15{left:456.933333pt;}
.x1a{left:460.466667pt;}
.x1b{left:462.066667pt;}
.x32{left:464.333333pt;}
.x36{left:470.066667pt;}
.x23{left:471.666667pt;}
.x10{left:472.666667pt;}
.x5c{left:483.533333pt;}
.x1c{left:484.800000pt;}
.x29{left:486.066667pt;}
.x11{left:492.133333pt;}
.x41{left:496.333333pt;}
.xf{left:498.866667pt;}
.x37{left:501.133333pt;}
.x3a{left:504.333333pt;}
.x6e{left:505.933333pt;}
.x2a{left:508.800000pt;}
.x2d{left:512.000000pt;}
.x3e{left:513.600000pt;}
.x2e{left:526.066667pt;}
}




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