
    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_6aacfa9bca7886ca0ada4a57.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.042969;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_4245c80f5d40569331df7ab7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.027000;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_00e81bb0e3245e34da53fa46.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.992188;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_92197653d662f33165754b53.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.992188;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_5cc43616c52755906a9ece05.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.042969;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_ecb60508998dd5650fbeb5a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.027000;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_38330e2545bc72f0b1500d8b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.984375;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_19f066ee212c5621561e43f0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.992188;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_a4dc416cdb8f439137bc79d8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.042969;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_4bc3d103fb4d0fa80329a38d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.027000;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_7ca6ec270aadd76469f4745b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1236ea6b2188636736323cca.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.042969;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_71df2d0fbe0c3f0ff21b86e6.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.027000;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_61ad49518a22cf6d5bff45d1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.992188;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_c93f85fa6aacd8cd7e91c9c8.woff2')format("woff");}.fff{font-family:fff;line-height:0.992188;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_5cc43616c52755906a9ece05.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.042969;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_af8f89833db2db308ba111d5.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.027000;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_a6235599bba1b0853e98c0e9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.992188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_5cc43616c52755906a9ece05.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.042969;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_9c249e85f6ae263582a474ab.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.027000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_60ce32841cec4f0b9a70ed84.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.992188;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:ff16;src:url('chunks/assets/font_5cc43616c52755906a9ece05.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.042969;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:ff17;src:url('chunks/assets/font_d86d0f432e1433c6bc3419e6.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.027000;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:ff18;src:url('chunks/assets/font_61ad49518a22cf6d5bff45d1.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.992188;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:ff19;src:url('chunks/assets/font_5cc43616c52755906a9ece05.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.042969;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:ff1a;src:url('chunks/assets/font_6236082be8d03841790c456a.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.027000;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;}
.m18{transform:matrix(0.094500,-0.231245,0.231411,0.094599,0,0);-ms-transform:matrix(0.094500,-0.231245,0.231411,0.094599,0,0);-webkit-transform:matrix(0.094500,-0.231245,0.231411,0.094599,0,0);}
.m17{transform:matrix(0.104311,-0.227344,0.227250,0.104199,0,0);-ms-transform:matrix(0.104311,-0.227344,0.227250,0.104199,0,0);-webkit-transform:matrix(0.104311,-0.227344,0.227250,0.104199,0,0);}
.m15{transform:matrix(0.216296,-0.126957,0.126795,0.215460,0,0);-ms-transform:matrix(0.216296,-0.126957,0.126795,0.215460,0,0);-webkit-transform:matrix(0.216296,-0.126957,0.126795,0.215460,0,0);}
.m16{transform:matrix(0.241612,-0.065837,0.065622,0.241234,0,0);-ms-transform:matrix(0.241612,-0.065837,0.065622,0.241234,0,0);-webkit-transform:matrix(0.241612,-0.065837,0.065622,0.241234,0,0);}
.m20{transform:matrix(0.247413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247413,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248946,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249003,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249124,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249315,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249414,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249473,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249879,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250153,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251114,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-4.344000px;}
.v1{vertical-align:-1.717800px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.344000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.795533px;}
.ls1{letter-spacing:1.825046px;}
.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:-180.031200px;}
.ws1{word-spacing:-143.964000px;}
.ws14{word-spacing:-120.020400px;}
.ws13{word-spacing:-107.897400px;}
.ws4{word-spacing:-79.818446px;}
.ws12{word-spacing:-78.788933px;}
.ws3{word-spacing:-77.993400px;}
.ws11{word-spacing:-70.820400px;}
.wsf{word-spacing:-70.719000px;}
.ws10{word-spacing:-57.888600px;}
.ws5{word-spacing:-47.988000px;}
.ws9{word-spacing:-30.308400px;}
.wsb{word-spacing:-30.207000px;}
.ws6{word-spacing:-30.005400px;}
.wsc{word-spacing:-29.904000px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:223.100320px;}
.ws8{word-spacing:290.505869px;}
.wse{word-spacing:404.829389px;}
.wsd{word-spacing:420.117387px;}
.wsa{word-spacing:3676.193509px;}
._33{margin-left:-1570.157183px;}
._2{margin-left:-128.704305px;}
._1{margin-left:-120.260842px;}
._1c{margin-left:-109.708745px;}
._9{margin-left:-103.355912px;}
._14{margin-left:-102.291987px;}
._10{margin-left:-96.153556px;}
._1a{margin-left:-90.015600px;}
._12{margin-left:-82.678525px;}
._b{margin-left:-78.259563px;}
._1d{margin-left:-77.168575px;}
._11{margin-left:-74.654762px;}
._13{margin-left:-72.941072px;}
._38{margin-left:-71.812441px;}
._6{margin-left:-66.809578px;}
._3{margin-left:-63.983088px;}
._1b{margin-left:-61.861331px;}
._31{margin-left:-60.470907px;}
._f{margin-left:-59.054033px;}
._32{margin-left:-58.037396px;}
._8{margin-left:-56.961872px;}
._17{margin-left:-55.796290px;}
._2e{margin-left:-54.787870px;}
._4{margin-left:-53.451263px;}
._15{margin-left:-51.719234px;}
._0{margin-left:-50.624773px;}
._2f{margin-left:-49.351372px;}
._19{margin-left:-48.199840px;}
._7{margin-left:-47.114165px;}
._25{margin-left:-45.906915px;}
._d{margin-left:-44.431700px;}
._a{margin-left:-42.739407px;}
._23{margin-left:-41.214393px;}
._5{margin-left:-40.092948px;}
._24{margin-left:-38.996700px;}
._e{margin-left:-37.602836px;}
._22{margin-left:-36.117300px;}
._16{margin-left:-34.417636px;}
._20{margin-left:-32.985600px;}
._18{margin-left:-31.470000px;}
._21{margin-left:-30.005100px;}
._27{margin-left:-28.847681px;}
._26{margin-left:-26.931121px;}
._34{margin-left:-25.709926px;}
._1f{margin-left:-23.994000px;}
._30{margin-left:-22.664007px;}
._1e{margin-left:-21.378654px;}
._35{margin-left:-19.886183px;}
._c{margin-left:-17.769079px;}
._28{margin-left:-16.588264px;}
._2c{margin-left:-14.498609px;}
._2d{margin-left:-11.256927px;}
._36{margin-left:-9.513388px;}
._2b{margin-left:-1.801648px;}
._29{width:6.582643px;}
._2a{width:15.778065px;}
._37{width:318.433111px;}
.fc0{color:transparent;}
.fs19{font-size:29.904000px;}
.fs15{font-size:30.005400px;}
.fs18{font-size:30.207000px;}
.fs16{font-size:30.308400px;}
.fs11{font-size:47.944098px;}
.fs12{font-size:47.952210px;}
.fs8{font-size:47.988000px;}
.fs13{font-size:47.993373px;}
.fs14{font-size:48.057395px;}
.fs1b{font-size:57.888600px;}
.fsd{font-size:60.010200px;}
.fs2{font-size:62.940000px;}
.fsc{font-size:65.869800px;}
.fs9{font-size:65.971200px;}
.fsb{font-size:66.072000px;}
.fs1a{font-size:70.719000px;}
.fs1d{font-size:70.820400px;}
.fsf{font-size:72.234600px;}
.fs10{font-size:77.993400px;}
.fsa{font-size:83.953800px;}
.fs17{font-size:84.256800px;}
.fs3{font-size:86.580600px;}
.fs1c{font-size:89.914200px;}
.fs6{font-size:94.662600px;}
.fs4{font-size:100.118400px;}
.fse{font-size:107.796600px;}
.fs1e{font-size:107.897400px;}
.fs1f{font-size:120.020400px;}
.fs1{font-size:143.964000px;}
.fs5{font-size:178.212600px;}
.fs0{font-size:180.031200px;}
.fs7{font-size:288.130200px;}
.y0{bottom:0.000000px;}
.yff{bottom:15.668850px;}
.y17{bottom:17.613750px;}
.yec{bottom:20.417250px;}
.yd9{bottom:20.846550px;}
.y54{bottom:22.589250px;}
.yfe{bottom:43.179566px;}
.y16{bottom:45.124466px;}
.yeb{bottom:47.927966px;}
.yd8{bottom:48.357266px;}
.yf7{bottom:49.758750px;}
.y53{bottom:50.099966px;}
.yf{bottom:51.703500px;}
.ye4{bottom:54.507000px;}
.yd1{bottom:54.936300px;}
.y4c{bottom:56.679150px;}
.yfd{bottom:70.739250px;}
.yfc{bottom:70.740000px;}
.y15{bottom:72.684150px;}
.y14{bottom:72.684750px;}
.yea{bottom:75.487650px;}
.ye9{bottom:75.488250px;}
.yd7{bottom:75.916950px;}
.yd6{bottom:75.917700px;}
.y5{bottom:76.383000px;}
.y52{bottom:77.659650px;}
.y51{bottom:77.660400px;}
.y103{bottom:84.933150px;}
.y1b{bottom:86.878050px;}
.yf0{bottom:89.681550px;}
.ydd{bottom:90.110850px;}
.y58{bottom:91.828350px;}
.yfb{bottom:103.839900px;}
.y13{bottom:105.784650px;}
.ye8{bottom:108.588150px;}
.yd5{bottom:109.017600px;}
.y50{bottom:110.760300px;}
.y102{bottom:119.468250px;}
.y1a{bottom:121.413000px;}
.ya{bottom:122.497050px;}
.yc{bottom:122.769150px;}
.yb{bottom:122.778600px;}
.yef{bottom:124.216500px;}
.ydc{bottom:124.645950px;}
.y57{bottom:126.363300px;}
.ycc{bottom:128.401500px;}
.ycb{bottom:128.410950px;}
.yca{bottom:130.775550px;}
.yc9{bottom:130.785000px;}
.yfa{bottom:132.702300px;}
.y12{bottom:134.647050px;}
.ye7{bottom:137.450550px;}
.yd4{bottom:137.880000px;}
.y4f{bottom:139.622700px;}
.y101{bottom:140.463000px;}
.yf3{bottom:142.208550px;}
.yf4{bottom:142.216950px;}
.yf2{bottom:142.226400px;}
.y19{bottom:142.407750px;}
.yee{bottom:145.211250px;}
.ydb{bottom:145.640700px;}
.ye0{bottom:146.956950px;}
.ye1{bottom:146.965200px;}
.ydf{bottom:146.974800px;}
.y56{bottom:147.358050px;}
.yce{bottom:154.315050px;}
.ycd{bottom:154.324500px;}
.yf6{bottom:162.487050px;}
.ye{bottom:164.431800px;}
.yf9{bottom:164.861550px;}
.y11{bottom:166.806300px;}
.ye3{bottom:167.235300px;}
.yd0{bottom:167.664600px;}
.y9{bottom:167.763900px;}
.y4b{bottom:169.407300px;}
.ye6{bottom:169.609800px;}
.yd3{bottom:170.039100px;}
.y4e{bottom:171.781950px;}
.y49{bottom:172.878750px;}
.y48{bottom:172.888350px;}
.y104{bottom:189.094050px;}
.y1c{bottom:191.038800px;}
.yf1{bottom:193.867650px;}
.yde{bottom:194.296950px;}
.y8{bottom:195.300150px;}
.yf8{bottom:195.383100px;}
.y59{bottom:196.014450px;}
.y10{bottom:197.302650px;}
.ye5{bottom:200.131350px;}
.yd2{bottom:200.560650px;}
.y4d{bottom:202.278150px;}
.y4{bottom:224.194050px;}
.y100{bottom:238.137300px;}
.yf5{bottom:238.431600px;}
.y18{bottom:240.082050px;}
.yd{bottom:240.376350px;}
.yed{bottom:242.910750px;}
.ye2{bottom:243.179850px;}
.yda{bottom:243.340200px;}
.ycf{bottom:243.609300px;}
.y55{bottom:245.057700px;}
.y4a{bottom:245.326800px;}
.y42{bottom:284.980650px;}
.y43{bottom:303.073650px;}
.y44{bottom:303.300900px;}
.y47{bottom:303.502950px;}
.y45{bottom:303.676050px;}
.y46{bottom:303.730200px;}
.y81{bottom:305.513550px;}
.y80{bottom:339.635663px;}
.y7f{bottom:373.757775px;}
.y6c{bottom:404.257950px;}
.y7e{bottom:407.879888px;}
.yc7{bottom:427.302638px;}
.y6b{bottom:438.380063px;}
.y7d{bottom:442.002000px;}
.yc5{bottom:461.424375px;}
.yc6{bottom:461.424750px;}
.y6a{bottom:472.502175px;}
.y3a{bottom:476.205375px;}
.y8d{bottom:487.217850px;}
.yc4{bottom:495.546488px;}
.y69{bottom:506.624287px;}
.y7c{bottom:510.245887px;}
.y39{bottom:510.327487px;}
.y67{bottom:540.746025px;}
.y68{bottom:540.746400px;}
.y7b{bottom:544.368000px;}
.y37{bottom:544.449112px;}
.y38{bottom:544.449600px;}
.yc3{bottom:563.790713px;}
.y7a{bottom:578.490113px;}
.y36{bottom:578.571225px;}
.yc2{bottom:597.912825px;}
.y66{bottom:608.990250px;}
.y79{bottom:612.612225px;}
.y35{bottom:612.693337px;}
.yc1{bottom:632.034938px;}
.y65{bottom:643.112363px;}
.y78{bottom:646.734337px;}
.y34{bottom:646.815450px;}
.yc0{bottom:666.157050px;}
.y64{bottom:677.234475px;}
.y77{bottom:680.856450px;}
.y33{bottom:680.937562px;}
.y63{bottom:711.356587px;}
.y32{bottom:715.059675px;}
.ybf{bottom:735.310162px;}
.y61{bottom:745.478100px;}
.y62{bottom:745.478700px;}
.y76{bottom:749.100488px;}
.y31{bottom:749.181787px;}
.ybe{bottom:769.432275px;}
.y3e{bottom:773.155500px;}
.y74{bottom:783.222112px;}
.y75{bottom:783.222600px;}
.y30{bottom:783.303900px;}
.ybd{bottom:803.554387px;}
.y3c{bottom:810.307912px;}
.y60{bottom:813.722325px;}
.y73{bottom:817.344225px;}
.y3b{bottom:828.385500px;}
.ybb{bottom:837.676087px;}
.ybc{bottom:837.676500px;}
.y2f{bottom:841.470262px;}
.y5f{bottom:847.844438px;}
.y72{bottom:851.466338px;}
.y2e{bottom:875.592375px;}
.y5e{bottom:881.966550px;}
.y71{bottom:885.588450px;}
.yba{bottom:905.920312px;}
.y2d{bottom:909.714488px;}
.y5d{bottom:916.088663px;}
.y70{bottom:919.710562px;}
.yb9{bottom:940.042425px;}
.y2c{bottom:943.836600px;}
.y5c{bottom:950.210775px;}
.y6f{bottom:953.832675px;}
.y8c{bottom:960.337575px;}
.y82{bottom:966.219300px;}
.yb8{bottom:974.164538px;}
.y2b{bottom:977.958225px;}
.y5b{bottom:984.332888px;}
.y8b{bottom:985.663837px;}
.y6e{bottom:987.954788px;}
.y89{bottom:989.806200px;}
.y90{bottom:989.915250px;}
.y88{bottom:997.511550px;}
.y87{bottom:998.168250px;}
.y86{bottom:998.842950px;}
.y84{bottom:999.192900px;}
.y85{bottom:999.254250px;}
.y83{bottom:1000.340250px;}
.yb7{bottom:1008.286650px;}
.y8a{bottom:1010.990100px;}
.y2a{bottom:1012.080337px;}
.y5a{bottom:1018.455000px;}
.y6d{bottom:1022.076900px;}
.y29{bottom:1046.202450px;}
.yb6{bottom:1057.158488px;}
.y28{bottom:1080.324562px;}
.yb5{bottom:1091.280600px;}
.y27{bottom:1114.446675px;}
.y3d{bottom:1120.285800px;}
.yb4{bottom:1125.402713px;}
.y26{bottom:1148.568787px;}
.yb3{bottom:1159.524825px;}
.y6{bottom:1179.557850px;}
.y24{bottom:1182.690413px;}
.y25{bottom:1182.690900px;}
.yb2{bottom:1193.646938px;}
.y23{bottom:1216.812525px;}
.y7{bottom:1218.016800px;}
.yb1{bottom:1227.769050px;}
.y22{bottom:1250.934638px;}
.yb0{bottom:1261.890675px;}
.y21{bottom:1285.056750px;}
.yaf{bottom:1296.012788px;}
.y20{bottom:1319.178862px;}
.y3{bottom:1323.770700px;}
.yae{bottom:1330.134900px;}
.y1f{bottom:1353.300975px;}
.yad{bottom:1364.257012px;}
.y41{bottom:1374.845850px;}
.y1e{bottom:1387.423088px;}
.y2{bottom:1394.818650px;}
.y40{bottom:1395.840600px;}
.yac{bottom:1398.379125px;}
.y1d{bottom:1421.545200px;}
.yab{bottom:1432.501238px;}
.y8e{bottom:1451.631300px;}
.y8f{bottom:1456.399800px;}
.ya9{bottom:1466.623237px;}
.yaa{bottom:1466.623350px;}
.y1{bottom:1473.582300px;}
.ya8{bottom:1500.745350px;}
.ya7{bottom:1544.868862px;}
.ya6{bottom:1578.990975px;}
.ya5{bottom:1613.113087px;}
.y3f{bottom:1627.959300px;}
.ya4{bottom:1647.235200px;}
.ya3{bottom:1681.356825px;}
.ya2{bottom:1715.478937px;}
.ya1{bottom:1749.601050px;}
.ya0{bottom:1783.723162px;}
.y9f{bottom:1817.845275px;}
.y9e{bottom:1851.967387px;}
.y9d{bottom:1886.089500px;}
.y9c{bottom:1886.089537px;}
.y9b{bottom:1920.211650px;}
.y9a{bottom:1956.556125px;}
.y99{bottom:1990.678238px;}
.y98{bottom:2024.800350px;}
.y97{bottom:2058.921975px;}
.y96{bottom:2093.044087px;}
.y95{bottom:2127.166200px;}
.y94{bottom:2161.288312px;}
.y93{bottom:2195.410425px;}
.y92{bottom:2229.532537px;}
.y91{bottom:2263.654650px;}
.yc8{bottom:2358.581700px;}
.h20{height:25.698750px;}
.h19{height:25.785891px;}
.h1f{height:25.959141px;}
.h1b{height:26.046281px;}
.h1a{height:26.694891px;}
.h14{height:39.890988px;}
.h15{height:39.897737px;}
.h18{height:39.927516px;}
.h16{height:39.931986px;}
.h17{height:39.985254px;}
.hb{height:41.239688px;}
.h22{height:49.069634px;}
.h10{height:51.571266px;}
.h4{height:54.089062px;}
.hf{height:56.606859px;}
.hc{height:56.694000px;}
.he{height:56.780625px;}
.h21{height:59.945402px;}
.h24{height:60.031355px;}
.h12{height:62.076609px;}
.h13{height:64.892946px;}
.h1d{height:66.111593px;}
.h1c{height:68.634192px;}
.hd{height:72.147797px;}
.h1e{height:72.408187px;}
.h5{height:74.405203px;}
.h23{height:76.216334px;}
.h8{height:81.350672px;}
.h6{height:86.039250px;}
.h11{height:91.374462px;}
.h25{height:91.459905px;}
.h26{height:103.142531px;}
.h3{height:122.031984px;}
.h7{height:151.063024px;}
.h2{height:152.604572px;}
.h9{height:154.714312px;}
.ha{height:247.611891px;}
.h0{height:2525.685000px;}
.h1{height:2526.000000px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x13{left:6.472350px;}
.x1e{left:7.974150px;}
.x3b{left:25.066950px;}
.xb{left:27.212400px;}
.x7{left:29.143350px;}
.x2c{left:31.110150px;}
.x14{left:35.007900px;}
.x15{left:44.484000px;}
.x6{left:46.236150px;}
.x1f{left:50.098050px;}
.x3{left:71.696400px;}
.x2{left:74.271000px;}
.x20{left:149.686350px;}
.x2d{left:193.312050px;}
.x16{left:213.623100px;}
.x21{left:270.372300px;}
.x19{left:496.582500px;}
.xd{left:529.231800px;}
.xe{left:539.870137px;}
.x38{left:655.995150px;}
.x8{left:658.140750px;}
.x39{left:659.892900px;}
.x9{left:662.038350px;}
.x3a{left:742.323450px;}
.xa{left:744.468900px;}
.x22{left:775.644150px;}
.x10{left:834.645750px;}
.x17{left:968.312550px;}
.x23{left:1030.318200px;}
.x29{left:1095.470850px;}
.x11{left:1174.430550px;}
.xf{left:1199.943300px;}
.x24{left:1279.163700px;}
.x2a{left:1386.297150px;}
.x27{left:1387.298400px;}
.x12{left:1397.954400px;}
.x28{left:1664.858100px;}
.x2b{left:1675.943400px;}
.x18{left:1913.346000px;}
.x25{left:2029.276050px;}
.x1d{left:2093.034000px;}
.x26{left:2267.751450px;}
.x1{left:2335.407150px;}
.xc{left:2917.095450px;}
.x32{left:2963.725050px;}
.x1c{left:2993.655150px;}
.x30{left:3062.240400px;}
.x2e{left:3155.106000px;}
.x1a{left:3166.334400px;}
.x34{left:3249.294750px;}
.x3c{left:3251.440200px;}
.x4{left:3258.806550px;}
.x35{left:3406.857300px;}
.x3d{left:3409.002900px;}
.x36{left:3421.867500px;}
.x33{left:3436.296300px;}
.x3e{left:3439.014750px;}
.x37{left:3466.822200px;}
.x3f{left:3483.964800px;}
.x1b{left:3503.885100px;}
.x5{left:3506.344050px;}
.x31{left:3512.308200px;}
.x2f{left:3515.160450px;}
@media print{
.v2{vertical-align:-3.861333pt;}
.v1{vertical-align:-1.526933pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.861333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.707140pt;}
.ls1{letter-spacing:1.622263pt;}
.ws0{word-spacing:-160.027733pt;}
.ws1{word-spacing:-127.968000pt;}
.ws14{word-spacing:-106.684800pt;}
.ws13{word-spacing:-95.908800pt;}
.ws4{word-spacing:-70.949729pt;}
.ws12{word-spacing:-70.034607pt;}
.ws3{word-spacing:-69.327467pt;}
.ws11{word-spacing:-62.951467pt;}
.wsf{word-spacing:-62.861333pt;}
.ws10{word-spacing:-51.456533pt;}
.ws5{word-spacing:-42.656000pt;}
.ws9{word-spacing:-26.940800pt;}
.wsb{word-spacing:-26.850667pt;}
.ws6{word-spacing:-26.671467pt;}
.wsc{word-spacing:-26.581333pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:198.311396pt;}
.ws8{word-spacing:258.227439pt;}
.wse{word-spacing:359.848346pt;}
.wsd{word-spacing:373.437677pt;}
.wsa{word-spacing:3267.727563pt;}
._33{margin-left:-1395.695274pt;}
._2{margin-left:-114.403827pt;}
._1{margin-left:-106.898526pt;}
._1c{margin-left:-97.518885pt;}
._9{margin-left:-91.871922pt;}
._14{margin-left:-90.926211pt;}
._10{margin-left:-85.469827pt;}
._1a{margin-left:-80.013867pt;}
._12{margin-left:-73.492022pt;}
._b{margin-left:-69.564056pt;}
._1d{margin-left:-68.594289pt;}
._11{margin-left:-66.359788pt;}
._13{margin-left:-64.836508pt;}
._38{margin-left:-63.833281pt;}
._6{margin-left:-59.386292pt;}
._3{margin-left:-56.873856pt;}
._1b{margin-left:-54.987850pt;}
._31{margin-left:-53.751917pt;}
._f{margin-left:-52.492474pt;}
._32{margin-left:-51.588797pt;}
._8{margin-left:-50.632775pt;}
._17{margin-left:-49.596702pt;}
._2e{margin-left:-48.700329pt;}
._4{margin-left:-47.512234pt;}
._15{margin-left:-45.972653pt;}
._0{margin-left:-44.999799pt;}
._2f{margin-left:-43.867886pt;}
._19{margin-left:-42.844302pt;}
._7{margin-left:-41.879258pt;}
._25{margin-left:-40.806147pt;}
._d{margin-left:-39.494845pt;}
._a{margin-left:-37.990584pt;}
._23{margin-left:-36.635016pt;}
._5{margin-left:-35.638176pt;}
._24{margin-left:-34.663733pt;}
._e{margin-left:-33.424743pt;}
._22{margin-left:-32.104267pt;}
._16{margin-left:-30.593454pt;}
._20{margin-left:-29.320533pt;}
._18{margin-left:-27.973333pt;}
._21{margin-left:-26.671200pt;}
._27{margin-left:-25.642383pt;}
._26{margin-left:-23.938774pt;}
._34{margin-left:-22.853267pt;}
._1f{margin-left:-21.328000pt;}
._30{margin-left:-20.145784pt;}
._1e{margin-left:-19.003248pt;}
._35{margin-left:-17.676607pt;}
._c{margin-left:-15.794737pt;}
._28{margin-left:-14.745123pt;}
._2c{margin-left:-12.887653pt;}
._2d{margin-left:-10.006157pt;}
._36{margin-left:-8.456345pt;}
._2b{margin-left:-1.601464pt;}
._29{width:5.851238pt;}
._2a{width:14.024947pt;}
._37{width:283.051654pt;}
.fs19{font-size:26.581333pt;}
.fs15{font-size:26.671467pt;}
.fs18{font-size:26.850667pt;}
.fs16{font-size:26.940800pt;}
.fs11{font-size:42.616976pt;}
.fs12{font-size:42.624187pt;}
.fs8{font-size:42.656000pt;}
.fs13{font-size:42.660776pt;}
.fs14{font-size:42.717684pt;}
.fs1b{font-size:51.456533pt;}
.fsd{font-size:53.342400pt;}
.fs2{font-size:55.946667pt;}
.fsc{font-size:58.550933pt;}
.fs9{font-size:58.641067pt;}
.fsb{font-size:58.730667pt;}
.fs1a{font-size:62.861333pt;}
.fs1d{font-size:62.951467pt;}
.fsf{font-size:64.208533pt;}
.fs10{font-size:69.327467pt;}
.fsa{font-size:74.625600pt;}
.fs17{font-size:74.894933pt;}
.fs3{font-size:76.960533pt;}
.fs1c{font-size:79.923733pt;}
.fs6{font-size:84.144533pt;}
.fs4{font-size:88.994133pt;}
.fse{font-size:95.819200pt;}
.fs1e{font-size:95.908800pt;}
.fs1f{font-size:106.684800pt;}
.fs1{font-size:127.968000pt;}
.fs5{font-size:158.411200pt;}
.fs0{font-size:160.027733pt;}
.fs7{font-size:256.115733pt;}
.y0{bottom:0.000000pt;}
.yff{bottom:13.927867pt;}
.y17{bottom:15.656667pt;}
.yec{bottom:18.148667pt;}
.yd9{bottom:18.530267pt;}
.y54{bottom:20.079333pt;}
.yfe{bottom:38.381836pt;}
.y16{bottom:40.110636pt;}
.yeb{bottom:42.602636pt;}
.yd8{bottom:42.984236pt;}
.yf7{bottom:44.230000pt;}
.y53{bottom:44.533303pt;}
.yf{bottom:45.958667pt;}
.ye4{bottom:48.450667pt;}
.yd1{bottom:48.832267pt;}
.y4c{bottom:50.381467pt;}
.yfd{bottom:62.879333pt;}
.yfc{bottom:62.880000pt;}
.y15{bottom:64.608133pt;}
.y14{bottom:64.608667pt;}
.yea{bottom:67.100133pt;}
.ye9{bottom:67.100667pt;}
.yd7{bottom:67.481733pt;}
.yd6{bottom:67.482400pt;}
.y5{bottom:67.896000pt;}
.y52{bottom:69.030800pt;}
.y51{bottom:69.031467pt;}
.y103{bottom:75.496133pt;}
.y1b{bottom:77.224933pt;}
.yf0{bottom:79.716933pt;}
.ydd{bottom:80.098533pt;}
.y58{bottom:81.625200pt;}
.yfb{bottom:92.302133pt;}
.y13{bottom:94.030800pt;}
.ye8{bottom:96.522800pt;}
.yd5{bottom:96.904533pt;}
.y50{bottom:98.453600pt;}
.y102{bottom:106.194000pt;}
.y1a{bottom:107.922667pt;}
.ya{bottom:108.886267pt;}
.yc{bottom:109.128133pt;}
.yb{bottom:109.136533pt;}
.yef{bottom:110.414667pt;}
.ydc{bottom:110.796400pt;}
.y57{bottom:112.322933pt;}
.ycc{bottom:114.134667pt;}
.ycb{bottom:114.143067pt;}
.yca{bottom:116.244933pt;}
.yc9{bottom:116.253333pt;}
.yfa{bottom:117.957600pt;}
.y12{bottom:119.686267pt;}
.ye7{bottom:122.178267pt;}
.yd4{bottom:122.560000pt;}
.y4f{bottom:124.109067pt;}
.y101{bottom:124.856000pt;}
.yf3{bottom:126.407600pt;}
.yf4{bottom:126.415067pt;}
.yf2{bottom:126.423467pt;}
.y19{bottom:126.584667pt;}
.yee{bottom:129.076667pt;}
.ydb{bottom:129.458400pt;}
.ye0{bottom:130.628400pt;}
.ye1{bottom:130.635733pt;}
.ydf{bottom:130.644267pt;}
.y56{bottom:130.984933pt;}
.yce{bottom:137.168933pt;}
.ycd{bottom:137.177333pt;}
.yf6{bottom:144.432933pt;}
.ye{bottom:146.161600pt;}
.yf9{bottom:146.543600pt;}
.y11{bottom:148.272267pt;}
.ye3{bottom:148.653600pt;}
.yd0{bottom:149.035200pt;}
.y9{bottom:149.123467pt;}
.y4b{bottom:150.584267pt;}
.ye6{bottom:150.764267pt;}
.yd3{bottom:151.145867pt;}
.y4e{bottom:152.695067pt;}
.y49{bottom:153.670000pt;}
.y48{bottom:153.678533pt;}
.y104{bottom:168.083600pt;}
.y1c{bottom:169.812267pt;}
.yf1{bottom:172.326800pt;}
.yde{bottom:172.708400pt;}
.y8{bottom:173.600133pt;}
.yf8{bottom:173.673867pt;}
.y59{bottom:174.235067pt;}
.y10{bottom:175.380133pt;}
.ye5{bottom:177.894533pt;}
.yd2{bottom:178.276133pt;}
.y4d{bottom:179.802800pt;}
.y4{bottom:199.283600pt;}
.y100{bottom:211.677600pt;}
.yf5{bottom:211.939200pt;}
.y18{bottom:213.406267pt;}
.yd{bottom:213.667867pt;}
.yed{bottom:215.920667pt;}
.ye2{bottom:216.159867pt;}
.yda{bottom:216.302400pt;}
.ycf{bottom:216.541600pt;}
.y55{bottom:217.829067pt;}
.y4a{bottom:218.068267pt;}
.y42{bottom:253.316133pt;}
.y43{bottom:269.398800pt;}
.y44{bottom:269.600800pt;}
.y47{bottom:269.780400pt;}
.y45{bottom:269.934267pt;}
.y46{bottom:269.982400pt;}
.y81{bottom:271.567600pt;}
.y80{bottom:301.898367pt;}
.y7f{bottom:332.229133pt;}
.y6c{bottom:359.340400pt;}
.y7e{bottom:362.559900pt;}
.yc7{bottom:379.824567pt;}
.y6b{bottom:389.671167pt;}
.y7d{bottom:392.890667pt;}
.yc5{bottom:410.155000pt;}
.yc6{bottom:410.155333pt;}
.y6a{bottom:420.001933pt;}
.y3a{bottom:423.293667pt;}
.y8d{bottom:433.082533pt;}
.yc4{bottom:440.485767pt;}
.y69{bottom:450.332700pt;}
.y7c{bottom:453.551900pt;}
.y39{bottom:453.624433pt;}
.y67{bottom:480.663133pt;}
.y68{bottom:480.663467pt;}
.y7b{bottom:483.882667pt;}
.y37{bottom:483.954767pt;}
.y38{bottom:483.955200pt;}
.yc3{bottom:501.147300pt;}
.y7a{bottom:514.213433pt;}
.y36{bottom:514.285533pt;}
.yc2{bottom:531.478067pt;}
.y66{bottom:541.324667pt;}
.y79{bottom:544.544200pt;}
.y35{bottom:544.616300pt;}
.yc1{bottom:561.808833pt;}
.y65{bottom:571.655433pt;}
.y78{bottom:574.874967pt;}
.y34{bottom:574.947067pt;}
.yc0{bottom:592.139600pt;}
.y64{bottom:601.986200pt;}
.y77{bottom:605.205733pt;}
.y33{bottom:605.277833pt;}
.y63{bottom:632.316967pt;}
.y32{bottom:635.608600pt;}
.ybf{bottom:653.609033pt;}
.y61{bottom:662.647200pt;}
.y62{bottom:662.647733pt;}
.y76{bottom:665.867100pt;}
.y31{bottom:665.939367pt;}
.ybe{bottom:683.939800pt;}
.y3e{bottom:687.249333pt;}
.y74{bottom:696.197433pt;}
.y75{bottom:696.197867pt;}
.y30{bottom:696.270133pt;}
.ybd{bottom:714.270567pt;}
.y3c{bottom:720.273700pt;}
.y60{bottom:723.308733pt;}
.y73{bottom:726.528200pt;}
.y3b{bottom:736.342667pt;}
.ybb{bottom:744.600967pt;}
.ybc{bottom:744.601333pt;}
.y2f{bottom:747.973567pt;}
.y5f{bottom:753.639500pt;}
.y72{bottom:756.858967pt;}
.y2e{bottom:778.304333pt;}
.y5e{bottom:783.970267pt;}
.y71{bottom:787.189733pt;}
.yba{bottom:805.262500pt;}
.y2d{bottom:808.635100pt;}
.y5d{bottom:814.301033pt;}
.y70{bottom:817.520500pt;}
.yb9{bottom:835.593267pt;}
.y2c{bottom:838.965867pt;}
.y5c{bottom:844.631800pt;}
.y6f{bottom:847.851267pt;}
.y8c{bottom:853.633400pt;}
.y82{bottom:858.861600pt;}
.yb8{bottom:865.924033pt;}
.y2b{bottom:869.296200pt;}
.y5b{bottom:874.962567pt;}
.y8b{bottom:876.145633pt;}
.y6e{bottom:878.182033pt;}
.y89{bottom:879.827733pt;}
.y90{bottom:879.924667pt;}
.y88{bottom:886.676933pt;}
.y87{bottom:887.260667pt;}
.y86{bottom:887.860400pt;}
.y84{bottom:888.171467pt;}
.y85{bottom:888.226000pt;}
.y83{bottom:889.191333pt;}
.yb7{bottom:896.254800pt;}
.y8a{bottom:898.657867pt;}
.y2a{bottom:899.626967pt;}
.y5a{bottom:905.293333pt;}
.y6d{bottom:908.512800pt;}
.y29{bottom:929.957733pt;}
.yb6{bottom:939.696433pt;}
.y28{bottom:960.288500pt;}
.yb5{bottom:970.027200pt;}
.y27{bottom:990.619267pt;}
.y3d{bottom:995.809600pt;}
.yb4{bottom:1000.357967pt;}
.y26{bottom:1020.950033pt;}
.yb3{bottom:1030.688733pt;}
.y6{bottom:1048.495867pt;}
.y24{bottom:1051.280367pt;}
.y25{bottom:1051.280800pt;}
.yb2{bottom:1061.019500pt;}
.y23{bottom:1081.611133pt;}
.y7{bottom:1082.681600pt;}
.yb1{bottom:1091.350267pt;}
.y22{bottom:1111.941900pt;}
.yb0{bottom:1121.680600pt;}
.y21{bottom:1142.272667pt;}
.yaf{bottom:1152.011367pt;}
.y20{bottom:1172.603433pt;}
.y3{bottom:1176.685067pt;}
.yae{bottom:1182.342133pt;}
.y1f{bottom:1202.934200pt;}
.yad{bottom:1212.672900pt;}
.y41{bottom:1222.085200pt;}
.y1e{bottom:1233.264967pt;}
.y2{bottom:1239.838800pt;}
.y40{bottom:1240.747200pt;}
.yac{bottom:1243.003667pt;}
.y1d{bottom:1263.595733pt;}
.yab{bottom:1273.334433pt;}
.y8e{bottom:1290.338933pt;}
.y8f{bottom:1294.577600pt;}
.ya9{bottom:1303.665100pt;}
.yaa{bottom:1303.665200pt;}
.y1{bottom:1309.850933pt;}
.ya8{bottom:1333.995867pt;}
.ya7{bottom:1373.216767pt;}
.ya6{bottom:1403.547533pt;}
.ya5{bottom:1433.878300pt;}
.y3f{bottom:1447.074933pt;}
.ya4{bottom:1464.209067pt;}
.ya3{bottom:1494.539400pt;}
.ya2{bottom:1524.870167pt;}
.ya1{bottom:1555.200933pt;}
.ya0{bottom:1585.531700pt;}
.y9f{bottom:1615.862467pt;}
.y9e{bottom:1646.193233pt;}
.y9d{bottom:1676.524000pt;}
.y9c{bottom:1676.524033pt;}
.y9b{bottom:1706.854800pt;}
.y9a{bottom:1739.161000pt;}
.y99{bottom:1769.491767pt;}
.y98{bottom:1799.822533pt;}
.y97{bottom:1830.152867pt;}
.y96{bottom:1860.483633pt;}
.y95{bottom:1890.814400pt;}
.y94{bottom:1921.145167pt;}
.y93{bottom:1951.475933pt;}
.y92{bottom:1981.806700pt;}
.y91{bottom:2012.137467pt;}
.yc8{bottom:2096.517067pt;}
.h20{height:22.843333pt;}
.h19{height:22.920792pt;}
.h1f{height:23.074792pt;}
.h1b{height:23.152250pt;}
.h1a{height:23.728792pt;}
.h14{height:35.458656pt;}
.h15{height:35.464655pt;}
.h18{height:35.491125pt;}
.h16{height:35.495099pt;}
.h17{height:35.542448pt;}
.hb{height:36.657500pt;}
.h22{height:43.617452pt;}
.h10{height:45.841125pt;}
.h4{height:48.079167pt;}
.hf{height:50.317208pt;}
.hc{height:50.394667pt;}
.he{height:50.471667pt;}
.h21{height:53.284802pt;}
.h24{height:53.361204pt;}
.h12{height:55.179208pt;}
.h13{height:57.682619pt;}
.h1d{height:58.765860pt;}
.h1c{height:61.008171pt;}
.hd{height:64.131375pt;}
.h1e{height:64.362833pt;}
.h5{height:66.137958pt;}
.h23{height:67.747852pt;}
.h8{height:72.311708pt;}
.h6{height:76.479333pt;}
.h11{height:81.221744pt;}
.h25{height:81.297694pt;}
.h26{height:91.682250pt;}
.h3{height:108.472875pt;}
.h7{height:134.278244pt;}
.h2{height:135.648508pt;}
.h9{height:137.523833pt;}
.ha{height:220.099458pt;}
.h0{height:2245.053333pt;}
.h1{height:2245.333333pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x13{left:5.753200pt;}
.x1e{left:7.088133pt;}
.x3b{left:22.281733pt;}
.xb{left:24.188800pt;}
.x7{left:25.905200pt;}
.x2c{left:27.653467pt;}
.x14{left:31.118133pt;}
.x15{left:39.541333pt;}
.x6{left:41.098800pt;}
.x1f{left:44.531600pt;}
.x3{left:63.730133pt;}
.x2{left:66.018667pt;}
.x20{left:133.054533pt;}
.x2d{left:171.832933pt;}
.x16{left:189.887200pt;}
.x21{left:240.330933pt;}
.x19{left:441.406667pt;}
.xd{left:470.428267pt;}
.xe{left:479.884567pt;}
.x38{left:583.106800pt;}
.x8{left:585.014000pt;}
.x39{left:586.571467pt;}
.x9{left:588.478533pt;}
.x3a{left:659.843067pt;}
.xa{left:661.750133pt;}
.x22{left:689.461467pt;}
.x10{left:741.907333pt;}
.x17{left:860.722267pt;}
.x23{left:915.838400pt;}
.x29{left:973.751867pt;}
.x11{left:1043.938267pt;}
.xf{left:1066.616267pt;}
.x24{left:1137.034400pt;}
.x2a{left:1232.264133pt;}
.x27{left:1233.154133pt;}
.x12{left:1242.626133pt;}
.x28{left:1479.873867pt;}
.x2b{left:1489.727467pt;}
.x18{left:1700.752000pt;}
.x25{left:1803.800933pt;}
.x1d{left:1860.474667pt;}
.x26{left:2015.779067pt;}
.x1{left:2075.917467pt;}
.xc{left:2592.973733pt;}
.x32{left:2634.422267pt;}
.x1c{left:2661.026800pt;}
.x30{left:2721.991467pt;}
.x2e{left:2804.538667pt;}
.x1a{left:2814.519467pt;}
.x34{left:2888.262000pt;}
.x3c{left:2890.169067pt;}
.x4{left:2896.716933pt;}
.x35{left:3028.317600pt;}
.x3d{left:3030.224800pt;}
.x36{left:3041.660000pt;}
.x33{left:3054.485600pt;}
.x3e{left:3056.902000pt;}
.x37{left:3081.619733pt;}
.x3f{left:3096.857600pt;}
.x1b{left:3114.564533pt;}
.x5{left:3116.750267pt;}
.x31{left:3122.051733pt;}
.x2f{left:3124.587067pt;}
}




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