
    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_ee5550b4a6c2803febb28ea7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.049805;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_6bed3d53690e14e149c841e9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3fc3690af088f40720d99d8b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ff1db09d7df77777338c734c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_30eab31f3de742a50b69a2fb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.706543;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_fb8b1123b3090ced68ecbe88.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_2849b4fcdfc0d5b6139bd033.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_68f263334cb211bb979f2e0f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666000;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_f9e9cc71ef5044a65f47c1ef.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_86612632b248904f1969538f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_67819ec9a288e873ee54505b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666000;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_fd2ca4c7b25f35d9e38c4a8d.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m20{transform:matrix(0.055555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055555,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.071430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071430,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.099206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099206,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.103354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103354,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.105656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105656,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.113096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113096,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.131995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131995,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.134009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134009,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.142345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142345,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.142856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142856,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.173078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173078,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.175001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175001,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.183774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183774,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.187477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187477,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.195326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195326,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.211474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211474,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252636,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.255650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255650,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.258682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258682,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.260615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260615,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.267823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267823,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.268183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268183,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.287455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287455,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.288157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288157,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.328205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328205,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.339284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339284,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.352239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352239,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.357141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357141,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.358332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358332,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.365787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365787,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.391997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391997,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.418594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418594,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.549992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549992,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.739920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739920,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:27.360000px;}
.v3{vertical-align:30.240000px;}
.v2{vertical-align:33.120000px;}
.v5{vertical-align:43.200000px;}
.ls3e{letter-spacing:-8.064021px;}
.ls36{letter-spacing:-3.360000px;}
.ls32{letter-spacing:-2.898000px;}
.ls28{letter-spacing:-2.583000px;}
.ls44{letter-spacing:-2.205000px;}
.ls2a{letter-spacing:-1.932000px;}
.ls3d{letter-spacing:-1.763640px;}
.ls5{letter-spacing:-1.008000px;}
.ls16{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.792000px;}
.ls19{letter-spacing:-0.720000px;}
.ls2c{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.067200px;}
.ls41{letter-spacing:-0.019680px;}
.ls1{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.096480px;}
.ls26{letter-spacing:0.096600px;}
.ls0{letter-spacing:0.210960px;}
.ls18{letter-spacing:0.216000px;}
.ls2d{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.432000px;}
.ls1f{letter-spacing:0.532800px;}
.ls27{letter-spacing:0.596160px;}
.ls22{letter-spacing:0.634680px;}
.lse{letter-spacing:0.653040px;}
.ls33{letter-spacing:0.687240px;}
.ls9{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.864000px;}
.ls37{letter-spacing:1.029600px;}
.lsa{letter-spacing:1.260000px;}
.ls29{letter-spacing:1.298880px;}
.ls2f{letter-spacing:1.357920px;}
.ls25{letter-spacing:1.365300px;}
.lsd{letter-spacing:1.440000px;}
.ls43{letter-spacing:1.505700px;}
.ls2b{letter-spacing:1.512900px;}
.ls23{letter-spacing:1.579320px;}
.ls45{letter-spacing:2.001240px;}
.ls3c{letter-spacing:2.010000px;}
.ls42{letter-spacing:2.310000px;}
.ls21{letter-spacing:2.317320px;}
.ls24{letter-spacing:2.457540px;}
.ls3b{letter-spacing:2.490000px;}
.lsf{letter-spacing:2.880000px;}
.ls35{letter-spacing:3.060000px;}
.ls2e{letter-spacing:3.278880px;}
.ls31{letter-spacing:3.295440px;}
.ls39{letter-spacing:3.900000px;}
.ls38{letter-spacing:3.990000px;}
.ls30{letter-spacing:3.990960px;}
.ls34{letter-spacing:4.140000px;}
.ls40{letter-spacing:4.590000px;}
.ls3a{letter-spacing:4.980000px;}
.ls15{letter-spacing:5.940000px;}
.ls10{letter-spacing:6.480000px;}
.lsc{letter-spacing:7.920000px;}
.ls14{letter-spacing:8.640000px;}
.ls12{letter-spacing:11.520000px;}
.ls3f{letter-spacing:11.520030px;}
.ls4{letter-spacing:12.960000px;}
.ls1c{letter-spacing:21.412800px;}
.ls7{letter-spacing:34.217280px;}
.ls17{letter-spacing:51.984000px;}
.ls1e{letter-spacing:81.480000px;}
.ls1b{letter-spacing:117.480000px;}
.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;}
}
.ws15{word-spacing:-90.720600px;}
.ws18{word-spacing:-57.600150px;}
.ws17{word-spacing:-26.313840px;}
.ws19{word-spacing:-24.580320px;}
.ws14{word-spacing:-23.705640px;}
.ws16{word-spacing:-23.018400px;}
.ws10{word-spacing:-22.833720px;}
.ws11{word-spacing:-21.151080px;}
.ws7{word-spacing:-18.864000px;}
.ws9{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.216000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws4{word-spacing:-17.208000px;}
.ws8{word-spacing:-17.064000px;}
.wsb{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.254600px;}
.ws13{word-spacing:-15.199800px;}
.wse{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.580000px;}
.ws3{word-spacing:-12.060000px;}
.wsc{word-spacing:-10.440000px;}
.wsf{word-spacing:-9.720000px;}
.ws2{word-spacing:0.000000px;}
.ws1a{word-spacing:367.632000px;}
._2b{margin-left:-26.635534px;}
._2c{margin-left:-20.505653px;}
._2d{margin-left:-16.358443px;}
._1f{margin-left:-10.418160px;}
._1a{margin-left:-7.565760px;}
._19{margin-left:-5.851680px;}
._2a{margin-left:-3.895200px;}
._d{margin-left:-2.360640px;}
._0{margin-left:-1.354320px;}
._1{width:1.236000px;}
._3{width:2.508000px;}
._a{width:3.924000px;}
._4{width:4.968000px;}
._5{width:6.108000px;}
._8{width:7.200000px;}
._c{width:9.202320px;}
._10{width:10.368000px;}
._f{width:11.448000px;}
._6{width:13.320000px;}
._7{width:14.400000px;}
._9{width:15.900000px;}
._e{width:16.918320px;}
._16{width:19.368000px;}
._b{width:20.880000px;}
._13{width:22.392000px;}
._15{width:23.544000px;}
._14{width:25.200000px;}
._17{width:27.072000px;}
._18{width:28.256640px;}
._1d{width:29.473680px;}
._1b{width:30.888000px;}
._12{width:32.184000px;}
._28{width:33.943680px;}
._21{width:36.576000px;}
._22{width:37.872000px;}
._23{width:40.392000px;}
._27{width:43.565040px;}
._1c{width:52.580640px;}
._20{width:90.000000px;}
._1e{width:180.000000px;}
._11{width:198.000000px;}
._25{width:838.596000px;}
._24{width:846.156000px;}
._29{width:847.596000px;}
._2{width:849.216000px;}
._2e{width:919.632000px;}
._26{width:1093.506000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:30.240600px;}
.fs8{font-size:38.880000px;}
.fs24{font-size:40.200000px;}
.fs7{font-size:41.760000px;}
.fs1d{font-size:43.200600px;}
.fs29{font-size:46.200000px;}
.fs4{font-size:48.240000px;}
.fs21{font-size:49.800000px;}
.fs10{font-size:55.200000px;}
.fs1f{font-size:55.800000px;}
.fs23{font-size:56.160600px;}
.fs3{font-size:59.760000px;}
.fs16{font-size:61.200000px;}
.fsc{font-size:62.400000px;}
.fs2a{font-size:63.000000px;}
.fs6{font-size:66.240000px;}
.fs11{font-size:70.800000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:73.800000px;}
.fsd{font-size:74.182200px;}
.fs12{font-size:77.400000px;}
.fsb{font-size:78.000000px;}
.fs19{font-size:79.800000px;}
.fs9{font-size:82.800000px;}
.fsf{font-size:85.800000px;}
.fs2{font-size:87.120000px;}
.fs1a{font-size:90.720600px;}
.fs26{font-size:91.800000px;}
.fs18{font-size:96.000000px;}
.fs27{font-size:98.400000px;}
.fs1c{font-size:99.600000px;}
.fs5{font-size:102.240000px;}
.fs28{font-size:110.400000px;}
.fse{font-size:111.000000px;}
.fs22{font-size:120.960000px;}
.fs1{font-size:123.120000px;}
.fs1b{font-size:130.800000px;}
.fs20{font-size:146.880600px;}
.fs13{font-size:182.400000px;}
.fs14{font-size:183.600000px;}
.fs15{font-size:228.000000px;}
.fs25{font-size:230.400600px;}
.fs1e{font-size:319.200600px;}
.y0{bottom:0.000000px;}
.ydd{bottom:3.780000px;}
.ya3{bottom:3.960000px;}
.ye5{bottom:4.140000px;}
.yd9{bottom:4.500000px;}
.ye0{bottom:5.760000px;}
.y99{bottom:14.220000px;}
.y98{bottom:14.760000px;}
.yab{bottom:18.900000px;}
.ya6{bottom:19.080000px;}
.ya8{bottom:19.110000px;}
.ydc{bottom:21.060000px;}
.ya2{bottom:22.860000px;}
.yae{bottom:23.040000px;}
.yd8{bottom:24.480000px;}
.ya0{bottom:29.160000px;}
.y9b{bottom:29.520000px;}
.ydb{bottom:34.560000px;}
.yd3{bottom:38.340000px;}
.ye4{bottom:39.960000px;}
.ydf{bottom:41.040000px;}
.yd7{bottom:41.760000px;}
.y96{bottom:45.750000px;}
.yd2{bottom:55.440000px;}
.yea{bottom:57.240000px;}
.yde{bottom:57.285000px;}
.yd6{bottom:59.040000px;}
.yc4{bottom:66.816000px;}
.ye6{bottom:69.696000px;}
.y44{bottom:70.056000px;}
.y54{bottom:71.856000px;}
.yd1{bottom:72.720000px;}
.ye9{bottom:74.520000px;}
.yd5{bottom:76.140000px;}
.yc3{bottom:84.096000px;}
.y126{bottom:85.536000px;}
.y3d{bottom:89.856000px;}
.yd0{bottom:90.720000px;}
.ye8{bottom:91.794000px;}
.yd4{bottom:93.420000px;}
.yb6{bottom:94.356000px;}
.y42{bottom:98.136000px;}
.yc2{bottom:101.196000px;}
.y125{bottom:104.256000px;}
.ycf{bottom:107.100000px;}
.ye7{bottom:109.074000px;}
.y43{bottom:111.456000px;}
.y53{bottom:113.256000px;}
.yc1{bottom:118.476000px;}
.y94{bottom:119.736000px;}
.y124{bottom:121.536000px;}
.y3c{bottom:131.256000px;}
.y75{bottom:135.756000px;}
.y123{bottom:138.816000px;}
.y41{bottom:139.536000px;}
.y93{bottom:147.276000px;}
.y25{bottom:152.850000px;}
.yc0{bottom:153.030000px;}
.y5e{bottom:154.470000px;}
.y52{bottom:154.650000px;}
.y122{bottom:156.090000px;}
.y92{bottom:166.350000px;}
.ybf{bottom:170.310000px;}
.y119{bottom:171.390000px;}
.y3b{bottom:172.650000px;}
.y121{bottom:173.190000px;}
.y74{bottom:177.150000px;}
.yb5{bottom:181.110000px;}
.y91{bottom:185.250000px;}
.ybe{bottom:187.590000px;}
.y118{bottom:190.110000px;}
.y120{bottom:190.470000px;}
.y24{bottom:194.250000px;}
.y40{bottom:195.870000px;}
.y51{bottom:196.050000px;}
.y90{bottom:204.150000px;}
.ybd{bottom:204.690000px;}
.y117{bottom:207.390000px;}
.y3a{bottom:214.050000px;}
.yb4{bottom:215.130000px;}
.y73{bottom:218.550000px;}
.y116{bottom:224.670000px;}
.y23{bottom:235.650000px;}
.ye2{bottom:235.830000px;}
.y50{bottom:237.450000px;}
.y13d{bottom:237.600000px;}
.ybc{bottom:241.230000px;}
.y115{bottom:241.950000px;}
.y8f{bottom:242.130000px;}
.yb3{bottom:248.970000px;}
.ye1{bottom:254.730000px;}
.y13c{bottom:254.895000px;}
.y39{bottom:255.450000px;}
.y114{bottom:259.050000px;}
.y72{bottom:259.950000px;}
.y3f{bottom:262.110000px;}
.yda{bottom:269.670000px;}
.y113{bottom:276.330000px;}
.y22{bottom:277.050000px;}
.y4f{bottom:278.850000px;}
.y8e{bottom:280.110000px;}
.ybb{bottom:281.370000px;}
.yb2{bottom:282.990000px;}
.y112{bottom:293.610000px;}
.y38{bottom:296.850000px;}
.y71{bottom:301.350000px;}
.y111{bottom:310.890000px;}
.yb1{bottom:317.055000px;}
.y8d{bottom:318.135000px;}
.y3e{bottom:318.315000px;}
.y21{bottom:318.495000px;}
.y4e{bottom:320.295000px;}
.y110{bottom:328.215000px;}
.y37{bottom:338.295000px;}
.y70{bottom:342.795000px;}
.y10f{bottom:345.495000px;}
.yb0{bottom:351.075000px;}
.y8c{bottom:356.115000px;}
.y20{bottom:359.895000px;}
.y4d{bottom:361.515000px;}
.y10e{bottom:362.595000px;}
.y36{bottom:379.515000px;}
.y10d{bottom:379.875000px;}
.y6f{bottom:384.015000px;}
.yaf{bottom:384.915000px;}
.y13b{bottom:387.735000px;}
.y8b{bottom:393.915000px;}
.y139{bottom:394.200000px;}
.y11f{bottom:396.435000px;}
.y10c{bottom:397.155000px;}
.y13a{bottom:398.520000px;}
.y1f{bottom:401.295000px;}
.y4c{bottom:402.915000px;}
.y10b{bottom:414.435000px;}
.y11e{bottom:415.335000px;}
.yad{bottom:418.935000px;}
.y35{bottom:420.915000px;}
.y6e{bottom:425.415000px;}
.y10a{bottom:431.715000px;}
.y8a{bottom:431.895000px;}
.y11d{bottom:434.415000px;}
.y1e{bottom:442.695000px;}
.y4b{bottom:444.315000px;}
.y109{bottom:448.815000px;}
.y11c{bottom:453.315000px;}
.y138{bottom:454.695000px;}
.yac{bottom:456.915000px;}
.y34{bottom:462.315000px;}
.y108{bottom:466.095000px;}
.y6d{bottom:466.815000px;}
.y89{bottom:469.875000px;}
.y11b{bottom:472.035000px;}
.y137{bottom:480.600000px;}
.y107{bottom:483.375000px;}
.y1d{bottom:484.095000px;}
.y4a{bottom:485.715000px;}
.y11a{bottom:489.315000px;}
.yaa{bottom:490.935000px;}
.ycc{bottom:499.650000px;}
.y106{bottom:500.655000px;}
.y33{bottom:503.715000px;}
.y88{bottom:507.855000px;}
.y6c{bottom:508.215000px;}
.ycb{bottom:516.000000px;}
.y105{bottom:517.935000px;}
.ya9{bottom:524.775000px;}
.y1c{bottom:525.495000px;}
.y49{bottom:527.115000px;}
.yca{bottom:533.460000px;}
.y104{bottom:535.215000px;}
.y136{bottom:543.255000px;}
.y32{bottom:545.115000px;}
.y87{bottom:545.835000px;}
.y6b{bottom:549.615000px;}
.yc9{bottom:550.920000px;}
.y103{bottom:552.315000px;}
.ya7{bottom:558.795000px;}
.y1b{bottom:566.925000px;}
.y48{bottom:568.545000px;}
.y102{bottom:569.625000px;}
.y135{bottom:571.335000px;}
.y86{bottom:583.665000px;}
.y31{bottom:586.545000px;}
.y101{bottom:586.905000px;}
.y134{bottom:590.775000px;}
.y6a{bottom:591.045000px;}
.ya5{bottom:592.845000px;}
.ye3{bottom:601.305000px;}
.y100{bottom:604.185000px;}
.y1a{bottom:608.325000px;}
.y47{bottom:609.945000px;}
.yff{bottom:621.465000px;}
.y85{bottom:621.645000px;}
.ya4{bottom:626.865000px;}
.y30{bottom:627.945000px;}
.y133{bottom:628.575000px;}
.y69{bottom:632.445000px;}
.yce{bottom:636.945000px;}
.yfe{bottom:638.745000px;}
.y19{bottom:649.725000px;}
.y46{bottom:651.345000px;}
.yfd{bottom:655.845000px;}
.y84{bottom:659.625000px;}
.ya1{bottom:666.285000px;}
.y2f{bottom:669.345000px;}
.yfc{bottom:673.125000px;}
.y68{bottom:673.845000px;}
.y132{bottom:678.255000px;}
.y83{bottom:679.065000px;}
.yfb{bottom:690.405000px;}
.y18{bottom:691.125000px;}
.yc8{bottom:692.730000px;}
.y57{bottom:692.745000px;}
.y82{bottom:699.765000px;}
.y45{bottom:707.685000px;}
.y2e{bottom:710.745000px;}
.yd{bottom:714.525000px;}
.y67{bottom:715.245000px;}
.yc7{bottom:716.730000px;}
.y81{bottom:720.465000px;}
.yfa{bottom:724.965000px;}
.yc6{bottom:726.555000px;}
.y17{bottom:732.525000px;}
.yc{bottom:733.425000px;}
.y56{bottom:734.145000px;}
.y131{bottom:739.815000px;}
.y80{bottom:740.625000px;}
.yf9{bottom:742.065000px;}
.y130{bottom:747.360000px;}
.y2d{bottom:752.145000px;}
.y66{bottom:756.645000px;}
.yb{bottom:758.445000px;}
.yf8{bottom:759.345000px;}
.y7f{bottom:759.705000px;}
.y12f{bottom:766.815000px;}
.y16{bottom:773.925000px;}
.y5d{bottom:775.545000px;}
.yf7{bottom:776.625000px;}
.y7e{bottom:778.605000px;}
.ya{bottom:783.465000px;}
.yba{bottom:785.265000px;}
.y55{bottom:790.485000px;}
.y2c{bottom:793.545000px;}
.yf6{bottom:793.905000px;}
.y7d{bottom:797.685000px;}
.y65{bottom:798.045000px;}
.yb9{bottom:802.365000px;}
.y9{bottom:808.485000px;}
.yf5{bottom:811.185000px;}
.y9f{bottom:812.850000px;}
.y15{bottom:815.370000px;}
.y7c{bottom:816.630000px;}
.y5c{bottom:816.990000px;}
.yb8{bottom:819.690000px;}
.y12d{bottom:825.135000px;}
.yf4{bottom:828.510000px;}
.y12e{bottom:829.455000px;}
.y8{bottom:833.550000px;}
.y2b{bottom:834.990000px;}
.yb7{bottom:836.970000px;}
.y64{bottom:839.490000px;}
.yf3{bottom:845.610000px;}
.y7b{bottom:854.610000px;}
.y14{bottom:856.770000px;}
.y5b{bottom:858.390000px;}
.y7{bottom:858.570000px;}
.y9e{bottom:860.370000px;}
.y12c{bottom:860.775000px;}
.yf2{bottom:862.890000px;}
.y2a{bottom:876.390000px;}
.yf1{bottom:880.170000px;}
.y63{bottom:880.890000px;}
.y6{bottom:883.590000px;}
.y7a{bottom:892.590000px;}
.yf0{bottom:897.450000px;}
.y13{bottom:898.170000px;}
.y5a{bottom:899.790000px;}
.y9d{bottom:907.170000px;}
.y5{bottom:909.870000px;}
.yef{bottom:914.730000px;}
.y29{bottom:917.790000px;}
.y12b{bottom:919.080000px;}
.y62{bottom:922.290000px;}
.y12a{bottom:928.815000px;}
.y79{bottom:930.570000px;}
.yee{bottom:932.010000px;}
.y12{bottom:939.570000px;}
.y59{bottom:941.190000px;}
.y129{bottom:943.935000px;}
.y4{bottom:945.330000px;}
.yed{bottom:949.110000px;}
.y9c{bottom:953.970000px;}
.y28{bottom:959.190000px;}
.y61{bottom:963.690000px;}
.yec{bottom:966.390000px;}
.y78{bottom:968.370000px;}
.y11{bottom:980.970000px;}
.yeb{bottom:983.670000px;}
.y58{bottom:997.530000px;}
.y3{bottom:998.250000px;}
.y27{bottom:1000.590000px;}
.y9a{bottom:1000.770000px;}
.y60{bottom:1005.090000px;}
.y77{bottom:1006.350000px;}
.y10{bottom:1022.370000px;}
.y128{bottom:1041.135000px;}
.yf{bottom:1043.070000px;}
.yc5{bottom:1044.000000px;}
.y76{bottom:1044.330000px;}
.y95{bottom:1048.290000px;}
.y2{bottom:1051.350000px;}
.y127{bottom:1051.935000px;}
.y5f{bottom:1056.390000px;}
.y26{bottom:1056.930000px;}
.ye{bottom:1063.800000px;}
.ycd{bottom:1065.060000px;}
.y97{bottom:1079.280000px;}
.y1{bottom:1117.800000px;}
.h2b{height:20.140240px;}
.h31{height:28.771600px;}
.hf{height:30.996000px;}
.he{height:31.140000px;}
.h15{height:33.840000px;}
.h13{height:34.020000px;}
.h14{height:34.056000px;}
.h36{height:37.402960px;}
.h11{height:37.800000px;}
.h16{height:37.980000px;}
.h37{height:41.927344px;}
.h10{height:45.900000px;}
.h3c{height:48.185156px;}
.h34{height:48.875977px;}
.h1c{height:49.405345px;}
.h5{height:49.838906px;}
.h1f{height:54.175781px;}
.hc{height:55.243125px;}
.h17{height:59.785312px;}
.h1{height:60.046875px;}
.h2a{height:60.064453px;}
.h2e{height:60.419920px;}
.h1b{height:61.242188px;}
.hd{height:62.136000px;}
.h3d{height:65.707031px;}
.h12{height:66.757500px;}
.h20{height:69.486328px;}
.h8{height:70.628906px;}
.ha{height:72.562500px;}
.h3{height:72.656719px;}
.h6{height:73.351406px;}
.hb{height:74.004654px;}
.h19{height:76.971094px;}
.h35{height:80.559360px;}
.h18{height:81.263672px;}
.h1a{height:81.351562px;}
.h2d{height:83.228906px;}
.h1e{height:84.208008px;}
.h4{height:85.460977px;}
.h25{height:86.357813px;}
.h39{height:90.096680px;}
.h2c{height:94.218750px;}
.h30{height:97.751953px;}
.h33{height:97.822480px;}
.h3a{height:99.168750px;}
.h9{height:103.038750px;}
.h7{height:105.086609px;}
.h3b{height:111.262500px;}
.h1d{height:115.769531px;}
.h2{height:124.081875px;}
.h26{height:129.557813px;}
.h2f{height:136.420313px;}
.h27{height:190.237500px;}
.h28{height:191.489063px;}
.h29{height:223.769531px;}
.h38{height:226.125589px;}
.h32{height:332.916251px;}
.h22{height:367.275000px;}
.h21{height:424.110000px;}
.h23{height:478.695000px;}
.h24{height:531.615000px;}
.h0{height:1188.000000px;}
.w7{width:49.320000px;}
.w8{width:70.956000px;}
.wc{width:72.000000px;}
.w5{width:86.220000px;}
.w4{width:86.400000px;}
.wb{width:113.940000px;}
.wa{width:121.356000px;}
.w3{width:172.620000px;}
.w9{width:185.940000px;}
.w1{width:202.710000px;}
.w2{width:205.230000px;}
.w6{width:242.310000px;}
.we{width:390.855000px;}
.wd{width:408.135000px;}
.wf{width:610.305000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:8.100000px;}
.x15{left:23.580000px;}
.x16{left:37.260000px;}
.x1e{left:39.960000px;}
.x23{left:52.200000px;}
.x18{left:55.080000px;}
.x24{left:59.040000px;}
.x19{left:60.300000px;}
.x32{left:62.136000px;}
.x1f{left:63.720000px;}
.x1a{left:69.120000px;}
.x21{left:105.840000px;}
.xf{left:124.416000px;}
.x11{left:126.936000px;}
.x8{left:135.036000px;}
.x50{left:143.595000px;}
.x25{left:145.656000px;}
.x2{left:148.896000px;}
.xd{left:156.270000px;}
.xc{left:162.030000px;}
.x6{left:163.830000px;}
.x3f{left:168.525000px;}
.x51{left:174.765000px;}
.x37{left:180.930000px;}
.xa{left:188.130000px;}
.x4a{left:191.160000px;}
.x36{left:195.330000px;}
.x31{left:204.150000px;}
.x52{left:211.695000px;}
.x5d{left:214.230000px;}
.x10{left:219.990000px;}
.x3e{left:222.870000px;}
.x53{left:230.055000px;}
.x3{left:235.650000px;}
.x4b{left:237.600000px;}
.x54{left:244.095000px;}
.x3d{left:245.820000px;}
.x1c{left:248.250000px;}
.x5e{left:258.570000px;}
.x2f{left:262.452150px;}
.x2c{left:264.267150px;}
.x2d{left:265.677150px;}
.x2a{left:287.727150px;}
.x2e{left:293.757300px;}
.x2b{left:296.457300px;}
.x65{left:312.135000px;}
.x1d{left:319.215000px;}
.x13{left:329.655000px;}
.x38{left:333.450000px;}
.x7{left:335.955000px;}
.x5b{left:340.815000px;}
.x5f{left:342.930000px;}
.x5{left:354.855000px;}
.x35{left:377.715000px;}
.x30{left:381.855000px;}
.x42{left:393.750000px;}
.x34{left:400.035000px;}
.x4c{left:403.935000px;}
.x66{left:406.815000px;}
.x9{left:428.475000px;}
.x22{left:433.155000px;}
.x67{left:445.815000px;}
.x26{left:451.242150px;}
.x68{left:453.300000px;}
.x60{left:454.785000px;}
.x43{left:456.495000px;}
.x4{left:459.075000px;}
.x44{left:463.140000px;}
.x33{left:467.715000px;}
.x5c{left:476.910000px;}
.x39{left:479.235000px;}
.x27{left:482.727150px;}
.x40{left:488.205000px;}
.x45{left:489.795000px;}
.x3a{left:494.235000px;}
.x29{left:495.927150px;}
.x41{left:501.960000px;}
.x55{left:503.280000px;}
.x20{left:505.155000px;}
.x28{left:508.872150px;}
.x61{left:511.425000px;}
.x46{left:526.725000px;}
.x14{left:534.885000px;}
.x49{left:554.670000px;}
.x3b{left:561.345000px;}
.x62{left:567.390000px;}
.x4d{left:570.255000px;}
.x1b{left:571.965000px;}
.x56{left:585.360000px;}
.x3c{left:587.145000px;}
.x47{left:590.595000px;}
.x4e{left:594.000000px;}
.x57{left:600.495000px;}
.x48{left:616.155000px;}
.x17{left:621.285000px;}
.x63{left:623.220000px;}
.x58{left:676.095000px;}
.x59{left:686.895000px;}
.x64{left:691.455000px;}
.x5a{left:708.495000px;}
.x4f{left:712.815000px;}
.xe{left:719.205000px;}
.xb{left:765.150000px;}
.x1{left:774.150000px;}
@media print{
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:24.320000pt;}
.v3{vertical-align:26.880000pt;}
.v2{vertical-align:29.440000pt;}
.v5{vertical-align:38.400000pt;}
.ls3e{letter-spacing:-7.168019pt;}
.ls36{letter-spacing:-2.986667pt;}
.ls32{letter-spacing:-2.576000pt;}
.ls28{letter-spacing:-2.296000pt;}
.ls44{letter-spacing:-1.960000pt;}
.ls2a{letter-spacing:-1.717333pt;}
.ls3d{letter-spacing:-1.567680pt;}
.ls5{letter-spacing:-0.896000pt;}
.ls16{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.704000pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls2c{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.059733pt;}
.ls41{letter-spacing:-0.017493pt;}
.ls1{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.085760pt;}
.ls26{letter-spacing:0.085867pt;}
.ls0{letter-spacing:0.187520pt;}
.ls18{letter-spacing:0.192000pt;}
.ls2d{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.384000pt;}
.ls1f{letter-spacing:0.473600pt;}
.ls27{letter-spacing:0.529920pt;}
.ls22{letter-spacing:0.564160pt;}
.lse{letter-spacing:0.580480pt;}
.ls33{letter-spacing:0.610880pt;}
.ls9{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.768000pt;}
.ls37{letter-spacing:0.915200pt;}
.lsa{letter-spacing:1.120000pt;}
.ls29{letter-spacing:1.154560pt;}
.ls2f{letter-spacing:1.207040pt;}
.ls25{letter-spacing:1.213600pt;}
.lsd{letter-spacing:1.280000pt;}
.ls43{letter-spacing:1.338400pt;}
.ls2b{letter-spacing:1.344800pt;}
.ls23{letter-spacing:1.403840pt;}
.ls45{letter-spacing:1.778880pt;}
.ls3c{letter-spacing:1.786667pt;}
.ls42{letter-spacing:2.053333pt;}
.ls21{letter-spacing:2.059840pt;}
.ls24{letter-spacing:2.184480pt;}
.ls3b{letter-spacing:2.213333pt;}
.lsf{letter-spacing:2.560000pt;}
.ls35{letter-spacing:2.720000pt;}
.ls2e{letter-spacing:2.914560pt;}
.ls31{letter-spacing:2.929280pt;}
.ls39{letter-spacing:3.466667pt;}
.ls38{letter-spacing:3.546667pt;}
.ls30{letter-spacing:3.547520pt;}
.ls34{letter-spacing:3.680000pt;}
.ls40{letter-spacing:4.080000pt;}
.ls3a{letter-spacing:4.426667pt;}
.ls15{letter-spacing:5.280000pt;}
.ls10{letter-spacing:5.760000pt;}
.lsc{letter-spacing:7.040000pt;}
.ls14{letter-spacing:7.680000pt;}
.ls12{letter-spacing:10.240000pt;}
.ls3f{letter-spacing:10.240027pt;}
.ls4{letter-spacing:11.520000pt;}
.ls1c{letter-spacing:19.033600pt;}
.ls7{letter-spacing:30.415360pt;}
.ls17{letter-spacing:46.208000pt;}
.ls1e{letter-spacing:72.426667pt;}
.ls1b{letter-spacing:104.426667pt;}
.ws15{word-spacing:-80.640533pt;}
.ws18{word-spacing:-51.200133pt;}
.ws17{word-spacing:-23.390080pt;}
.ws19{word-spacing:-21.849173pt;}
.ws14{word-spacing:-21.071680pt;}
.ws16{word-spacing:-20.460800pt;}
.ws10{word-spacing:-20.296640pt;}
.ws11{word-spacing:-18.800960pt;}
.ws7{word-spacing:-16.768000pt;}
.ws9{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.192000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws4{word-spacing:-15.296000pt;}
.ws8{word-spacing:-15.168000pt;}
.wsb{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.448533pt;}
.ws13{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.280000pt;}
.ws12{word-spacing:-12.960000pt;}
.ws3{word-spacing:-10.720000pt;}
.wsc{word-spacing:-9.280000pt;}
.wsf{word-spacing:-8.640000pt;}
.ws2{word-spacing:0.000000pt;}
.ws1a{word-spacing:326.784000pt;}
._2b{margin-left:-23.676030pt;}
._2c{margin-left:-18.227247pt;}
._2d{margin-left:-14.540838pt;}
._1f{margin-left:-9.260587pt;}
._1a{margin-left:-6.725120pt;}
._19{margin-left:-5.201493pt;}
._2a{margin-left:-3.462400pt;}
._d{margin-left:-2.098347pt;}
._0{margin-left:-1.203840pt;}
._1{width:1.098667pt;}
._3{width:2.229333pt;}
._a{width:3.488000pt;}
._4{width:4.416000pt;}
._5{width:5.429333pt;}
._8{width:6.400000pt;}
._c{width:8.179840pt;}
._10{width:9.216000pt;}
._f{width:10.176000pt;}
._6{width:11.840000pt;}
._7{width:12.800000pt;}
._9{width:14.133333pt;}
._e{width:15.038507pt;}
._16{width:17.216000pt;}
._b{width:18.560000pt;}
._13{width:19.904000pt;}
._15{width:20.928000pt;}
._14{width:22.400000pt;}
._17{width:24.064000pt;}
._18{width:25.117013pt;}
._1d{width:26.198827pt;}
._1b{width:27.456000pt;}
._12{width:28.608000pt;}
._28{width:30.172160pt;}
._21{width:32.512000pt;}
._22{width:33.664000pt;}
._23{width:35.904000pt;}
._27{width:38.724480pt;}
._1c{width:46.738347pt;}
._20{width:80.000000pt;}
._1e{width:160.000000pt;}
._11{width:176.000000pt;}
._25{width:745.418667pt;}
._24{width:752.138667pt;}
._29{width:753.418667pt;}
._2{width:754.858667pt;}
._2e{width:817.450667pt;}
._26{width:972.005333pt;}
.fs17{font-size:26.880533pt;}
.fs8{font-size:34.560000pt;}
.fs24{font-size:35.733333pt;}
.fs7{font-size:37.120000pt;}
.fs1d{font-size:38.400533pt;}
.fs29{font-size:41.066667pt;}
.fs4{font-size:42.880000pt;}
.fs21{font-size:44.266667pt;}
.fs10{font-size:49.066667pt;}
.fs1f{font-size:49.600000pt;}
.fs23{font-size:49.920533pt;}
.fs3{font-size:53.120000pt;}
.fs16{font-size:54.400000pt;}
.fsc{font-size:55.466667pt;}
.fs2a{font-size:56.000000pt;}
.fs6{font-size:58.880000pt;}
.fs11{font-size:62.933333pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:65.600000pt;}
.fsd{font-size:65.939733pt;}
.fs12{font-size:68.800000pt;}
.fsb{font-size:69.333333pt;}
.fs19{font-size:70.933333pt;}
.fs9{font-size:73.600000pt;}
.fsf{font-size:76.266667pt;}
.fs2{font-size:77.440000pt;}
.fs1a{font-size:80.640533pt;}
.fs26{font-size:81.600000pt;}
.fs18{font-size:85.333333pt;}
.fs27{font-size:87.466667pt;}
.fs1c{font-size:88.533333pt;}
.fs5{font-size:90.880000pt;}
.fs28{font-size:98.133333pt;}
.fse{font-size:98.666667pt;}
.fs22{font-size:107.520000pt;}
.fs1{font-size:109.440000pt;}
.fs1b{font-size:116.266667pt;}
.fs20{font-size:130.560533pt;}
.fs13{font-size:162.133333pt;}
.fs14{font-size:163.200000pt;}
.fs15{font-size:202.666667pt;}
.fs25{font-size:204.800533pt;}
.fs1e{font-size:283.733867pt;}
.y0{bottom:0.000000pt;}
.ydd{bottom:3.360000pt;}
.ya3{bottom:3.520000pt;}
.ye5{bottom:3.680000pt;}
.yd9{bottom:4.000000pt;}
.ye0{bottom:5.120000pt;}
.y99{bottom:12.640000pt;}
.y98{bottom:13.120000pt;}
.yab{bottom:16.800000pt;}
.ya6{bottom:16.960000pt;}
.ya8{bottom:16.986667pt;}
.ydc{bottom:18.720000pt;}
.ya2{bottom:20.320000pt;}
.yae{bottom:20.480000pt;}
.yd8{bottom:21.760000pt;}
.ya0{bottom:25.920000pt;}
.y9b{bottom:26.240000pt;}
.ydb{bottom:30.720000pt;}
.yd3{bottom:34.080000pt;}
.ye4{bottom:35.520000pt;}
.ydf{bottom:36.480000pt;}
.yd7{bottom:37.120000pt;}
.y96{bottom:40.666667pt;}
.yd2{bottom:49.280000pt;}
.yea{bottom:50.880000pt;}
.yde{bottom:50.920000pt;}
.yd6{bottom:52.480000pt;}
.yc4{bottom:59.392000pt;}
.ye6{bottom:61.952000pt;}
.y44{bottom:62.272000pt;}
.y54{bottom:63.872000pt;}
.yd1{bottom:64.640000pt;}
.ye9{bottom:66.240000pt;}
.yd5{bottom:67.680000pt;}
.yc3{bottom:74.752000pt;}
.y126{bottom:76.032000pt;}
.y3d{bottom:79.872000pt;}
.yd0{bottom:80.640000pt;}
.ye8{bottom:81.594667pt;}
.yd4{bottom:83.040000pt;}
.yb6{bottom:83.872000pt;}
.y42{bottom:87.232000pt;}
.yc2{bottom:89.952000pt;}
.y125{bottom:92.672000pt;}
.ycf{bottom:95.200000pt;}
.ye7{bottom:96.954667pt;}
.y43{bottom:99.072000pt;}
.y53{bottom:100.672000pt;}
.yc1{bottom:105.312000pt;}
.y94{bottom:106.432000pt;}
.y124{bottom:108.032000pt;}
.y3c{bottom:116.672000pt;}
.y75{bottom:120.672000pt;}
.y123{bottom:123.392000pt;}
.y41{bottom:124.032000pt;}
.y93{bottom:130.912000pt;}
.y25{bottom:135.866667pt;}
.yc0{bottom:136.026667pt;}
.y5e{bottom:137.306667pt;}
.y52{bottom:137.466667pt;}
.y122{bottom:138.746667pt;}
.y92{bottom:147.866667pt;}
.ybf{bottom:151.386667pt;}
.y119{bottom:152.346667pt;}
.y3b{bottom:153.466667pt;}
.y121{bottom:153.946667pt;}
.y74{bottom:157.466667pt;}
.yb5{bottom:160.986667pt;}
.y91{bottom:164.666667pt;}
.ybe{bottom:166.746667pt;}
.y118{bottom:168.986667pt;}
.y120{bottom:169.306667pt;}
.y24{bottom:172.666667pt;}
.y40{bottom:174.106667pt;}
.y51{bottom:174.266667pt;}
.y90{bottom:181.466667pt;}
.ybd{bottom:181.946667pt;}
.y117{bottom:184.346667pt;}
.y3a{bottom:190.266667pt;}
.yb4{bottom:191.226667pt;}
.y73{bottom:194.266667pt;}
.y116{bottom:199.706667pt;}
.y23{bottom:209.466667pt;}
.ye2{bottom:209.626667pt;}
.y50{bottom:211.066667pt;}
.y13d{bottom:211.200000pt;}
.ybc{bottom:214.426667pt;}
.y115{bottom:215.066667pt;}
.y8f{bottom:215.226667pt;}
.yb3{bottom:221.306667pt;}
.ye1{bottom:226.426667pt;}
.y13c{bottom:226.573333pt;}
.y39{bottom:227.066667pt;}
.y114{bottom:230.266667pt;}
.y72{bottom:231.066667pt;}
.y3f{bottom:232.986667pt;}
.yda{bottom:239.706667pt;}
.y113{bottom:245.626667pt;}
.y22{bottom:246.266667pt;}
.y4f{bottom:247.866667pt;}
.y8e{bottom:248.986667pt;}
.ybb{bottom:250.106667pt;}
.yb2{bottom:251.546667pt;}
.y112{bottom:260.986667pt;}
.y38{bottom:263.866667pt;}
.y71{bottom:267.866667pt;}
.y111{bottom:276.346667pt;}
.yb1{bottom:281.826667pt;}
.y8d{bottom:282.786667pt;}
.y3e{bottom:282.946667pt;}
.y21{bottom:283.106667pt;}
.y4e{bottom:284.706667pt;}
.y110{bottom:291.746667pt;}
.y37{bottom:300.706667pt;}
.y70{bottom:304.706667pt;}
.y10f{bottom:307.106667pt;}
.yb0{bottom:312.066667pt;}
.y8c{bottom:316.546667pt;}
.y20{bottom:319.906667pt;}
.y4d{bottom:321.346667pt;}
.y10e{bottom:322.306667pt;}
.y36{bottom:337.346667pt;}
.y10d{bottom:337.666667pt;}
.y6f{bottom:341.346667pt;}
.yaf{bottom:342.146667pt;}
.y13b{bottom:344.653333pt;}
.y8b{bottom:350.146667pt;}
.y139{bottom:350.400000pt;}
.y11f{bottom:352.386667pt;}
.y10c{bottom:353.026667pt;}
.y13a{bottom:354.240000pt;}
.y1f{bottom:356.706667pt;}
.y4c{bottom:358.146667pt;}
.y10b{bottom:368.386667pt;}
.y11e{bottom:369.186667pt;}
.yad{bottom:372.386667pt;}
.y35{bottom:374.146667pt;}
.y6e{bottom:378.146667pt;}
.y10a{bottom:383.746667pt;}
.y8a{bottom:383.906667pt;}
.y11d{bottom:386.146667pt;}
.y1e{bottom:393.506667pt;}
.y4b{bottom:394.946667pt;}
.y109{bottom:398.946667pt;}
.y11c{bottom:402.946667pt;}
.y138{bottom:404.173333pt;}
.yac{bottom:406.146667pt;}
.y34{bottom:410.946667pt;}
.y108{bottom:414.306667pt;}
.y6d{bottom:414.946667pt;}
.y89{bottom:417.666667pt;}
.y11b{bottom:419.586667pt;}
.y137{bottom:427.200000pt;}
.y107{bottom:429.666667pt;}
.y1d{bottom:430.306667pt;}
.y4a{bottom:431.746667pt;}
.y11a{bottom:434.946667pt;}
.yaa{bottom:436.386667pt;}
.ycc{bottom:444.133333pt;}
.y106{bottom:445.026667pt;}
.y33{bottom:447.746667pt;}
.y88{bottom:451.426667pt;}
.y6c{bottom:451.746667pt;}
.ycb{bottom:458.666667pt;}
.y105{bottom:460.386667pt;}
.ya9{bottom:466.466667pt;}
.y1c{bottom:467.106667pt;}
.y49{bottom:468.546667pt;}
.yca{bottom:474.186667pt;}
.y104{bottom:475.746667pt;}
.y136{bottom:482.893333pt;}
.y32{bottom:484.546667pt;}
.y87{bottom:485.186667pt;}
.y6b{bottom:488.546667pt;}
.yc9{bottom:489.706667pt;}
.y103{bottom:490.946667pt;}
.ya7{bottom:496.706667pt;}
.y1b{bottom:503.933333pt;}
.y48{bottom:505.373333pt;}
.y102{bottom:506.333333pt;}
.y135{bottom:507.853333pt;}
.y86{bottom:518.813333pt;}
.y31{bottom:521.373333pt;}
.y101{bottom:521.693333pt;}
.y134{bottom:525.133333pt;}
.y6a{bottom:525.373333pt;}
.ya5{bottom:526.973333pt;}
.ye3{bottom:534.493333pt;}
.y100{bottom:537.053333pt;}
.y1a{bottom:540.733333pt;}
.y47{bottom:542.173333pt;}
.yff{bottom:552.413333pt;}
.y85{bottom:552.573333pt;}
.ya4{bottom:557.213333pt;}
.y30{bottom:558.173333pt;}
.y133{bottom:558.733333pt;}
.y69{bottom:562.173333pt;}
.yce{bottom:566.173333pt;}
.yfe{bottom:567.773333pt;}
.y19{bottom:577.533333pt;}
.y46{bottom:578.973333pt;}
.yfd{bottom:582.973333pt;}
.y84{bottom:586.333333pt;}
.ya1{bottom:592.253333pt;}
.y2f{bottom:594.973333pt;}
.yfc{bottom:598.333333pt;}
.y68{bottom:598.973333pt;}
.y132{bottom:602.893333pt;}
.y83{bottom:603.613333pt;}
.yfb{bottom:613.693333pt;}
.y18{bottom:614.333333pt;}
.yc8{bottom:615.760000pt;}
.y57{bottom:615.773333pt;}
.y82{bottom:622.013333pt;}
.y45{bottom:629.053333pt;}
.y2e{bottom:631.773333pt;}
.yd{bottom:635.133333pt;}
.y67{bottom:635.773333pt;}
.yc7{bottom:637.093333pt;}
.y81{bottom:640.413333pt;}
.yfa{bottom:644.413333pt;}
.yc6{bottom:645.826667pt;}
.y17{bottom:651.133333pt;}
.yc{bottom:651.933333pt;}
.y56{bottom:652.573333pt;}
.y131{bottom:657.613333pt;}
.y80{bottom:658.333333pt;}
.yf9{bottom:659.613333pt;}
.y130{bottom:664.320000pt;}
.y2d{bottom:668.573333pt;}
.y66{bottom:672.573333pt;}
.yb{bottom:674.173333pt;}
.yf8{bottom:674.973333pt;}
.y7f{bottom:675.293333pt;}
.y12f{bottom:681.613333pt;}
.y16{bottom:687.933333pt;}
.y5d{bottom:689.373333pt;}
.yf7{bottom:690.333333pt;}
.y7e{bottom:692.093333pt;}
.ya{bottom:696.413333pt;}
.yba{bottom:698.013333pt;}
.y55{bottom:702.653333pt;}
.y2c{bottom:705.373333pt;}
.yf6{bottom:705.693333pt;}
.y7d{bottom:709.053333pt;}
.y65{bottom:709.373333pt;}
.yb9{bottom:713.213333pt;}
.y9{bottom:718.653333pt;}
.yf5{bottom:721.053333pt;}
.y9f{bottom:722.533333pt;}
.y15{bottom:724.773333pt;}
.y7c{bottom:725.893333pt;}
.y5c{bottom:726.213333pt;}
.yb8{bottom:728.613333pt;}
.y12d{bottom:733.453333pt;}
.yf4{bottom:736.453333pt;}
.y12e{bottom:737.293333pt;}
.y8{bottom:740.933333pt;}
.y2b{bottom:742.213333pt;}
.yb7{bottom:743.973333pt;}
.y64{bottom:746.213333pt;}
.yf3{bottom:751.653333pt;}
.y7b{bottom:759.653333pt;}
.y14{bottom:761.573333pt;}
.y5b{bottom:763.013333pt;}
.y7{bottom:763.173333pt;}
.y9e{bottom:764.773333pt;}
.y12c{bottom:765.133333pt;}
.yf2{bottom:767.013333pt;}
.y2a{bottom:779.013333pt;}
.yf1{bottom:782.373333pt;}
.y63{bottom:783.013333pt;}
.y6{bottom:785.413333pt;}
.y7a{bottom:793.413333pt;}
.yf0{bottom:797.733333pt;}
.y13{bottom:798.373333pt;}
.y5a{bottom:799.813333pt;}
.y9d{bottom:806.373333pt;}
.y5{bottom:808.773333pt;}
.yef{bottom:813.093333pt;}
.y29{bottom:815.813333pt;}
.y12b{bottom:816.960000pt;}
.y62{bottom:819.813333pt;}
.y12a{bottom:825.613333pt;}
.y79{bottom:827.173333pt;}
.yee{bottom:828.453333pt;}
.y12{bottom:835.173333pt;}
.y59{bottom:836.613333pt;}
.y129{bottom:839.053333pt;}
.y4{bottom:840.293333pt;}
.yed{bottom:843.653333pt;}
.y9c{bottom:847.973333pt;}
.y28{bottom:852.613333pt;}
.y61{bottom:856.613333pt;}
.yec{bottom:859.013333pt;}
.y78{bottom:860.773333pt;}
.y11{bottom:871.973333pt;}
.yeb{bottom:874.373333pt;}
.y58{bottom:886.693333pt;}
.y3{bottom:887.333333pt;}
.y27{bottom:889.413333pt;}
.y9a{bottom:889.573333pt;}
.y60{bottom:893.413333pt;}
.y77{bottom:894.533333pt;}
.y10{bottom:908.773333pt;}
.y128{bottom:925.453333pt;}
.yf{bottom:927.173333pt;}
.yc5{bottom:928.000000pt;}
.y76{bottom:928.293333pt;}
.y95{bottom:931.813333pt;}
.y2{bottom:934.533333pt;}
.y127{bottom:935.053333pt;}
.y5f{bottom:939.013333pt;}
.y26{bottom:939.493333pt;}
.ye{bottom:945.600000pt;}
.ycd{bottom:946.720000pt;}
.y97{bottom:959.360000pt;}
.y1{bottom:993.600000pt;}
.h2b{height:17.902435pt;}
.h31{height:25.574755pt;}
.hf{height:27.552000pt;}
.he{height:27.680000pt;}
.h15{height:30.080000pt;}
.h13{height:30.240000pt;}
.h14{height:30.272000pt;}
.h36{height:33.247075pt;}
.h11{height:33.600000pt;}
.h16{height:33.760000pt;}
.h37{height:37.268750pt;}
.h10{height:40.800000pt;}
.h3c{height:42.831250pt;}
.h34{height:43.445313pt;}
.h1c{height:43.915862pt;}
.h5{height:44.301250pt;}
.h1f{height:48.156250pt;}
.hc{height:49.105000pt;}
.h17{height:53.142500pt;}
.h1{height:53.375000pt;}
.h2a{height:53.390625pt;}
.h2e{height:53.706595pt;}
.h1b{height:54.437500pt;}
.hd{height:55.232000pt;}
.h3d{height:58.406250pt;}
.h12{height:59.340000pt;}
.h20{height:61.765625pt;}
.h8{height:62.781250pt;}
.ha{height:64.500000pt;}
.h3{height:64.583750pt;}
.h6{height:65.201250pt;}
.hb{height:65.781915pt;}
.h19{height:68.418750pt;}
.h35{height:71.608320pt;}
.h18{height:72.234375pt;}
.h1a{height:72.312500pt;}
.h2d{height:73.981250pt;}
.h1e{height:74.851563pt;}
.h4{height:75.965312pt;}
.h25{height:76.762500pt;}
.h39{height:80.085938pt;}
.h2c{height:83.750000pt;}
.h30{height:86.890625pt;}
.h33{height:86.953315pt;}
.h3a{height:88.150000pt;}
.h9{height:91.590000pt;}
.h7{height:93.410319pt;}
.h3b{height:98.900000pt;}
.h1d{height:102.906250pt;}
.h2{height:110.295000pt;}
.h26{height:115.162500pt;}
.h2f{height:121.262500pt;}
.h27{height:169.100000pt;}
.h28{height:170.212500pt;}
.h29{height:198.906250pt;}
.h38{height:201.000523pt;}
.h32{height:295.925556pt;}
.h22{height:326.466667pt;}
.h21{height:376.986667pt;}
.h23{height:425.506667pt;}
.h24{height:472.546667pt;}
.h0{height:1056.000000pt;}
.w7{width:43.840000pt;}
.w8{width:63.072000pt;}
.wc{width:64.000000pt;}
.w5{width:76.640000pt;}
.w4{width:76.800000pt;}
.wb{width:101.280000pt;}
.wa{width:107.872000pt;}
.w3{width:153.440000pt;}
.w9{width:165.280000pt;}
.w1{width:180.186667pt;}
.w2{width:182.426667pt;}
.w6{width:215.386667pt;}
.we{width:347.426667pt;}
.wd{width:362.786667pt;}
.wf{width:542.493333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:7.200000pt;}
.x15{left:20.960000pt;}
.x16{left:33.120000pt;}
.x1e{left:35.520000pt;}
.x23{left:46.400000pt;}
.x18{left:48.960000pt;}
.x24{left:52.480000pt;}
.x19{left:53.600000pt;}
.x32{left:55.232000pt;}
.x1f{left:56.640000pt;}
.x1a{left:61.440000pt;}
.x21{left:94.080000pt;}
.xf{left:110.592000pt;}
.x11{left:112.832000pt;}
.x8{left:120.032000pt;}
.x50{left:127.640000pt;}
.x25{left:129.472000pt;}
.x2{left:132.352000pt;}
.xd{left:138.906667pt;}
.xc{left:144.026667pt;}
.x6{left:145.626667pt;}
.x3f{left:149.800000pt;}
.x51{left:155.346667pt;}
.x37{left:160.826667pt;}
.xa{left:167.226667pt;}
.x4a{left:169.920000pt;}
.x36{left:173.626667pt;}
.x31{left:181.466667pt;}
.x52{left:188.173333pt;}
.x5d{left:190.426667pt;}
.x10{left:195.546667pt;}
.x3e{left:198.106667pt;}
.x53{left:204.493333pt;}
.x3{left:209.466667pt;}
.x4b{left:211.200000pt;}
.x54{left:216.973333pt;}
.x3d{left:218.506667pt;}
.x1c{left:220.666667pt;}
.x5e{left:229.840000pt;}
.x2f{left:233.290800pt;}
.x2c{left:234.904133pt;}
.x2d{left:236.157467pt;}
.x2a{left:255.757467pt;}
.x2e{left:261.117600pt;}
.x2b{left:263.517600pt;}
.x65{left:277.453333pt;}
.x1d{left:283.746667pt;}
.x13{left:293.026667pt;}
.x38{left:296.400000pt;}
.x7{left:298.626667pt;}
.x5b{left:302.946667pt;}
.x5f{left:304.826667pt;}
.x5{left:315.426667pt;}
.x35{left:335.746667pt;}
.x30{left:339.426667pt;}
.x42{left:350.000000pt;}
.x34{left:355.586667pt;}
.x4c{left:359.053333pt;}
.x66{left:361.613333pt;}
.x9{left:380.866667pt;}
.x22{left:385.026667pt;}
.x67{left:396.280000pt;}
.x26{left:401.104133pt;}
.x68{left:402.933333pt;}
.x60{left:404.253333pt;}
.x43{left:405.773333pt;}
.x4{left:408.066667pt;}
.x44{left:411.680000pt;}
.x33{left:415.746667pt;}
.x5c{left:423.920000pt;}
.x39{left:425.986667pt;}
.x27{left:429.090800pt;}
.x40{left:433.960000pt;}
.x45{left:435.373333pt;}
.x3a{left:439.320000pt;}
.x29{left:440.824133pt;}
.x41{left:446.186667pt;}
.x55{left:447.360000pt;}
.x20{left:449.026667pt;}
.x28{left:452.330800pt;}
.x61{left:454.600000pt;}
.x46{left:468.200000pt;}
.x14{left:475.453333pt;}
.x49{left:493.040000pt;}
.x3b{left:498.973333pt;}
.x62{left:504.346667pt;}
.x4d{left:506.893333pt;}
.x1b{left:508.413333pt;}
.x56{left:520.320000pt;}
.x3c{left:521.906667pt;}
.x47{left:524.973333pt;}
.x4e{left:528.000000pt;}
.x57{left:533.773333pt;}
.x48{left:547.693333pt;}
.x17{left:552.253333pt;}
.x63{left:553.973333pt;}
.x58{left:600.973333pt;}
.x59{left:610.573333pt;}
.x64{left:614.626667pt;}
.x5a{left:629.773333pt;}
.x4f{left:633.613333pt;}
.xe{left:639.293333pt;}
.xb{left:680.133333pt;}
.x1{left:688.133333pt;}
}




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