
    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_46d06435724b3a5a22ce3893.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8e1fb5fab8937469b6d829b8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_341d1347e9845e0fe6dbec36.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.364746;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_7fda46efec723ed33eb21f9c.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_6f45deac66229b8d458e0b9c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_122298698fc9edcf7648bdb0.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_b3febca5bcf5502d946c20b6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7b3845c727e64e9e6e9f0c2a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bf95f63a98e811f261a619e5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_45f23b61a1bb3f2c63a55d0f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.364746;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_cd70a423d832c16b6ca0b949.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_207d5d168426e848cce521a2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.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_72226a38bfff7d5757465a1e.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_a9d1ff47fe4ec0fb03ac7913.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_138a9d0964bea1c5ae1067d6.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_9d208a604dbfe2f68f08b1aa.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_b15f15577e76b7ccdb954fb1.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_baefb188da0d6a33314c9ca5.woff2')format("woff");}.ff13{font-family:ff13;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;}
.m3{transform:matrix(0.171512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171512,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m37{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);}
.m18{transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.213483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213483,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.216049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216049,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.216463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216463,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.225309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225309,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.227564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227564,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.228659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228659,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.230713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230713,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.235967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235967,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.240506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240506,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m12{transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.269531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269531,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.274590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274590,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.320988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320988,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.507194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507194,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.613043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613043,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.628261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628261,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.747283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.747283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.747283,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.766304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766304,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.785326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785326,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(1.021739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.021739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.021739,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(1.047101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.047101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.047101,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(1.138158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.138158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.138158,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-1.462500px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.300500px;}
.v2{vertical-align:5.764500px;}
.ls3d{letter-spacing:-11.682225px;}
.ls41{letter-spacing:-9.708000px;}
.ls2f{letter-spacing:-7.687500px;}
.ls1f{letter-spacing:-5.598000px;}
.ls1a{letter-spacing:-4.884300px;}
.ls1d{letter-spacing:-3.845325px;}
.ls3f{letter-spacing:-3.703050px;}
.ls3c{letter-spacing:-3.655575px;}
.ls11{letter-spacing:-3.329100px;}
.ls42{letter-spacing:-3.191850px;}
.ls30{letter-spacing:-2.922150px;}
.ls31{letter-spacing:-2.805000px;}
.ls2d{letter-spacing:-2.425500px;}
.ls3b{letter-spacing:-2.305650px;}
.ls22{letter-spacing:-2.223000px;}
.ls19{letter-spacing:-2.049600px;}
.ls1e{letter-spacing:-1.482000px;}
.ls20{letter-spacing:-1.480050px;}
.ls2b{letter-spacing:-1.461075px;}
.ls14{letter-spacing:-0.832275px;}
.ls38{letter-spacing:-0.801900px;}
.ls21{letter-spacing:-0.742950px;}
.ls37{letter-spacing:-0.735075px;}
.ls2c{letter-spacing:-0.733425px;}
.ls18{letter-spacing:-0.686250px;}
.ls13{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.726750px;}
.ls27{letter-spacing:0.733425px;}
.ls9{letter-spacing:0.742950px;}
.ls8{letter-spacing:0.749700px;}
.ls32{letter-spacing:0.801900px;}
.ls43{letter-spacing:0.802725px;}
.ls1{letter-spacing:0.832275px;}
.ls3e{letter-spacing:0.868725px;}
.ls2a{letter-spacing:1.461075px;}
.lsb{letter-spacing:1.480050px;}
.ls12{letter-spacing:1.558275px;}
.ls34{letter-spacing:1.597725px;}
.ls0{letter-spacing:1.664550px;}
.ls40{letter-spacing:1.761750px;}
.ls1c{letter-spacing:2.088000px;}
.ls28{letter-spacing:2.194500px;}
.lsa{letter-spacing:2.223000px;}
.ls15{letter-spacing:2.369250px;}
.ls39{letter-spacing:2.399625px;}
.ls24{letter-spacing:2.488500px;}
.ls3{letter-spacing:2.496825px;}
.ls25{letter-spacing:2.922150px;}
.lse{letter-spacing:2.960100px;}
.ls36{letter-spacing:3.195450px;}
.ls4{letter-spacing:3.329100px;}
.ls16{letter-spacing:3.462450px;}
.ls26{letter-spacing:3.655575px;}
.lsc{letter-spacing:3.703050px;}
.ls3a{letter-spacing:3.997350px;}
.lsd{letter-spacing:4.440150px;}
.ls33{letter-spacing:4.793175px;}
.ls7{letter-spacing:4.993650px;}
.ls29{letter-spacing:5.116650px;}
.lsf{letter-spacing:5.183100px;}
.ls17{letter-spacing:5.339100px;}
.ls35{letter-spacing:5.595075px;}
.ls6{letter-spacing:5.825925px;}
.ls23{letter-spacing:6.562050px;}
.ls5{letter-spacing:6.658200px;}
.ls2{letter-spacing:7.490475px;}
.ls2e{letter-spacing:8.451450px;}
.ls10{letter-spacing:39.295500px;}
.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;}
._17{margin-left:-20.589041px;}
._16{margin-left:-1.489950px;}
._14{width:1.428300px;}
._b{width:3.128625px;}
._a{width:4.932900px;}
._6{width:6.573150px;}
._8{width:8.158725px;}
._15{width:9.722771px;}
._3{width:10.777050px;}
._4{width:12.453750px;}
._0{width:13.535100px;}
._2{width:14.555700px;}
._11{width:16.549551px;}
._d{width:17.715199px;}
._9{width:19.039050px;}
._e{width:20.388116px;}
._5{width:21.505500px;}
._c{width:23.024250px;}
._13{width:24.945334px;}
._1{width:26.711775px;}
._12{width:28.080000px;}
._18{width:30.208074px;}
._f{width:31.577850px;}
._7{width:32.695650px;}
._1e{width:36.457200px;}
._1d{width:39.724425px;}
._1b{width:41.008500px;}
._1c{width:42.880500px;}
._19{width:67.082400px;}
._1f{width:74.470552px;}
._1a{width:75.488175px;}
._10{width:312.389351px;}
.fc0{color:transparent;}
.fs1d{font-size:28.500000px;}
.fs17{font-size:31.500000px;}
.fsb{font-size:42.750000px;}
.fse{font-size:48.000000px;}
.fsa{font-size:50.250000px;}
.fsc{font-size:51.000000px;}
.fs1c{font-size:51.750000px;}
.fsd{font-size:52.500000px;}
.fs18{font-size:54.750000px;}
.fs19{font-size:56.250000px;}
.fsf{font-size:57.000000px;}
.fs13{font-size:57.750000px;}
.fs4{font-size:58.500000px;}
.fs2{font-size:59.250000px;}
.fs10{font-size:60.000000px;}
.fs1{font-size:60.750000px;}
.fs5{font-size:61.500000px;}
.fs7{font-size:62.250000px;}
.fs6{font-size:62.785800px;}
.fs12{font-size:63.000000px;}
.fs1a{font-size:63.750000px;}
.fs3{font-size:64.500000px;}
.fs16{font-size:64.954800px;}
.fs11{font-size:65.250000px;}
.fs14{font-size:66.750000px;}
.fs15{font-size:67.500000px;}
.fs1b{font-size:69.000000px;}
.fs1e{font-size:86.250000px;}
.fs9{font-size:91.500000px;}
.fs0{font-size:100.500000px;}
.fs1f{font-size:104.250000px;}
.fs8{font-size:111.000000px;}
.y0{bottom:0.000000px;}
.yd2{bottom:47.752755px;}
.y10a{bottom:50.631705px;}
.y6f{bottom:71.512905px;}
.y6e{bottom:71.515118px;}
.y95{bottom:75.464655px;}
.y32{bottom:77.633355px;}
.y109{bottom:79.084830px;}
.yd1{bottom:79.442805px;}
.y6d{bottom:87.353055px;}
.y31{bottom:93.826905px;}
.yd0{bottom:95.280743px;}
.y108{bottom:95.289330px;}
.y94{bottom:96.349155px;}
.y6c{bottom:103.552305px;}
.y30{bottom:109.314780px;}
.y107{bottom:111.128205px;}
.ycf{bottom:111.479618px;}
.y93{bottom:117.233655px;}
.y6b{bottom:119.753355px;}
.y6a{bottom:119.761042px;}
.y2e{bottom:125.149230px;}
.y2f{bottom:125.153655px;}
.yce{bottom:127.678493px;}
.y106{bottom:127.683705px;}
.y69{bottom:136.320855px;}
.y2d{bottom:141.353730px;}
.ycd{bottom:143.877368px;}
.y105{bottom:144.239205px;}
.y92{bottom:151.433505px;}
.y68{bottom:152.519730px;}
.y2c{bottom:157.192605px;}
.ycc{bottom:159.715305px;}
.y104{bottom:160.078080px;}
.y67{bottom:168.718605px;}
.y2b{bottom:173.397105px;}
.ycb{bottom:175.914180px;}
.y103{bottom:175.916955px;}
.y66{bottom:184.556542px;}
.y91{bottom:186.712755px;}
.y2a{bottom:189.952605px;}
.yca{bottom:192.113055px;}
.yc9{bottom:192.113580px;}
.y102{bottom:192.472455px;}
.y65{bottom:201.116355px;}
.y29{bottom:206.149680px;}
.yc8{bottom:208.312455px;}
.y101{bottom:208.671705px;}
.y64{bottom:216.593355px;}
.y90{bottom:216.952605px;}
.y28{bottom:221.988555px;}
.yc7{bottom:224.513917px;}
.y8f{bottom:233.153655px;}
.y63{bottom:233.156280px;}
.y26{bottom:238.187955px;}
.y27{bottom:238.193055px;}
.yc6{bottom:240.351855px;}
.yc5{bottom:240.354030px;}
.y100{bottom:246.113055px;}
.y8e{bottom:248.993805px;}
.y62{bottom:248.994217px;}
.y25{bottom:254.388855px;}
.yc4{bottom:256.552905px;}
.y61{bottom:264.832155px;}
.y60{bottom:264.834330px;}
.y24{bottom:270.593355px;}
.y23{bottom:270.597105px;}
.yc3{bottom:272.752155px;}
.yc2{bottom:272.756917px;}
.y8d{bottom:279.592905px;}
.y5f{bottom:281.033205px;}
.y5e{bottom:281.033580px;}
.yc1{bottom:288.955792px;}
.y5d{bottom:297.232455px;}
.y5c{bottom:297.232980px;}
.y22{bottom:301.192605px;}
.yc0{bottom:304.793730px;}
.yff{bottom:306.587655px;}
.y8c{bottom:311.273055px;}
.y5b{bottom:313.433468px;}
.y21{bottom:317.393505px;}
.y20{bottom:317.394630px;}
.ybf{bottom:320.992605px;}
.ybe{bottom:320.999130px;}
.yfe{bottom:322.796955px;}
.y8b{bottom:327.833355px;}
.yfd{bottom:339.353280px;}
.y5a{bottom:344.040968px;}
.ybd{bottom:351.592193px;}
.yfc{bottom:355.192155px;}
.y8a{bottom:358.434105px;}
.y1f{bottom:359.514630px;}
.ybc{bottom:368.152005px;}
.ybb{bottom:368.153430px;}
.yfb{bottom:371.396655px;}
.y89{bottom:374.992605px;}
.y1d{bottom:375.327030px;}
.y1e{bottom:375.353505px;}
.y59{bottom:386.155155px;}
.yf9{bottom:387.948555px;}
.yfa{bottom:387.952155px;}
.y1c{bottom:391.531530px;}
.y58{bottom:401.993093px;}
.yf8{bottom:404.153055px;}
.y1b{bottom:407.736030px;}
.yba{bottom:414.598867px;}
.y57{bottom:418.552905px;}
.y56{bottom:418.553280px;}
.yf7{bottom:420.353730px;}
.y1a{bottom:423.574905px;}
.yb9{bottom:430.797743px;}
.y55{bottom:434.752155px;}
.y54{bottom:434.754855px;}
.yf6{bottom:436.192605px;}
.y88{bottom:436.554180px;}
.y19{bottom:439.779405px;}
.yb8{bottom:446.996618px;}
.y53{bottom:450.953730px;}
.y87{bottom:452.393055px;}
.yf5{bottom:452.752755px;}
.y18{bottom:455.983905px;}
.yb7{bottom:463.556430px;}
.y52{bottom:467.152605px;}
.y51{bottom:467.155530px;}
.y86{bottom:468.948555px;}
.yf3{bottom:468.951705px;}
.yf4{bottom:468.952155px;}
.y17{bottom:472.188405px;}
.yb6{bottom:479.394367px;}
.y50{bottom:483.354405px;}
.y85{bottom:485.153055px;}
.yf2{bottom:485.156205px;}
.y16{bottom:488.392905px;}
.yb5{bottom:495.954180px;}
.y4f{bottom:499.192343px;}
.yf1{bottom:501.711705px;}
.y15{bottom:504.953205px;}
.yb4{bottom:512.153055px;}
.y4e{bottom:515.760667px;}
.y84{bottom:516.113205px;}
.yf0{bottom:517.553055px;}
.y14{bottom:521.152605px;}
.yb3{bottom:528.352455px;}
.y4d{bottom:531.959542px;}
.yef{bottom:534.474180px;}
.y13{bottom:537.704205px;}
.yb2{bottom:544.554742px;}
.y82{bottom:546.349455px;}
.y83{bottom:546.353055px;}
.y4c{bottom:548.519355px;}
.yee{bottom:550.313055px;}
.y12{bottom:553.908705px;}
.yb1{bottom:561.114555px;}
.y81{bottom:562.553955px;}
.yed{bottom:566.512005px;}
.y10{bottom:570.107955px;}
.y11{bottom:570.113205px;}
.yb0{bottom:577.313430px;}
.y4b{bottom:579.112417px;}
.yec{bottom:583.067505px;}
.yf{bottom:586.312455px;}
.yaf{bottom:593.512305px;}
.y80{bottom:593.873205px;}
.yea{bottom:599.268405px;}
.yeb{bottom:599.272005px;}
.yae{bottom:609.711705px;}
.yad{bottom:609.712192px;}
.ye9{bottom:615.477705px;}
.y4a{bottom:617.992605px;}
.yac{bottom:626.272005px;}
.yab{bottom:626.272867px;}
.y7e{bottom:626.273205px;}
.y7f{bottom:626.273655px;}
.ye{bottom:629.872755px;}
.ye8{bottom:632.033205px;}
.y49{bottom:633.833093px;}
.y7d{bottom:642.828705px;}
.yaa{bottom:642.832680px;}
.ye7{bottom:648.227355px;}
.y48{bottom:650.392905px;}
.y47{bottom:650.395605px;}
.ya9{bottom:659.031555px;}
.y7c{bottom:659.033205px;}
.ya8{bottom:659.037180px;}
.ye6{bottom:664.431855px;}
.ye5{bottom:664.436655px;}
.y46{bottom:666.955417px;}
.yd{bottom:674.873205px;}
.ya7{bottom:675.236055px;}
.ye3{bottom:680.983455px;}
.ye4{bottom:680.992155px;}
.y44{bottom:682.792042px;}
.y45{bottom:682.793355px;}
.y7b{bottom:689.991142px;}
.ya6{bottom:691.434930px;}
.ye2{bottom:697.187955px;}
.y43{bottom:699.351855px;}
.y42{bottom:699.354030px;}
.ya5{bottom:707.994743px;}
.ye1{bottom:713.392455px;}
.y41{bottom:715.557667px;}
.y7a{bottom:720.593955px;}
.ya4{bottom:724.193618px;}
.ye0{bottom:729.947505px;}
.yc{bottom:731.392905px;}
.y40{bottom:731.756542px;}
.ya3{bottom:740.031555px;}
.ydf{bottom:746.152005px;}
.ya{bottom:747.588292px;}
.yb{bottom:747.593955px;}
.y3f{bottom:747.955417px;}
.y79{bottom:751.552080px;}
.ya2{bottom:756.594743px;}
.yde{bottom:762.353055px;}
.ydd{bottom:762.363255px;}
.y9{bottom:763.793355px;}
.y8{bottom:763.799130px;}
.y3e{bottom:764.876167px;}
.y78{bottom:768.107580px;}
.ya1{bottom:773.154555px;}
.ydc{bottom:778.202130px;}
.y6{bottom:780.347843px;}
.y7{bottom:780.353505px;}
.y3d{bottom:780.714105px;}
.y77{bottom:784.312080px;}
.ya0{bottom:789.353430px;}
.ydb{bottom:794.757630px;}
.y5{bottom:796.552905px;}
.y3c{bottom:796.912980px;}
.y76{bottom:800.516580px;}
.y9f{bottom:805.552305px;}
.yda{bottom:810.596505px;}
.y4{bottom:813.113055px;}
.y3{bottom:813.118980px;}
.y3b{bottom:813.472792px;}
.y75{bottom:817.072080px;}
.y9e{bottom:822.112605px;}
.yd9{bottom:827.152005px;}
.y2{bottom:829.673355px;}
.y3a{bottom:830.032605px;}
.y39{bottom:830.035192px;}
.y9d{bottom:838.314030px;}
.yd8{bottom:843.707955px;}
.y38{bottom:845.873130px;}
.y74{bottom:848.033205px;}
.y9c{bottom:854.512905px;}
.yd7{bottom:859.912455px;}
.y1{bottom:860.992605px;}
.y37{bottom:862.072005px;}
.y36{bottom:862.074180px;}
.y73{bottom:863.873205px;}
.y72{bottom:863.876880px;}
.y9b{bottom:870.712305px;}
.yd6{bottom:876.467955px;}
.y35{bottom:878.273055px;}
.y9a{bottom:886.912042px;}
.yd5{bottom:892.672455px;}
.y34{bottom:894.832042px;}
.y71{bottom:895.189005px;}
.y99{bottom:903.471855px;}
.y98{bottom:903.472342px;}
.yd4{bottom:908.876955px;}
.y33{bottom:911.391855px;}
.y70{bottom:911.393505px;}
.y97{bottom:920.032155px;}
.yd3{bottom:925.432455px;}
.y96{bottom:1016.872155px;}
.h2d{height:29.724609px;}
.h22{height:30.900146px;}
.he{height:44.586914px;}
.h10{height:50.062500px;}
.h28{height:51.525879px;}
.hd{height:52.409180px;}
.h24{height:53.734131px;}
.h2a{height:53.973633px;}
.hf{height:54.755859px;}
.h25{height:55.206299px;}
.h1e{height:56.678467px;}
.h7{height:57.385986px;}
.h14{height:57.414551px;}
.h32{height:57.415751px;}
.h19{height:57.428951px;}
.h1a{height:57.430451px;}
.h30{height:57.431951px;}
.h31{height:57.434951px;}
.h1b{height:57.437951px;}
.h4{height:58.121704px;}
.h11{height:58.150635px;}
.h13{height:58.886719px;}
.h12{height:59.449219px;}
.h3{height:59.593140px;}
.h5{height:59.615790px;}
.h16{height:59.622803px;}
.h36{height:60.231445px;}
.h8{height:60.328857px;}
.h17{height:60.358887px;}
.h23{height:60.779297px;}
.ha{height:61.064575px;}
.h2f{height:61.224609px;}
.h9{height:61.590172px;}
.h18{height:61.831055px;}
.h34{height:61.980469px;}
.h26{height:62.567139px;}
.h33{height:62.578125px;}
.h6{height:63.744141px;}
.h21{height:63.749584px;}
.h15{height:64.039307px;}
.h20{height:66.247559px;}
.h1f{height:67.271484px;}
.h29{height:71.964844px;}
.h2e{height:89.956055px;}
.hc{height:101.196141px;}
.h2{height:104.818359px;}
.h35{height:108.729492px;}
.hb{height:115.769531px;}
.h2b{height:1006.304895px;}
.h2c{height:1006.500000px;}
.h27{height:1010.626395px;}
.h0{height:1010.986410px;}
.h1{height:1011.000000px;}
.h1c{height:1015.304895px;}
.h1d{height:1015.500000px;}
.w7{width:649.500000px;}
.w6{width:649.672365px;}
.w4{width:653.993865px;}
.w5{width:654.000000px;}
.w0{width:659.752380px;}
.w1{width:660.000000px;}
.w3{width:665.250000px;}
.w2{width:665.512080px;}
.x0{left:0.000000px;}
.x75{left:31.628700px;}
.x6b{left:32.631787px;}
.x69{left:33.805725px;}
.x2e{left:34.903012px;}
.x34{left:35.967037px;}
.x38{left:37.044150px;}
.x3f{left:38.470275px;}
.x46{left:39.895650px;}
.x4a{left:41.001825px;}
.x4e{left:42.081225px;}
.x72{left:47.120775px;}
.x2f{left:48.920325px;}
.x6d{left:55.408350px;}
.x2d{left:56.840325px;}
.x35{left:58.304287px;}
.x3a{left:59.718938px;}
.x3e{left:60.792712px;}
.x47{left:62.218087px;}
.x48{left:63.321675px;}
.x40{left:68.361075px;}
.x79{left:75.921975px;}
.x61{left:77.721525px;}
.x57{left:79.521075px;}
.x50{left:80.600475px;}
.x88{left:82.052100px;}
.x41{left:83.840325px;}
.x20{left:86.366077px;}
.x19{left:87.812302px;}
.x62{left:96.440475px;}
.x7a{left:98.925787px;}
.x7b{left:100.023750px;}
.xf{left:101.120790px;}
.x53{left:102.921975px;}
.x87{left:104.715225px;}
.x3d{left:108.681525px;}
.x26{left:109.774552px;}
.x18{left:111.201240px;}
.x60{left:115.520475px;}
.x25{left:119.121240px;}
.x86{left:126.321075px;}
.x10{left:132.080790px;}
.x27{left:134.241240px;}
.x3b{left:152.241675px;}
.x3c{left:167.000775px;}
.x6f{left:179.961825px;}
.x36{left:190.401675px;}
.x2b{left:193.639890px;}
.x5d{left:201.200625px;}
.x37{left:205.521525px;}
.x2c{left:208.759740px;}
.x4c{left:209.840925px;}
.x7f{left:214.521075px;}
.x5b{left:219.560475px;}
.x55{left:221.720925px;}
.x4d{left:225.680925px;}
.x58{left:229.281675px;}
.x5c{left:238.281225px;}
.x56{left:240.080775px;}
.x3{left:242.234865px;}
.x1a{left:248.360040px;}
.x28{left:255.920790px;}
.x1b{left:262.759740px;}
.x2{left:265.640490px;}
.x76{left:271.760925px;}
.x65{left:278.240625px;}
.x21{left:280.040190px;}
.x6c{left:281.121225px;}
.x7c{left:290.120625px;}
.x9{left:292.999740px;}
.x77{left:294.080775px;}
.x66{left:295.161825px;}
.x22{left:298.400040px;}
.x7d{left:305.960775px;}
.x78{left:315.321075px;}
.x42{left:323.600475px;}
.x32{left:328.641525px;}
.x5e{left:329.720925px;}
.xa{left:334.760340px;}
.x54{left:338.361075px;}
.x33{left:343.400475px;}
.x5f{left:344.840775px;}
.x80{left:349.161825px;}
.x43{left:351.320625px;}
.xb{left:356.360040px;}
.x1{left:362.480490px;}
.x81{left:363.920775px;}
.x89{left:365.721975px;}
.x11{left:369.680340px;}
.x1c{left:376.880340px;}
.x44{left:380.121825px;}
.x39{left:390.200625px;}
.x12{left:392.000190px;}
.x1d{left:393.081240px;}
.x4f{left:402.800925px;}
.xc{left:404.241240px;}
.x13{left:407.120190px;}
.x45{left:410.000775px;}
.x51{left:421.521525px;}
.x83{left:423.681975px;}
.x84{left:440.240625px;}
.x73{left:453.561075px;}
.x52{left:456.441675px;}
.x14{left:461.120190px;}
.x30{left:462.201225px;}
.x74{left:469.041825px;}
.x82{left:473.361075px;}
.x31{left:477.321225px;}
.xd{left:481.999740px;}
.x6e{left:483.800925px;}
.x15{left:488.840340px;}
.x63{left:490.280625px;}
.x67{left:493.520475px;}
.x7e{left:499.281675px;}
.x5{left:501.081240px;}
.x68{left:507.561075px;}
.x64{left:509.001375px;}
.x6{left:516.919740px;}
.x70{left:525.200625px;}
.x49{left:528.440475px;}
.x7{left:536.719890px;}
.x71{left:540.681525px;}
.x85{left:542.481075px;}
.x23{left:543.560490px;}
.x16{left:547.161240px;}
.x6a{left:549.680925px;}
.x59{left:550.761975px;}
.x8{left:552.559890px;}
.x5a{left:569.481075px;}
.x4b{left:572.720925px;}
.x24{left:574.879740px;}
.x17{left:583.519890px;}
.x29{left:589.640490px;}
.x1e{left:597.560490px;}
.x2a{left:602.960790px;}
.x4{left:604.760340px;}
.xe{left:608.720340px;}
.x1f{left:614.120640px;}
@media print{
.v3{vertical-align:-1.300000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.822667pt;}
.v2{vertical-align:5.124000pt;}
.ls3d{letter-spacing:-10.384200pt;}
.ls41{letter-spacing:-8.629333pt;}
.ls2f{letter-spacing:-6.833333pt;}
.ls1f{letter-spacing:-4.976000pt;}
.ls1a{letter-spacing:-4.341600pt;}
.ls1d{letter-spacing:-3.418067pt;}
.ls3f{letter-spacing:-3.291600pt;}
.ls3c{letter-spacing:-3.249400pt;}
.ls11{letter-spacing:-2.959200pt;}
.ls42{letter-spacing:-2.837200pt;}
.ls30{letter-spacing:-2.597467pt;}
.ls31{letter-spacing:-2.493333pt;}
.ls2d{letter-spacing:-2.156000pt;}
.ls3b{letter-spacing:-2.049467pt;}
.ls22{letter-spacing:-1.976000pt;}
.ls19{letter-spacing:-1.821867pt;}
.ls1e{letter-spacing:-1.317333pt;}
.ls20{letter-spacing:-1.315600pt;}
.ls2b{letter-spacing:-1.298733pt;}
.ls14{letter-spacing:-0.739800pt;}
.ls38{letter-spacing:-0.712800pt;}
.ls21{letter-spacing:-0.660400pt;}
.ls37{letter-spacing:-0.653400pt;}
.ls2c{letter-spacing:-0.651933pt;}
.ls18{letter-spacing:-0.610000pt;}
.ls13{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.646000pt;}
.ls27{letter-spacing:0.651933pt;}
.ls9{letter-spacing:0.660400pt;}
.ls8{letter-spacing:0.666400pt;}
.ls32{letter-spacing:0.712800pt;}
.ls43{letter-spacing:0.713533pt;}
.ls1{letter-spacing:0.739800pt;}
.ls3e{letter-spacing:0.772200pt;}
.ls2a{letter-spacing:1.298733pt;}
.lsb{letter-spacing:1.315600pt;}
.ls12{letter-spacing:1.385133pt;}
.ls34{letter-spacing:1.420200pt;}
.ls0{letter-spacing:1.479600pt;}
.ls40{letter-spacing:1.566000pt;}
.ls1c{letter-spacing:1.856000pt;}
.ls28{letter-spacing:1.950667pt;}
.lsa{letter-spacing:1.976000pt;}
.ls15{letter-spacing:2.106000pt;}
.ls39{letter-spacing:2.133000pt;}
.ls24{letter-spacing:2.212000pt;}
.ls3{letter-spacing:2.219400pt;}
.ls25{letter-spacing:2.597467pt;}
.lse{letter-spacing:2.631200pt;}
.ls36{letter-spacing:2.840400pt;}
.ls4{letter-spacing:2.959200pt;}
.ls16{letter-spacing:3.077733pt;}
.ls26{letter-spacing:3.249400pt;}
.lsc{letter-spacing:3.291600pt;}
.ls3a{letter-spacing:3.553200pt;}
.lsd{letter-spacing:3.946800pt;}
.ls33{letter-spacing:4.260600pt;}
.ls7{letter-spacing:4.438800pt;}
.ls29{letter-spacing:4.548133pt;}
.lsf{letter-spacing:4.607200pt;}
.ls17{letter-spacing:4.745867pt;}
.ls35{letter-spacing:4.973400pt;}
.ls6{letter-spacing:5.178600pt;}
.ls23{letter-spacing:5.832933pt;}
.ls5{letter-spacing:5.918400pt;}
.ls2{letter-spacing:6.658200pt;}
.ls2e{letter-spacing:7.512400pt;}
.ls10{letter-spacing:34.929333pt;}
.ws0{word-spacing:0.000000pt;}
._17{margin-left:-18.301370pt;}
._16{margin-left:-1.324400pt;}
._14{width:1.269600pt;}
._b{width:2.781000pt;}
._a{width:4.384800pt;}
._6{width:5.842800pt;}
._8{width:7.252200pt;}
._15{width:8.642463pt;}
._3{width:9.579600pt;}
._4{width:11.070000pt;}
._0{width:12.031200pt;}
._2{width:12.938400pt;}
._11{width:14.710712pt;}
._d{width:15.746844pt;}
._9{width:16.923600pt;}
._e{width:18.122770pt;}
._5{width:19.116000pt;}
._c{width:20.466000pt;}
._13{width:22.173630pt;}
._1{width:23.743800pt;}
._12{width:24.960000pt;}
._18{width:26.851621pt;}
._f{width:28.069200pt;}
._7{width:29.062800pt;}
._1e{width:32.406400pt;}
._1d{width:35.310600pt;}
._1b{width:36.452000pt;}
._1c{width:38.116000pt;}
._19{width:59.628800pt;}
._1f{width:66.196047pt;}
._1a{width:67.100600pt;}
._10{width:277.679423pt;}
.fs1d{font-size:25.333333pt;}
.fs17{font-size:28.000000pt;}
.fsb{font-size:38.000000pt;}
.fse{font-size:42.666667pt;}
.fsa{font-size:44.666667pt;}
.fsc{font-size:45.333333pt;}
.fs1c{font-size:46.000000pt;}
.fsd{font-size:46.666667pt;}
.fs18{font-size:48.666667pt;}
.fs19{font-size:50.000000pt;}
.fsf{font-size:50.666667pt;}
.fs13{font-size:51.333333pt;}
.fs4{font-size:52.000000pt;}
.fs2{font-size:52.666667pt;}
.fs10{font-size:53.333333pt;}
.fs1{font-size:54.000000pt;}
.fs5{font-size:54.666667pt;}
.fs7{font-size:55.333333pt;}
.fs6{font-size:55.809600pt;}
.fs12{font-size:56.000000pt;}
.fs1a{font-size:56.666667pt;}
.fs3{font-size:57.333333pt;}
.fs16{font-size:57.737600pt;}
.fs11{font-size:58.000000pt;}
.fs14{font-size:59.333333pt;}
.fs15{font-size:60.000000pt;}
.fs1b{font-size:61.333333pt;}
.fs1e{font-size:76.666667pt;}
.fs9{font-size:81.333333pt;}
.fs0{font-size:89.333333pt;}
.fs1f{font-size:92.666667pt;}
.fs8{font-size:98.666667pt;}
.y0{bottom:0.000000pt;}
.yd2{bottom:42.446893pt;}
.y10a{bottom:45.005960pt;}
.y6f{bottom:63.567027pt;}
.y6e{bottom:63.568993pt;}
.y95{bottom:67.079693pt;}
.y32{bottom:69.007427pt;}
.y109{bottom:70.297627pt;}
.yd1{bottom:70.615827pt;}
.y6d{bottom:77.647160pt;}
.y31{bottom:83.401693pt;}
.yd0{bottom:84.693993pt;}
.y108{bottom:84.701627pt;}
.y94{bottom:85.643693pt;}
.y6c{bottom:92.046493pt;}
.y30{bottom:97.168693pt;}
.y107{bottom:98.780627pt;}
.ycf{bottom:99.092993pt;}
.y93{bottom:104.207693pt;}
.y6b{bottom:106.447427pt;}
.y6a{bottom:106.454260pt;}
.y2e{bottom:111.243760pt;}
.y2f{bottom:111.247693pt;}
.yce{bottom:113.491993pt;}
.y106{bottom:113.496627pt;}
.y69{bottom:121.174093pt;}
.y2d{bottom:125.647760pt;}
.ycd{bottom:127.890993pt;}
.y105{bottom:128.212627pt;}
.y92{bottom:134.607560pt;}
.y68{bottom:135.573093pt;}
.y2c{bottom:139.726760pt;}
.ycc{bottom:141.969160pt;}
.y104{bottom:142.291627pt;}
.y67{bottom:149.972093pt;}
.y2b{bottom:154.130760pt;}
.ycb{bottom:156.368160pt;}
.y103{bottom:156.370627pt;}
.y66{bottom:164.050260pt;}
.y91{bottom:165.966893pt;}
.y2a{bottom:168.846760pt;}
.yca{bottom:170.767160pt;}
.yc9{bottom:170.767627pt;}
.y102{bottom:171.086627pt;}
.y65{bottom:178.770093pt;}
.y29{bottom:183.244160pt;}
.yc8{bottom:185.166627pt;}
.y101{bottom:185.485960pt;}
.y64{bottom:192.527427pt;}
.y90{bottom:192.846760pt;}
.y28{bottom:197.323160pt;}
.yc7{bottom:199.567927pt;}
.y8f{bottom:207.247693pt;}
.y63{bottom:207.250027pt;}
.y26{bottom:211.722627pt;}
.y27{bottom:211.727160pt;}
.yc6{bottom:213.646093pt;}
.yc5{bottom:213.648027pt;}
.y100{bottom:218.767160pt;}
.y8e{bottom:221.327827pt;}
.y62{bottom:221.328193pt;}
.y25{bottom:226.123427pt;}
.yc4{bottom:228.047027pt;}
.y61{bottom:235.406360pt;}
.y60{bottom:235.408293pt;}
.y24{bottom:240.527427pt;}
.y23{bottom:240.530760pt;}
.yc3{bottom:242.446360pt;}
.yc2{bottom:242.450593pt;}
.y8d{bottom:248.527027pt;}
.y5f{bottom:249.807293pt;}
.y5e{bottom:249.807627pt;}
.yc1{bottom:256.849593pt;}
.y5d{bottom:264.206627pt;}
.y5c{bottom:264.207093pt;}
.y22{bottom:267.726760pt;}
.yc0{bottom:270.927760pt;}
.yff{bottom:272.522360pt;}
.y8c{bottom:276.687160pt;}
.y5b{bottom:278.607527pt;}
.y21{bottom:282.127560pt;}
.y20{bottom:282.128560pt;}
.ybf{bottom:285.326760pt;}
.ybe{bottom:285.332560pt;}
.yfe{bottom:286.930627pt;}
.y8b{bottom:291.407427pt;}
.yfd{bottom:301.647360pt;}
.y5a{bottom:305.814193pt;}
.ybd{bottom:312.526393pt;}
.yfc{bottom:315.726360pt;}
.y8a{bottom:318.608093pt;}
.y1f{bottom:319.568560pt;}
.ybc{bottom:327.246227pt;}
.ybb{bottom:327.247493pt;}
.yfb{bottom:330.130360pt;}
.y89{bottom:333.326760pt;}
.y1d{bottom:333.624027pt;}
.y1e{bottom:333.647560pt;}
.y59{bottom:343.249027pt;}
.yf9{bottom:344.843160pt;}
.yfa{bottom:344.846360pt;}
.y1c{bottom:348.028027pt;}
.y58{bottom:357.327193pt;}
.yf8{bottom:359.247160pt;}
.y1b{bottom:362.432027pt;}
.yba{bottom:368.532327pt;}
.y57{bottom:372.047027pt;}
.y56{bottom:372.047360pt;}
.yf7{bottom:373.647760pt;}
.y1a{bottom:376.511027pt;}
.yb9{bottom:382.931327pt;}
.y55{bottom:386.446360pt;}
.y54{bottom:386.448760pt;}
.yf6{bottom:387.726760pt;}
.y88{bottom:388.048160pt;}
.y19{bottom:390.915027pt;}
.yb8{bottom:397.330327pt;}
.y53{bottom:400.847760pt;}
.y87{bottom:402.127160pt;}
.yf5{bottom:402.446893pt;}
.y18{bottom:405.319027pt;}
.yb7{bottom:412.050160pt;}
.y52{bottom:415.246760pt;}
.y51{bottom:415.249360pt;}
.y86{bottom:416.843160pt;}
.yf3{bottom:416.845960pt;}
.yf4{bottom:416.846360pt;}
.y17{bottom:419.723027pt;}
.yb6{bottom:426.128327pt;}
.y50{bottom:429.648360pt;}
.y85{bottom:431.247160pt;}
.yf2{bottom:431.249960pt;}
.y16{bottom:434.127027pt;}
.yb5{bottom:440.848160pt;}
.y4f{bottom:443.726527pt;}
.yf1{bottom:445.965960pt;}
.y15{bottom:448.847293pt;}
.yb4{bottom:455.247160pt;}
.y4e{bottom:458.453927pt;}
.y84{bottom:458.767293pt;}
.yf0{bottom:460.047160pt;}
.y14{bottom:463.246760pt;}
.yb3{bottom:469.646627pt;}
.y4d{bottom:472.852927pt;}
.yef{bottom:475.088160pt;}
.y13{bottom:477.959293pt;}
.yb2{bottom:484.048660pt;}
.y82{bottom:485.643960pt;}
.y83{bottom:485.647160pt;}
.y4c{bottom:487.572760pt;}
.yee{bottom:489.167160pt;}
.y12{bottom:492.363293pt;}
.yb1{bottom:498.768493pt;}
.y81{bottom:500.047960pt;}
.yed{bottom:503.566227pt;}
.y10{bottom:506.762627pt;}
.y11{bottom:506.767293pt;}
.yb0{bottom:513.167493pt;}
.y4b{bottom:514.766593pt;}
.yec{bottom:518.282227pt;}
.yf{bottom:521.166627pt;}
.yaf{bottom:527.566493pt;}
.y80{bottom:527.887293pt;}
.yea{bottom:532.683027pt;}
.yeb{bottom:532.686227pt;}
.yae{bottom:541.965960pt;}
.yad{bottom:541.966393pt;}
.ye9{bottom:547.091293pt;}
.y4a{bottom:549.326760pt;}
.yac{bottom:556.686227pt;}
.yab{bottom:556.686993pt;}
.y7e{bottom:556.687293pt;}
.y7f{bottom:556.687693pt;}
.ye{bottom:559.886893pt;}
.ye8{bottom:561.807293pt;}
.y49{bottom:563.407193pt;}
.y7d{bottom:571.403293pt;}
.yaa{bottom:571.406827pt;}
.ye7{bottom:576.202093pt;}
.y48{bottom:578.127027pt;}
.y47{bottom:578.129427pt;}
.ya9{bottom:585.805827pt;}
.y7c{bottom:585.807293pt;}
.ya8{bottom:585.810827pt;}
.ye6{bottom:590.606093pt;}
.ye5{bottom:590.610360pt;}
.y46{bottom:592.849260pt;}
.yd{bottom:599.887293pt;}
.ya7{bottom:600.209827pt;}
.ye3{bottom:605.318627pt;}
.ye4{bottom:605.326360pt;}
.y44{bottom:606.926260pt;}
.y45{bottom:606.927427pt;}
.y7b{bottom:613.325460pt;}
.ya6{bottom:614.608827pt;}
.ye2{bottom:619.722627pt;}
.y43{bottom:621.646093pt;}
.y42{bottom:621.648027pt;}
.ya5{bottom:629.328660pt;}
.ye1{bottom:634.126627pt;}
.y41{bottom:636.051260pt;}
.y7a{bottom:640.527960pt;}
.ya4{bottom:643.727660pt;}
.ye0{bottom:648.842227pt;}
.yc{bottom:650.127027pt;}
.y40{bottom:650.450260pt;}
.ya3{bottom:657.805827pt;}
.ydf{bottom:663.246227pt;}
.ya{bottom:664.522927pt;}
.yb{bottom:664.527960pt;}
.y3f{bottom:664.849260pt;}
.y79{bottom:668.046293pt;}
.ya2{bottom:672.528660pt;}
.yde{bottom:677.647160pt;}
.ydd{bottom:677.656227pt;}
.y9{bottom:678.927427pt;}
.y8{bottom:678.932560pt;}
.y3e{bottom:679.889927pt;}
.y78{bottom:682.762293pt;}
.ya1{bottom:687.248493pt;}
.ydc{bottom:691.735227pt;}
.y6{bottom:693.642527pt;}
.y7{bottom:693.647560pt;}
.y3d{bottom:693.968093pt;}
.y77{bottom:697.166293pt;}
.ya0{bottom:701.647493pt;}
.ydb{bottom:706.451227pt;}
.y5{bottom:708.047027pt;}
.y3c{bottom:708.367093pt;}
.y76{bottom:711.570293pt;}
.y9f{bottom:716.046493pt;}
.yda{bottom:720.530227pt;}
.y4{bottom:722.767160pt;}
.y3{bottom:722.772427pt;}
.y3b{bottom:723.086927pt;}
.y75{bottom:726.286293pt;}
.y9e{bottom:730.766760pt;}
.yd9{bottom:735.246227pt;}
.y2{bottom:737.487427pt;}
.y3a{bottom:737.806760pt;}
.y39{bottom:737.809060pt;}
.y9d{bottom:745.168027pt;}
.yd8{bottom:749.962627pt;}
.y38{bottom:751.887227pt;}
.y74{bottom:753.807293pt;}
.y9c{bottom:759.567027pt;}
.yd7{bottom:764.366627pt;}
.y1{bottom:765.326760pt;}
.y37{bottom:766.286227pt;}
.y36{bottom:766.288160pt;}
.y73{bottom:767.887293pt;}
.y72{bottom:767.890560pt;}
.y9b{bottom:773.966493pt;}
.yd6{bottom:779.082627pt;}
.y35{bottom:780.687160pt;}
.y9a{bottom:788.366260pt;}
.yd5{bottom:793.486627pt;}
.y34{bottom:795.406260pt;}
.y71{bottom:795.723560pt;}
.y99{bottom:803.086093pt;}
.y98{bottom:803.086527pt;}
.yd4{bottom:807.890627pt;}
.y33{bottom:810.126093pt;}
.y70{bottom:810.127560pt;}
.y97{bottom:817.806360pt;}
.yd3{bottom:822.606627pt;}
.y96{bottom:903.886360pt;}
.h2d{height:26.421875pt;}
.h22{height:27.466797pt;}
.he{height:39.632812pt;}
.h10{height:44.500000pt;}
.h28{height:45.800781pt;}
.hd{height:46.585938pt;}
.h24{height:47.763672pt;}
.h2a{height:47.976562pt;}
.hf{height:48.671875pt;}
.h25{height:49.072266pt;}
.h1e{height:50.380859pt;}
.h7{height:51.009766pt;}
.h14{height:51.035156pt;}
.h32{height:51.036223pt;}
.h19{height:51.047956pt;}
.h1a{height:51.049290pt;}
.h30{height:51.050623pt;}
.h31{height:51.053290pt;}
.h1b{height:51.055956pt;}
.h4{height:51.663737pt;}
.h11{height:51.689453pt;}
.h13{height:52.343750pt;}
.h12{height:52.843750pt;}
.h3{height:52.971680pt;}
.h5{height:52.991813pt;}
.h16{height:52.998047pt;}
.h36{height:53.539062pt;}
.h8{height:53.625651pt;}
.h17{height:53.652344pt;}
.h23{height:54.026042pt;}
.ha{height:54.279622pt;}
.h2f{height:54.421875pt;}
.h9{height:54.746820pt;}
.h18{height:54.960938pt;}
.h34{height:55.093750pt;}
.h26{height:55.615234pt;}
.h33{height:55.625000pt;}
.h6{height:56.661458pt;}
.h21{height:56.666297pt;}
.h15{height:56.923828pt;}
.h20{height:58.886719pt;}
.h1f{height:59.796875pt;}
.h29{height:63.968750pt;}
.h2e{height:79.960938pt;}
.hc{height:89.952125pt;}
.h2{height:93.171875pt;}
.h35{height:96.648438pt;}
.hb{height:102.906250pt;}
.h2b{height:894.493240pt;}
.h2c{height:894.666667pt;}
.h27{height:898.334573pt;}
.h0{height:898.654587pt;}
.h1{height:898.666667pt;}
.h1c{height:902.493240pt;}
.h1d{height:902.666667pt;}
.w7{width:577.333333pt;}
.w6{width:577.486547pt;}
.w4{width:581.327880pt;}
.w5{width:581.333333pt;}
.w0{width:586.446560pt;}
.w1{width:586.666667pt;}
.w3{width:591.333333pt;}
.w2{width:591.566293pt;}
.x0{left:0.000000pt;}
.x75{left:28.114400pt;}
.x6b{left:29.006033pt;}
.x69{left:30.049533pt;}
.x2e{left:31.024900pt;}
.x34{left:31.970700pt;}
.x38{left:32.928133pt;}
.x3f{left:34.195800pt;}
.x46{left:35.462800pt;}
.x4a{left:36.446067pt;}
.x4e{left:37.405533pt;}
.x72{left:41.885133pt;}
.x2f{left:43.484733pt;}
.x6d{left:49.251867pt;}
.x2d{left:50.524733pt;}
.x35{left:51.826033pt;}
.x3a{left:53.083500pt;}
.x3e{left:54.037967pt;}
.x47{left:55.304967pt;}
.x48{left:56.285933pt;}
.x40{left:60.765400pt;}
.x79{left:67.486200pt;}
.x61{left:69.085800pt;}
.x57{left:70.685400pt;}
.x50{left:71.644867pt;}
.x88{left:72.935200pt;}
.x41{left:74.524733pt;}
.x20{left:76.769847pt;}
.x19{left:78.055380pt;}
.x62{left:85.724867pt;}
.x7a{left:87.934033pt;}
.x7b{left:88.910000pt;}
.xf{left:89.885147pt;}
.x53{left:91.486200pt;}
.x87{left:93.080200pt;}
.x3d{left:96.605800pt;}
.x26{left:97.577380pt;}
.x18{left:98.845547pt;}
.x60{left:102.684867pt;}
.x25{left:105.885547pt;}
.x86{left:112.285400pt;}
.x10{left:117.405147pt;}
.x27{left:119.325547pt;}
.x3b{left:135.325933pt;}
.x3c{left:148.445133pt;}
.x6f{left:159.966067pt;}
.x36{left:169.245933pt;}
.x2b{left:172.124347pt;}
.x5d{left:178.845000pt;}
.x37{left:182.685800pt;}
.x2c{left:185.564213pt;}
.x4c{left:186.525267pt;}
.x7f{left:190.685400pt;}
.x5b{left:195.164867pt;}
.x55{left:197.085267pt;}
.x4d{left:200.605267pt;}
.x58{left:203.805933pt;}
.x5c{left:211.805533pt;}
.x56{left:213.405133pt;}
.x3{left:215.319880pt;}
.x1a{left:220.764480pt;}
.x28{left:227.485147pt;}
.x1b{left:233.564213pt;}
.x2{left:236.124880pt;}
.x76{left:241.565267pt;}
.x65{left:247.325000pt;}
.x21{left:248.924613pt;}
.x6c{left:249.885533pt;}
.x7c{left:257.885000pt;}
.x9{left:260.444213pt;}
.x77{left:261.405133pt;}
.x66{left:262.366067pt;}
.x22{left:265.244480pt;}
.x7d{left:271.965133pt;}
.x78{left:280.285400pt;}
.x42{left:287.644867pt;}
.x32{left:292.125800pt;}
.x5e{left:293.085267pt;}
.xa{left:297.564747pt;}
.x54{left:300.765400pt;}
.x33{left:305.244867pt;}
.x5f{left:306.525133pt;}
.x80{left:310.366067pt;}
.x43{left:312.285000pt;}
.xb{left:316.764480pt;}
.x1{left:322.204880pt;}
.x81{left:323.485133pt;}
.x89{left:325.086200pt;}
.x11{left:328.604747pt;}
.x1c{left:335.004747pt;}
.x44{left:337.886067pt;}
.x39{left:346.845000pt;}
.x12{left:348.444613pt;}
.x1d{left:349.405547pt;}
.x4f{left:358.045267pt;}
.xc{left:359.325547pt;}
.x13{left:361.884613pt;}
.x45{left:364.445133pt;}
.x51{left:374.685800pt;}
.x83{left:376.606200pt;}
.x84{left:391.325000pt;}
.x73{left:403.165400pt;}
.x52{left:405.725933pt;}
.x14{left:409.884613pt;}
.x30{left:410.845533pt;}
.x74{left:416.926067pt;}
.x82{left:420.765400pt;}
.x31{left:424.285533pt;}
.xd{left:428.444213pt;}
.x6e{left:430.045267pt;}
.x15{left:434.524747pt;}
.x63{left:435.805000pt;}
.x67{left:438.684867pt;}
.x7e{left:443.805933pt;}
.x5{left:445.405547pt;}
.x68{left:451.165400pt;}
.x64{left:452.445667pt;}
.x6{left:459.484213pt;}
.x70{left:466.845000pt;}
.x49{left:469.724867pt;}
.x7{left:477.084347pt;}
.x71{left:480.605800pt;}
.x85{left:482.205400pt;}
.x23{left:483.164880pt;}
.x16{left:486.365547pt;}
.x6a{left:488.605267pt;}
.x59{left:489.566200pt;}
.x8{left:491.164347pt;}
.x5a{left:506.205400pt;}
.x4b{left:509.085267pt;}
.x24{left:511.004213pt;}
.x17{left:518.684347pt;}
.x29{left:524.124880pt;}
.x1e{left:531.164880pt;}
.x2a{left:535.965147pt;}
.x4{left:537.564747pt;}
.xe{left:541.084747pt;}
.x1f{left:545.885013pt;}
}




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