
    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_91aa8ff22bae022e67b9a89a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_90a244830457c9eedc804821.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f8497d6022a8805454f5d4f6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969000;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_e30e2bbc17afef9a9e52c4b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.969000;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_fafcec2a01ed4b4ee6d3a99b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.691406;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_af2947ef27a9f61e51f9a89a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_308c75b78a32882efa8518a2.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_f4287902a51bf7069fd12fff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.691406;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_201b39c0f5234f4a7fbbfa20.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d7310e0993b4ed8446a80c7b.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_e25c4be14ade8d63df932eb2.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_18059e7b063a5a9fc5e38da2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910645;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_6ef6ff76d3e7536bdc771337.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.871094;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_ed2cf07cd509b45b71103251.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b142d60be528c46f99a467a9.woff2')format("woff");}.fff{font-family:fff;line-height:0.874023;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_bb06a6f7fb8347f8b365f06e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.871094;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_19f930d2b633a1abd3228957.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_210f62b25736b071338b9fb6.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_57cd6d2a65b368201b20e4f5.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_e1d7469c9559cbfd91fc194b.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_89ef106998cb76fc2855cc72.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_a050d32bf5d5112d99c5f758.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.874023;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_893df57ffec6765c9dfad2eb.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_1cf112a99eeac5880b149140.woff2')format("woff");}.ff18{font-family:ff18;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-137.640000px;}
.v3{vertical-align:-115.080000px;}
.v5{vertical-align:-69.000000px;}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.v6{vertical-align:141.420000px;}
.ls17{letter-spacing:-0.936000px;}
.lsf{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.263400px;}
.lsc{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.202800px;}
.ls22{letter-spacing:-0.193200px;}
.lse{letter-spacing:-0.144000px;}
.ls21{letter-spacing:-0.115200px;}
.ls11{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.022320px;}
.ls13{letter-spacing:0.072000px;}
.ls20{letter-spacing:0.132600px;}
.lsd{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.149760px;}
.ls18{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.181440px;}
.ls14{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.256200px;}
.ls6{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.325440px;}
.ls1{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.504000px;}
.ls2{letter-spacing:0.540000px;}
.ls10{letter-spacing:0.576000px;}
.ls15{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.900000px;}
.ls7{letter-spacing:1.008000px;}
.lsa{letter-spacing:1.584000px;}
.ls1f{letter-spacing:72.144000px;}
.ls1e{letter-spacing:72.204000px;}
.ls1d{letter-spacing:175.344000px;}
.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;}
}
.ws16{word-spacing:-48.240000px;}
.ws21{word-spacing:-31.692000px;}
.ws17{word-spacing:-30.024000px;}
.ws23{word-spacing:-26.688000px;}
.ws1a{word-spacing:-26.679252px;}
.ws1e{word-spacing:-23.352000px;}
.ws1d{word-spacing:-21.684000px;}
.ws19{word-spacing:-20.016000px;}
.ws6{word-spacing:-19.584000px;}
.ws3{word-spacing:-19.008000px;}
.wsd{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.576000px;}
.ws2{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.144000px;}
.ws10{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.wsf{word-spacing:-17.064000px;}
.ws11{word-spacing:-15.226440px;}
.ws27{word-spacing:-15.102840px;}
.ws28{word-spacing:-14.855040px;}
.ws29{word-spacing:-14.777040px;}
.wse{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.060000px;}
.ws9{word-spacing:-11.700000px;}
.ws13{word-spacing:-10.924560px;}
.ws12{word-spacing:-10.902240px;}
.ws15{word-spacing:-10.699440px;}
.ws14{word-spacing:-10.638840px;}
.ws4{word-spacing:0.000000px;}
.ws24{word-spacing:21.732000px;}
.ws25{word-spacing:23.100000px;}
.ws1b{word-spacing:34.812000px;}
.ws1f{word-spacing:35.352000px;}
.ws1c{word-spacing:44.772000px;}
.ws20{word-spacing:45.312000px;}
.ws22{word-spacing:105.900000px;}
.ws26{word-spacing:108.264000px;}
.ws18{word-spacing:110.136000px;}
._d{margin-left:-13.452000px;}
._c{margin-left:-10.950887px;}
._a{margin-left:-9.612000px;}
._8{margin-left:-8.315952px;}
._b{margin-left:-7.068000px;}
._7{margin-left:-5.952000px;}
._9{margin-left:-4.787952px;}
._4{margin-left:-3.492048px;}
._2{margin-left:-2.208000px;}
._1{margin-left:-1.008000px;}
._0{width:1.176048px;}
._3{width:2.952048px;}
._f{width:109.512000px;}
._10{width:111.936000px;}
._6{width:113.424000px;}
._e{width:169.296000px;}
._5{width:846.300000px;}
.fc5{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(48,48,48);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs8{font-size:84.000000px;}
.fs9{font-size:95.968532px;}
.fs5{font-size:96.000000px;}
.fsb{font-size:102.000000px;}
.fs4{font-size:108.000000px;}
.fs7{font-size:114.000000px;}
.fsa{font-size:120.000000px;}
.y171{bottom:-11.340000px;}
.y0{bottom:0.000000px;}
.yd8{bottom:3.225000px;}
.ybf{bottom:3.240000px;}
.ydd{bottom:3.405000px;}
.yc4{bottom:3.420000px;}
.yd7{bottom:4.305000px;}
.yc8{bottom:4.320000px;}
.ydb{bottom:4.485000px;}
.yc6{bottom:4.500000px;}
.ycb{bottom:4.530000px;}
.yc3{bottom:10.620000px;}
.yd5{bottom:10.800000px;}
.y14d{bottom:16.965000px;}
.yed{bottom:17.280000px;}
.yc1{bottom:18.000000px;}
.y147{bottom:26.235000px;}
.y12f{bottom:26.925000px;}
.ye3{bottom:28.080000px;}
.y149{bottom:29.565000px;}
.y12d{bottom:32.760000px;}
.y14b{bottom:34.170000px;}
.y125{bottom:34.695000px;}
.y129{bottom:40.440000px;}
.y1b{bottom:40.740000px;}
.y12b{bottom:41.820000px;}
.y127{bottom:47.010000px;}
.ye6{bottom:48.525000px;}
.ye7{bottom:49.230000px;}
.ye8{bottom:50.475000px;}
.y123{bottom:50.550000px;}
.yeb{bottom:50.565000px;}
.yea{bottom:50.595000px;}
.yec{bottom:50.820000px;}
.ye9{bottom:51.480000px;}
.y1a{bottom:62.340000px;}
.y145{bottom:62.640000px;}
.y142{bottom:66.180000px;}
.y130{bottom:67.320000px;}
.y138{bottom:73.335000px;}
.y13b{bottom:74.130000px;}
.y13a{bottom:74.925000px;}
.y137{bottom:75.180000px;}
.y1d{bottom:75.420000px;}
.y150{bottom:75.456000px;}
.y139{bottom:75.720000px;}
.y140{bottom:76.095000px;}
.y136{bottom:77.865000px;}
.yf5{bottom:78.420000px;}
.y14c{bottom:90.555000px;}
.y12e{bottom:90.705000px;}
.y135{bottom:92.535000px;}
.y11e{bottom:92.880000px;}
.y12c{bottom:93.765000px;}
.y13c{bottom:95.385000px;}
.y14a{bottom:101.865000px;}
.y134{bottom:105.030000px;}
.y11f{bottom:107.880000px;}
.yef{bottom:110.160000px;}
.y148{bottom:111.300000px;}
.y3a{bottom:113.580000px;}
.y14f{bottom:113.616000px;}
.y12a{bottom:120.915000px;}
.yfb{bottom:122.880000px;}
.y144{bottom:123.495000px;}
.yfc{bottom:123.540000px;}
.yfd{bottom:124.710000px;}
.y100{bottom:124.800000px;}
.yff{bottom:124.830000px;}
.y101{bottom:125.040000px;}
.y102{bottom:125.190000px;}
.yfe{bottom:125.670000px;}
.y122{bottom:130.395000px;}
.y51{bottom:134.100000px;}
.y72{bottom:139.500000px;}
.ye5{bottom:140.775000px;}
.y181{bottom:140.796000px;}
.y5e{bottom:144.936000px;}
.y86{bottom:152.130000px;}
.y16{bottom:155.190000px;}
.y69{bottom:157.530000px;}
.y180{bottom:162.750000px;}
.y13f{bottom:165.330000px;}
.y13d{bottom:167.040000px;}
.y146{bottom:174.480000px;}
.y13e{bottom:174.960000px;}
.y50{bottom:175.530000px;}
.y17f{bottom:179.490000px;}
.y71{bottom:180.930000px;}
.y5d{bottom:186.330000px;}
.y124{bottom:193.065000px;}
.y85{bottom:193.530000px;}
.y17e{bottom:196.410000px;}
.y15{bottom:196.590000px;}
.y103{bottom:197.970000px;}
.y80{bottom:198.570000px;}
.y68{bottom:198.930000px;}
.yb1{bottom:207.390000px;}
.y17d{bottom:208.485000px;}
.y4f{bottom:216.930000px;}
.y70{bottom:222.330000px;}
.y17c{bottom:225.405000px;}
.y30{bottom:227.730000px;}
.ye2{bottom:230.790000px;}
.y84{bottom:234.930000px;}
.y128{bottom:235.260000px;}
.y10b{bottom:236.610000px;}
.y14{bottom:237.990000px;}
.y67{bottom:240.330000px;}
.y17b{bottom:243.045000px;}
.y5c{bottom:245.730000px;}
.y143{bottom:247.320000px;}
.ya1{bottom:248.790000px;}
.y90{bottom:255.270000px;}
.y4e{bottom:258.330000px;}
.y17a{bottom:259.965000px;}
.y6f{bottom:263.730000px;}
.ye1{bottom:264.450000px;}
.y2f{bottom:269.130000px;}
.y133{bottom:270.990000px;}
.y83{bottom:276.330000px;}
.y179{bottom:276.735000px;}
.y13{bottom:279.390000px;}
.ye0{bottom:281.370000px;}
.y66{bottom:281.730000px;}
.y7b{bottom:287.130000px;}
.ya0{bottom:290.190000px;}
.y178{bottom:293.655000px;}
.y8f{bottom:296.670000px;}
.y132{bottom:296.910000px;}
.ydf{bottom:298.110000px;}
.y4d{bottom:299.730000px;}
.y126{bottom:300.585000px;}
.y141{bottom:302.430000px;}
.y5b{bottom:305.130000px;}
.yde{bottom:310.365000px;}
.y2e{bottom:310.530000px;}
.y177{bottom:310.575000px;}
.yf6{bottom:315.945000px;}
.y82{bottom:317.730000px;}
.y12{bottom:320.790000px;}
.yba{bottom:323.130000px;}
.ydc{bottom:327.105000px;}
.y176{bottom:327.495000px;}
.y7a{bottom:328.530000px;}
.y10c{bottom:329.175000px;}
.y9f{bottom:331.590000px;}
.y8e{bottom:338.070000px;}
.y65{bottom:341.130000px;}
.yda{bottom:344.025000px;}
.y175{bottom:344.235000px;}
.y5a{bottom:346.530000px;}
.yf7{bottom:348.555000px;}
.y2d{bottom:351.930000px;}
.yb0{bottom:352.470000px;}
.y4c{bottom:359.130000px;}
.yd9{bottom:360.945000px;}
.y174{bottom:361.155000px;}
.y11{bottom:362.190000px;}
.yb9{bottom:364.530000px;}
.ye4{bottom:364.920000px;}
.y79{bottom:369.930000px;}
.y9e{bottom:372.990000px;}
.yd6{bottom:377.865000px;}
.y173{bottom:378.075000px;}
.y7f{bottom:382.530000px;}
.yf4{bottom:386.295000px;}
.y59{bottom:387.930000px;}
.yae{bottom:393.915000px;}
.y172{bottom:394.995000px;}
.yd4{bottom:395.355000px;}
.y8d{bottom:400.215000px;}
.y4b{bottom:400.575000px;}
.y10{bottom:403.275000px;}
.yb8{bottom:405.975000px;}
.y2c{bottom:411.015000px;}
.y170{bottom:412.455000px;}
.yac{bottom:414.435000px;}
.y10d{bottom:421.755000px;}
.y7e{bottom:423.975000px;}
.yd3{bottom:424.695000px;}
.y78{bottom:429.375000px;}
.yf3{bottom:434.490000px;}
.y9d{bottom:435.315000px;}
.y16f{bottom:441.795000px;}
.y4a{bottom:441.975000px;}
.y58{bottom:447.375000px;}
.yd2{bottom:454.035000px;}
.yab{bottom:455.835000px;}
.yf2{bottom:458.250000px;}
.y7d{bottom:465.375000px;}
.y2b{bottom:470.775000px;}
.y16e{bottom:471.135000px;}
.y9c{bottom:476.715000px;}
.yf1{bottom:482.010000px;}
.y49{bottom:483.375000px;}
.yf{bottom:486.435000px;}
.y57{bottom:488.775000px;}
.yd1{bottom:496.875000px;}
.yb3{bottom:499.215000px;}
.yf8{bottom:499.245000px;}
.y14e{bottom:503.280000px;}
.yf0{bottom:505.770000px;}
.y6e{bottom:506.775000px;}
.y16d{bottom:511.455000px;}
.y2a{bottom:512.175000px;}
.y10e{bottom:514.320000px;}
.y9b{bottom:518.115000px;}
.y106{bottom:519.465000px;}
.y48{bottom:524.775000px;}
.y56{bottom:530.175000px;}
.y16c{bottom:531.615000px;}
.ye{bottom:536.115000px;}
.yb2{bottom:538.275000px;}
.yaf{bottom:539.175000px;}
.y88{bottom:542.775000px;}
.y6d{bottom:548.175000px;}
.y16b{bottom:551.595000px;}
.y29{bottom:553.575000px;}
.yaa{bottom:559.515000px;}
.yd0{bottom:559.875000px;}
.y47{bottom:566.175000px;}
.yd{bottom:569.235000px;}
.y55{bottom:571.575000px;}
.y10a{bottom:573.780000px;}
.ycf{bottom:576.795000px;}
.y9a{bottom:580.575000px;}
.y87{bottom:584.175000px;}
.y6c{bottom:589.575000px;}
.y109{bottom:592.530000px;}
.y16a{bottom:592.665000px;}
.yce{bottom:593.715000px;}
.y11d{bottom:594.000000px;}
.y28{bottom:594.975000px;}
.y114{bottom:600.030000px;}
.ya9{bottom:600.915000px;}
.y105{bottom:606.855000px;}
.y10f{bottom:606.885000px;}
.y46{bottom:607.575000px;}
.y104{bottom:607.950000px;}
.ycd{bottom:610.455000px;}
.yee{bottom:611.280000px;}
.yb5{bottom:612.615000px;}
.y54{bottom:612.975000px;}
.y169{bottom:614.445000px;}
.yc{bottom:618.735000px;}
.y113{bottom:618.780000px;}
.y99{bottom:621.975000px;}
.ycc{bottom:622.515000px;}
.y64{bottom:625.575000px;}
.y108{bottom:630.045000px;}
.y6b{bottom:630.975000px;}
.y168{bottom:631.365000px;}
.y27{bottom:636.375000px;}
.yca{bottom:639.435000px;}
.ya8{bottom:642.345000px;}
.y112{bottom:645.105000px;}
.y167{bottom:648.285000px;}
.y45{bottom:649.005000px;}
.yf9{bottom:649.950000px;}
.yb{bottom:651.885000px;}
.y185{bottom:653.685000px;}
.y53{bottom:654.405000px;}
.y107{bottom:656.370000px;}
.yc9{bottom:656.385000px;}
.y166{bottom:660.345000px;}
.y98{bottom:663.405000px;}
.y63{bottom:667.005000px;}
.y119{bottom:667.335000px;}
.y11c{bottom:668.130000px;}
.y11b{bottom:668.925000px;}
.y118{bottom:669.180000px;}
.y11a{bottom:669.720000px;}
.y117{bottom:671.865000px;}
.y6a{bottom:672.405000px;}
.yc7{bottom:673.305000px;}
.y165{bottom:677.085000px;}
.y77{bottom:677.805000px;}
.ybd{bottom:685.005000px;}
.y116{bottom:686.535000px;}
.yc5{bottom:690.045000px;}
.y81{bottom:690.405000px;}
.y184{bottom:692.745000px;}
.y164{bottom:694.725000px;}
.y26{bottom:695.445000px;}
.y115{bottom:699.030000px;}
.y110{bottom:699.465000px;}
.ya{bottom:701.565000px;}
.ya7{bottom:704.805000px;}
.yc2{bottom:707.685000px;}
.y8c{bottom:708.225000px;}
.y44{bottom:708.405000px;}
.y163{bottom:711.645000px;}
.y183{bottom:712.905000px;}
.y52{bottom:713.805000px;}
.y76{bottom:719.205000px;}
.y97{bottom:725.685000px;}
.ybc{bottom:726.405000px;}
.y162{bottom:728.565000px;}
.y7c{bottom:731.805000px;}
.y9{bottom:734.685000px;}
.yc0{bottom:737.025000px;}
.y161{bottom:745.485000px;}
.ya6{bottom:746.205000px;}
.y182{bottom:749.625000px;}
.y43{bottom:749.805000px;}
.y25{bottom:755.205000px;}
.y120{bottom:761.040000px;}
.y160{bottom:762.225000px;}
.yb7{bottom:764.205000px;}
.ybe{bottom:766.365000px;}
.y96{bottom:767.085000px;}
.y8b{bottom:767.625000px;}
.ybb{bottom:767.805000px;}
.y121{bottom:768.960000px;}
.y39{bottom:773.205000px;}
.y75{bottom:778.605000px;}
.y15f{bottom:779.145000px;}
.y8{bottom:784.365000px;}
.ya5{bottom:787.605000px;}
.y42{bottom:791.205000px;}
.y111{bottom:792.030000px;}
.y15e{bottom:796.065000px;}
.y24{bottom:796.605000px;}
.yfa{bottom:800.640000px;}
.y95{bottom:808.485000px;}
.y8a{bottom:809.205000px;}
.y15d{bottom:812.985000px;}
.y38{bottom:814.605000px;}
.y7{bottom:817.485000px;}
.y15c{bottom:829.725000px;}
.y41{bottom:832.605000px;}
.y74{bottom:837.645000px;}
.y23{bottom:838.005000px;}
.y15b{bottom:846.690000px;}
.y94{bottom:849.885000px;}
.y89{bottom:850.605000px;}
.y37{bottom:856.005000px;}
.y15a{bottom:864.330000px;}
.y6{bottom:867.165000px;}
.yad{bottom:870.945000px;}
.y40{bottom:874.005000px;}
.y22{bottom:879.405000px;}
.ya4{bottom:891.330000px;}
.y62{bottom:892.050000px;}
.y159{bottom:893.670000px;}
.y73{bottom:897.090000px;}
.y36{bottom:897.450000px;}
.y5{bottom:899.970000px;}
.y93{bottom:912.390000px;}
.y3f{bottom:915.450000px;}
.y21{bottom:920.850000px;}
.y158{bottom:923.010000px;}
.ya3{bottom:932.730000px;}
.y61{bottom:933.450000px;}
.y35{bottom:938.850000px;}
.yb6{bottom:947.850000px;}
.y92{bottom:953.790000px;}
.y3e{bottom:956.850000px;}
.y20{bottom:962.250000px;}
.y157{bottom:963.150000px;}
.y60{bottom:974.850000px;}
.y156{bottom:983.310000px;}
.y91{bottom:995.190000px;}
.y34{bottom:997.890000px;}
.y4{bottom:998.070000px;}
.y3d{bottom:998.250000px;}
.y155{bottom:1003.470000px;}
.y1f{bottom:1003.650000px;}
.y5f{bottom:1016.250000px;}
.ya2{bottom:1036.590000px;}
.y3{bottom:1039.650000px;}
.y154{bottom:1041.630000px;}
.y33{bottom:1057.650000px;}
.y1e{bottom:1062.690000px;}
.y153{bottom:1079.790000px;}
.y2{bottom:1080.690000px;}
.y3c{bottom:1081.050000px;}
.y131{bottom:1097.280000px;}
.y32{bottom:1099.050000px;}
.y152{bottom:1099.950000px;}
.y1{bottom:1122.090000px;}
.y3b{bottom:1140.120000px;}
.yb4{bottom:1140.300000px;}
.y31{bottom:1140.480000px;}
.y151{bottom:1141.020000px;}
.y19{bottom:1173.408000px;}
.y18{bottom:1193.208000px;}
.y1c{bottom:1194.120000px;}
.y17{bottom:1213.008000px;}
.h17{height:16.725000px;}
.h12{height:16.740000px;}
.h16{height:16.761000px;}
.h14{height:16.905000px;}
.he{height:16.920000px;}
.h2a{height:16.942500px;}
.h13{height:16.950000px;}
.h15{height:29.325000px;}
.h10{height:29.340000px;}
.h11{height:33.424102px;}
.hf{height:33.565430px;}
.h8{height:45.184219px;}
.hd{height:45.895781px;}
.h29{height:46.089844px;}
.h6{height:46.992000px;}
.h4{height:47.344922px;}
.h7{height:51.264000px;}
.ha{height:70.628906px;}
.h5{height:70.664062px;}
.h2{height:72.562500px;}
.h2b{height:74.004654px;}
.h19{height:76.824000px;}
.h3{height:80.464922px;}
.hc{height:80.608922px;}
.h1d{height:83.226000px;}
.h20{height:89.628000px;}
.h21{height:102.398424px;}
.h1b{height:102.432000px;}
.h27{height:108.834000px;}
.h1a{height:115.236000px;}
.h1f{height:121.638000px;}
.h26{height:128.040000px;}
.h28{height:243.852000px;}
.h25{height:330.480000px;}
.h1c{height:557.280000px;}
.h24{height:594.000000px;}
.h22{height:648.000000px;}
.h18{height:756.000000px;}
.h1e{height:864.000000px;}
.h23{height:1188.000000px;}
.hb{height:1262.877990px;}
.h9{height:1262.878500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w15{width:64.654500px;}
.w1b{width:75.274500px;}
.w8{width:95.040000px;}
.w19{width:105.501000px;}
.w1e{width:116.625000px;}
.w18{width:116.629500px;}
.w7{width:116.661000px;}
.w4{width:138.994500px;}
.w9{width:148.896000px;}
.w1a{width:169.365000px;}
.wa{width:169.395000px;}
.w1f{width:180.015000px;}
.w5{width:212.415000px;}
.w1c{width:222.495000px;}
.w16{width:223.039500px;}
.w17{width:318.090000px;}
.w6{width:318.315000px;}
.w1d{width:329.295000px;}
.wd{width:654.480000px;}
.wf{width:715.575000px;}
.w11{width:716.865000px;}
.w10{width:740.505000px;}
.w12{width:741.810000px;}
.wc{width:810.000000px;}
.w14{width:881.280000px;}
.w3{width:892.978125px;}
.w2{width:892.978500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w13{width:1080.000000px;}
.wb{width:1620.000000px;}
.we{width:1728.000000px;}
.x0{left:0.000000px;}
.xb{left:4.858500px;}
.x4b{left:8.805000px;}
.x5f{left:13.800000px;}
.x77{left:19.320000px;}
.x86{left:25.995000px;}
.x9{left:32.578125px;}
.x7{left:41.038500px;}
.x37{left:47.055000px;}
.x5{left:49.498500px;}
.x2{left:53.886000px;}
.x6{left:57.960000px;}
.x38{left:64.560000px;}
.x78{left:67.170000px;}
.x87{left:73.050000px;}
.x62{left:74.940000px;}
.x3{left:78.757500px;}
.x1{left:84.960000px;}
.x63{left:101.925000px;}
.x39{left:103.155000px;}
.x49{left:104.925000px;}
.x21{left:110.160000px;}
.x20{left:119.820000px;}
.x79{left:123.765000px;}
.x75{left:127.440000px;}
.x88{left:135.810000px;}
.x11{left:140.955000px;}
.x64{left:143.850000px;}
.x3a{left:144.990000px;}
.x95{left:149.266500px;}
.x76{left:153.360000px;}
.x98{left:159.885000px;}
.x22{left:161.370000px;}
.x12{left:182.475000px;}
.x65{left:185.775000px;}
.x3b{left:186.840000px;}
.x84{left:197.385000px;}
.x7a{left:217.590000px;}
.xc{left:223.605000px;}
.x3c{left:228.690000px;}
.x7b{left:255.120000px;}
.x89{left:261.360000px;}
.x13{left:265.620000px;}
.x3d{left:270.540000px;}
.x9a{left:276.885000px;}
.x4a{left:297.600000px;}
.x14{left:307.140000px;}
.x5e{left:308.835000px;}
.x7c{left:311.520000px;}
.x3e{left:313.035000px;}
.x8a{left:318.420000px;}
.x6d{left:321.930000px;}
.x36{left:331.590000px;}
.xe{left:340.635000px;}
.x15{left:348.645000px;}
.x3f{left:354.225000px;}
.x8b{left:355.500000px;}
.x94{left:359.535000px;}
.x96{left:372.675000px;}
.x99{left:382.755000px;}
.x16{left:390.270000px;}
.x40{left:396.075000px;}
.x1f{left:397.920000px;}
.x7d{left:411.600000px;}
.x6e{left:416.085000px;}
.x8c{left:418.275000px;}
.x17{left:431.790000px;}
.x10{left:434.895000px;}
.xd{left:436.395000px;}
.x41{left:439.755000px;}
.x93{left:441.390000px;}
.x7e{left:443.790000px;}
.x8d{left:449.655000px;}
.x85{left:455.625000px;}
.x18{left:473.310000px;}
.x42{left:482.550000px;}
.x7f{left:506.340000px;}
.x6f{left:510.240000px;}
.x8e{left:512.430000px;}
.x19{left:514.815000px;}
.x97{left:521.400000px;}
.x43{left:523.560000px;}
.x9b{left:532.020000px;}
.x80{left:537.885000px;}
.x8f{left:543.810000px;}
.x1a{left:556.455000px;}
.x44{left:565.380000px;}
.xf{left:585.300000px;}
.x74{left:590.250000px;}
.x1b{left:597.960000px;}
.x81{left:599.910000px;}
.x70{left:604.395000px;}
.x45{left:607.455000px;}
.x9c{left:627.765000px;}
.x82{left:637.965000px;}
.x1c{left:639.480000px;}
.x46{left:649.065000px;}
.x1d{left:681.000000px;}
.x47{left:690.825000px;}
.x83{left:694.815000px;}
.x71{left:698.535000px;}
.x90{left:700.740000px;}
.x1e{left:722.625000px;}
.x91{left:732.120000px;}
.x48{left:733.155000px;}
.xa{left:791.250000px;}
.x72{left:792.690000px;}
.x92{left:794.895000px;}
.x4{left:799.710000px;}
.x8{left:807.990000px;}
.x23{left:810.000000px;}
.x4d{left:886.125000px;}
.x24{left:894.240000px;}
.x4e{left:903.630000px;}
.x66{left:913.995000px;}
.x35{left:926.400000px;}
.x67{left:942.525000px;}
.x4f{left:943.740000px;}
.x25{left:950.955000px;}
.x61{left:972.765000px;}
.x6b{left:975.585000px;}
.x6c{left:977.400000px;}
.x73{left:981.000000px;}
.x68{left:985.905000px;}
.x50{left:987.045000px;}
.x26{left:992.475000px;}
.x60{left:999.555000px;}
.x69{left:1029.285000px;}
.x51{left:1030.350000px;}
.x27{left:1034.100000px;}
.x52{left:1073.655000px;}
.x28{left:1075.620000px;}
.x6a{left:1116.045000px;}
.x29{left:1117.140000px;}
.x2a{left:1158.645000px;}
.x53{left:1160.925000px;}
.x4c{left:1183.125000px;}
.x2b{left:1200.270000px;}
.x54{left:1203.570000px;}
.x34{left:1207.920000px;}
.x2c{left:1241.790000px;}
.x55{left:1246.875000px;}
.x2d{left:1283.310000px;}
.x56{left:1292.010000px;}
.x2e{left:1324.815000px;}
.x57{left:1336.260000px;}
.x2f{left:1366.455000px;}
.x58{left:1378.740000px;}
.x30{left:1407.960000px;}
.x59{left:1422.015000px;}
.x31{left:1449.480000px;}
.x5a{left:1465.545000px;}
.x32{left:1491.000000px;}
.x5b{left:1508.625000px;}
.x33{left:1532.625000px;}
.x5c{left:1551.840000px;}
.x5d{left:1595.610000px;}
@media print{
.v4{vertical-align:-122.346667pt;}
.v3{vertical-align:-102.293333pt;}
.v5{vertical-align:-61.333333pt;}
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.v6{vertical-align:125.706667pt;}
.ls17{letter-spacing:-0.832000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.234133pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.180267pt;}
.ls22{letter-spacing:-0.171733pt;}
.lse{letter-spacing:-0.128000pt;}
.ls21{letter-spacing:-0.102400pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.019840pt;}
.ls13{letter-spacing:0.064000pt;}
.ls20{letter-spacing:0.117867pt;}
.lsd{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.133120pt;}
.ls18{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.161280pt;}
.ls14{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.227733pt;}
.ls6{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.289280pt;}
.ls1{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls2{letter-spacing:0.480000pt;}
.ls10{letter-spacing:0.512000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.800000pt;}
.ls7{letter-spacing:0.896000pt;}
.lsa{letter-spacing:1.408000pt;}
.ls1f{letter-spacing:64.128000pt;}
.ls1e{letter-spacing:64.181333pt;}
.ls1d{letter-spacing:155.861333pt;}
.ws16{word-spacing:-42.880000pt;}
.ws21{word-spacing:-28.170667pt;}
.ws17{word-spacing:-26.688000pt;}
.ws23{word-spacing:-23.722667pt;}
.ws1a{word-spacing:-23.714891pt;}
.ws1e{word-spacing:-20.757333pt;}
.ws1d{word-spacing:-19.274667pt;}
.ws19{word-spacing:-17.792000pt;}
.ws6{word-spacing:-17.408000pt;}
.ws3{word-spacing:-16.896000pt;}
.wsd{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.512000pt;}
.ws2{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws10{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.wsf{word-spacing:-15.168000pt;}
.ws11{word-spacing:-13.534613pt;}
.ws27{word-spacing:-13.424747pt;}
.ws28{word-spacing:-13.204480pt;}
.ws29{word-spacing:-13.135147pt;}
.wse{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws9{word-spacing:-10.400000pt;}
.ws13{word-spacing:-9.710720pt;}
.ws12{word-spacing:-9.690880pt;}
.ws15{word-spacing:-9.510613pt;}
.ws14{word-spacing:-9.456747pt;}
.ws4{word-spacing:0.000000pt;}
.ws24{word-spacing:19.317333pt;}
.ws25{word-spacing:20.533333pt;}
.ws1b{word-spacing:30.944000pt;}
.ws1f{word-spacing:31.424000pt;}
.ws1c{word-spacing:39.797333pt;}
.ws20{word-spacing:40.277333pt;}
.ws22{word-spacing:94.133333pt;}
.ws26{word-spacing:96.234667pt;}
.ws18{word-spacing:97.898667pt;}
._d{margin-left:-11.957333pt;}
._c{margin-left:-9.734122pt;}
._a{margin-left:-8.544000pt;}
._8{margin-left:-7.391957pt;}
._b{margin-left:-6.282667pt;}
._7{margin-left:-5.290667pt;}
._9{margin-left:-4.255957pt;}
._4{margin-left:-3.104043pt;}
._2{margin-left:-1.962667pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.045376pt;}
._3{width:2.624043pt;}
._f{width:97.344000pt;}
._10{width:99.498667pt;}
._6{width:100.821333pt;}
._e{width:150.485333pt;}
._5{width:752.266667pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs8{font-size:74.666667pt;}
.fs9{font-size:85.305362pt;}
.fs5{font-size:85.333333pt;}
.fsb{font-size:90.666667pt;}
.fs4{font-size:96.000000pt;}
.fs7{font-size:101.333333pt;}
.fsa{font-size:106.666667pt;}
.y171{bottom:-10.080000pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:2.866667pt;}
.ybf{bottom:2.880000pt;}
.ydd{bottom:3.026667pt;}
.yc4{bottom:3.040000pt;}
.yd7{bottom:3.826667pt;}
.yc8{bottom:3.840000pt;}
.ydb{bottom:3.986667pt;}
.yc6{bottom:4.000000pt;}
.ycb{bottom:4.026667pt;}
.yc3{bottom:9.440000pt;}
.yd5{bottom:9.600000pt;}
.y14d{bottom:15.080000pt;}
.yed{bottom:15.360000pt;}
.yc1{bottom:16.000000pt;}
.y147{bottom:23.320000pt;}
.y12f{bottom:23.933333pt;}
.ye3{bottom:24.960000pt;}
.y149{bottom:26.280000pt;}
.y12d{bottom:29.120000pt;}
.y14b{bottom:30.373333pt;}
.y125{bottom:30.840000pt;}
.y129{bottom:35.946667pt;}
.y1b{bottom:36.213333pt;}
.y12b{bottom:37.173333pt;}
.y127{bottom:41.786667pt;}
.ye6{bottom:43.133333pt;}
.ye7{bottom:43.760000pt;}
.ye8{bottom:44.866667pt;}
.y123{bottom:44.933333pt;}
.yeb{bottom:44.946667pt;}
.yea{bottom:44.973333pt;}
.yec{bottom:45.173333pt;}
.ye9{bottom:45.760000pt;}
.y1a{bottom:55.413333pt;}
.y145{bottom:55.680000pt;}
.y142{bottom:58.826667pt;}
.y130{bottom:59.840000pt;}
.y138{bottom:65.186667pt;}
.y13b{bottom:65.893333pt;}
.y13a{bottom:66.600000pt;}
.y137{bottom:66.826667pt;}
.y1d{bottom:67.040000pt;}
.y150{bottom:67.072000pt;}
.y139{bottom:67.306667pt;}
.y140{bottom:67.640000pt;}
.y136{bottom:69.213333pt;}
.yf5{bottom:69.706667pt;}
.y14c{bottom:80.493333pt;}
.y12e{bottom:80.626667pt;}
.y135{bottom:82.253333pt;}
.y11e{bottom:82.560000pt;}
.y12c{bottom:83.346667pt;}
.y13c{bottom:84.786667pt;}
.y14a{bottom:90.546667pt;}
.y134{bottom:93.360000pt;}
.y11f{bottom:95.893333pt;}
.yef{bottom:97.920000pt;}
.y148{bottom:98.933333pt;}
.y3a{bottom:100.960000pt;}
.y14f{bottom:100.992000pt;}
.y12a{bottom:107.480000pt;}
.yfb{bottom:109.226667pt;}
.y144{bottom:109.773333pt;}
.yfc{bottom:109.813333pt;}
.yfd{bottom:110.853333pt;}
.y100{bottom:110.933333pt;}
.yff{bottom:110.960000pt;}
.y101{bottom:111.146667pt;}
.y102{bottom:111.280000pt;}
.yfe{bottom:111.706667pt;}
.y122{bottom:115.906667pt;}
.y51{bottom:119.200000pt;}
.y72{bottom:124.000000pt;}
.ye5{bottom:125.133333pt;}
.y181{bottom:125.152000pt;}
.y5e{bottom:128.832000pt;}
.y86{bottom:135.226667pt;}
.y16{bottom:137.946667pt;}
.y69{bottom:140.026667pt;}
.y180{bottom:144.666667pt;}
.y13f{bottom:146.960000pt;}
.y13d{bottom:148.480000pt;}
.y146{bottom:155.093333pt;}
.y13e{bottom:155.520000pt;}
.y50{bottom:156.026667pt;}
.y17f{bottom:159.546667pt;}
.y71{bottom:160.826667pt;}
.y5d{bottom:165.626667pt;}
.y124{bottom:171.613333pt;}
.y85{bottom:172.026667pt;}
.y17e{bottom:174.586667pt;}
.y15{bottom:174.746667pt;}
.y103{bottom:175.973333pt;}
.y80{bottom:176.506667pt;}
.y68{bottom:176.826667pt;}
.yb1{bottom:184.346667pt;}
.y17d{bottom:185.320000pt;}
.y4f{bottom:192.826667pt;}
.y70{bottom:197.626667pt;}
.y17c{bottom:200.360000pt;}
.y30{bottom:202.426667pt;}
.ye2{bottom:205.146667pt;}
.y84{bottom:208.826667pt;}
.y128{bottom:209.120000pt;}
.y10b{bottom:210.320000pt;}
.y14{bottom:211.546667pt;}
.y67{bottom:213.626667pt;}
.y17b{bottom:216.040000pt;}
.y5c{bottom:218.426667pt;}
.y143{bottom:219.840000pt;}
.ya1{bottom:221.146667pt;}
.y90{bottom:226.906667pt;}
.y4e{bottom:229.626667pt;}
.y17a{bottom:231.080000pt;}
.y6f{bottom:234.426667pt;}
.ye1{bottom:235.066667pt;}
.y2f{bottom:239.226667pt;}
.y133{bottom:240.880000pt;}
.y83{bottom:245.626667pt;}
.y179{bottom:245.986667pt;}
.y13{bottom:248.346667pt;}
.ye0{bottom:250.106667pt;}
.y66{bottom:250.426667pt;}
.y7b{bottom:255.226667pt;}
.ya0{bottom:257.946667pt;}
.y178{bottom:261.026667pt;}
.y8f{bottom:263.706667pt;}
.y132{bottom:263.920000pt;}
.ydf{bottom:264.986667pt;}
.y4d{bottom:266.426667pt;}
.y126{bottom:267.186667pt;}
.y141{bottom:268.826667pt;}
.y5b{bottom:271.226667pt;}
.yde{bottom:275.880000pt;}
.y2e{bottom:276.026667pt;}
.y177{bottom:276.066667pt;}
.yf6{bottom:280.840000pt;}
.y82{bottom:282.426667pt;}
.y12{bottom:285.146667pt;}
.yba{bottom:287.226667pt;}
.ydc{bottom:290.760000pt;}
.y176{bottom:291.106667pt;}
.y7a{bottom:292.026667pt;}
.y10c{bottom:292.600000pt;}
.y9f{bottom:294.746667pt;}
.y8e{bottom:300.506667pt;}
.y65{bottom:303.226667pt;}
.yda{bottom:305.800000pt;}
.y175{bottom:305.986667pt;}
.y5a{bottom:308.026667pt;}
.yf7{bottom:309.826667pt;}
.y2d{bottom:312.826667pt;}
.yb0{bottom:313.306667pt;}
.y4c{bottom:319.226667pt;}
.yd9{bottom:320.840000pt;}
.y174{bottom:321.026667pt;}
.y11{bottom:321.946667pt;}
.yb9{bottom:324.026667pt;}
.ye4{bottom:324.373333pt;}
.y79{bottom:328.826667pt;}
.y9e{bottom:331.546667pt;}
.yd6{bottom:335.880000pt;}
.y173{bottom:336.066667pt;}
.y7f{bottom:340.026667pt;}
.yf4{bottom:343.373333pt;}
.y59{bottom:344.826667pt;}
.yae{bottom:350.146667pt;}
.y172{bottom:351.106667pt;}
.yd4{bottom:351.426667pt;}
.y8d{bottom:355.746667pt;}
.y4b{bottom:356.066667pt;}
.y10{bottom:358.466667pt;}
.yb8{bottom:360.866667pt;}
.y2c{bottom:365.346667pt;}
.y170{bottom:366.626667pt;}
.yac{bottom:368.386667pt;}
.y10d{bottom:374.893333pt;}
.y7e{bottom:376.866667pt;}
.yd3{bottom:377.506667pt;}
.y78{bottom:381.666667pt;}
.yf3{bottom:386.213333pt;}
.y9d{bottom:386.946667pt;}
.y16f{bottom:392.706667pt;}
.y4a{bottom:392.866667pt;}
.y58{bottom:397.666667pt;}
.yd2{bottom:403.586667pt;}
.yab{bottom:405.186667pt;}
.yf2{bottom:407.333333pt;}
.y7d{bottom:413.666667pt;}
.y2b{bottom:418.466667pt;}
.y16e{bottom:418.786667pt;}
.y9c{bottom:423.746667pt;}
.yf1{bottom:428.453333pt;}
.y49{bottom:429.666667pt;}
.yf{bottom:432.386667pt;}
.y57{bottom:434.466667pt;}
.yd1{bottom:441.666667pt;}
.yb3{bottom:443.746667pt;}
.yf8{bottom:443.773333pt;}
.y14e{bottom:447.360000pt;}
.yf0{bottom:449.573333pt;}
.y6e{bottom:450.466667pt;}
.y16d{bottom:454.626667pt;}
.y2a{bottom:455.266667pt;}
.y10e{bottom:457.173333pt;}
.y9b{bottom:460.546667pt;}
.y106{bottom:461.746667pt;}
.y48{bottom:466.466667pt;}
.y56{bottom:471.266667pt;}
.y16c{bottom:472.546667pt;}
.ye{bottom:476.546667pt;}
.yb2{bottom:478.466667pt;}
.yaf{bottom:479.266667pt;}
.y88{bottom:482.466667pt;}
.y6d{bottom:487.266667pt;}
.y16b{bottom:490.306667pt;}
.y29{bottom:492.066667pt;}
.yaa{bottom:497.346667pt;}
.yd0{bottom:497.666667pt;}
.y47{bottom:503.266667pt;}
.yd{bottom:505.986667pt;}
.y55{bottom:508.066667pt;}
.y10a{bottom:510.026667pt;}
.ycf{bottom:512.706667pt;}
.y9a{bottom:516.066667pt;}
.y87{bottom:519.266667pt;}
.y6c{bottom:524.066667pt;}
.y109{bottom:526.693333pt;}
.y16a{bottom:526.813333pt;}
.yce{bottom:527.746667pt;}
.y11d{bottom:528.000000pt;}
.y28{bottom:528.866667pt;}
.y114{bottom:533.360000pt;}
.ya9{bottom:534.146667pt;}
.y105{bottom:539.426667pt;}
.y10f{bottom:539.453333pt;}
.y46{bottom:540.066667pt;}
.y104{bottom:540.400000pt;}
.ycd{bottom:542.626667pt;}
.yee{bottom:543.360000pt;}
.yb5{bottom:544.546667pt;}
.y54{bottom:544.866667pt;}
.y169{bottom:546.173333pt;}
.yc{bottom:549.986667pt;}
.y113{bottom:550.026667pt;}
.y99{bottom:552.866667pt;}
.ycc{bottom:553.346667pt;}
.y64{bottom:556.066667pt;}
.y108{bottom:560.040000pt;}
.y6b{bottom:560.866667pt;}
.y168{bottom:561.213333pt;}
.y27{bottom:565.666667pt;}
.yca{bottom:568.386667pt;}
.ya8{bottom:570.973333pt;}
.y112{bottom:573.426667pt;}
.y167{bottom:576.253333pt;}
.y45{bottom:576.893333pt;}
.yf9{bottom:577.733333pt;}
.yb{bottom:579.453333pt;}
.y185{bottom:581.053333pt;}
.y53{bottom:581.693333pt;}
.y107{bottom:583.440000pt;}
.yc9{bottom:583.453333pt;}
.y166{bottom:586.973333pt;}
.y98{bottom:589.693333pt;}
.y63{bottom:592.893333pt;}
.y119{bottom:593.186667pt;}
.y11c{bottom:593.893333pt;}
.y11b{bottom:594.600000pt;}
.y118{bottom:594.826667pt;}
.y11a{bottom:595.306667pt;}
.y117{bottom:597.213333pt;}
.y6a{bottom:597.693333pt;}
.yc7{bottom:598.493333pt;}
.y165{bottom:601.853333pt;}
.y77{bottom:602.493333pt;}
.ybd{bottom:608.893333pt;}
.y116{bottom:610.253333pt;}
.yc5{bottom:613.373333pt;}
.y81{bottom:613.693333pt;}
.y184{bottom:615.773333pt;}
.y164{bottom:617.533333pt;}
.y26{bottom:618.173333pt;}
.y115{bottom:621.360000pt;}
.y110{bottom:621.746667pt;}
.ya{bottom:623.613333pt;}
.ya7{bottom:626.493333pt;}
.yc2{bottom:629.053333pt;}
.y8c{bottom:629.533333pt;}
.y44{bottom:629.693333pt;}
.y163{bottom:632.573333pt;}
.y183{bottom:633.693333pt;}
.y52{bottom:634.493333pt;}
.y76{bottom:639.293333pt;}
.y97{bottom:645.053333pt;}
.ybc{bottom:645.693333pt;}
.y162{bottom:647.613333pt;}
.y7c{bottom:650.493333pt;}
.y9{bottom:653.053333pt;}
.yc0{bottom:655.133333pt;}
.y161{bottom:662.653333pt;}
.ya6{bottom:663.293333pt;}
.y182{bottom:666.333333pt;}
.y43{bottom:666.493333pt;}
.y25{bottom:671.293333pt;}
.y120{bottom:676.480000pt;}
.y160{bottom:677.533333pt;}
.yb7{bottom:679.293333pt;}
.ybe{bottom:681.213333pt;}
.y96{bottom:681.853333pt;}
.y8b{bottom:682.333333pt;}
.ybb{bottom:682.493333pt;}
.y121{bottom:683.520000pt;}
.y39{bottom:687.293333pt;}
.y75{bottom:692.093333pt;}
.y15f{bottom:692.573333pt;}
.y8{bottom:697.213333pt;}
.ya5{bottom:700.093333pt;}
.y42{bottom:703.293333pt;}
.y111{bottom:704.026667pt;}
.y15e{bottom:707.613333pt;}
.y24{bottom:708.093333pt;}
.yfa{bottom:711.680000pt;}
.y95{bottom:718.653333pt;}
.y8a{bottom:719.293333pt;}
.y15d{bottom:722.653333pt;}
.y38{bottom:724.093333pt;}
.y7{bottom:726.653333pt;}
.y15c{bottom:737.533333pt;}
.y41{bottom:740.093333pt;}
.y74{bottom:744.573333pt;}
.y23{bottom:744.893333pt;}
.y15b{bottom:752.613333pt;}
.y94{bottom:755.453333pt;}
.y89{bottom:756.093333pt;}
.y37{bottom:760.893333pt;}
.y15a{bottom:768.293333pt;}
.y6{bottom:770.813333pt;}
.yad{bottom:774.173333pt;}
.y40{bottom:776.893333pt;}
.y22{bottom:781.693333pt;}
.ya4{bottom:792.293333pt;}
.y62{bottom:792.933333pt;}
.y159{bottom:794.373333pt;}
.y73{bottom:797.413333pt;}
.y36{bottom:797.733333pt;}
.y5{bottom:799.973333pt;}
.y93{bottom:811.013333pt;}
.y3f{bottom:813.733333pt;}
.y21{bottom:818.533333pt;}
.y158{bottom:820.453333pt;}
.ya3{bottom:829.093333pt;}
.y61{bottom:829.733333pt;}
.y35{bottom:834.533333pt;}
.yb6{bottom:842.533333pt;}
.y92{bottom:847.813333pt;}
.y3e{bottom:850.533333pt;}
.y20{bottom:855.333333pt;}
.y157{bottom:856.133333pt;}
.y60{bottom:866.533333pt;}
.y156{bottom:874.053333pt;}
.y91{bottom:884.613333pt;}
.y34{bottom:887.013333pt;}
.y4{bottom:887.173333pt;}
.y3d{bottom:887.333333pt;}
.y155{bottom:891.973333pt;}
.y1f{bottom:892.133333pt;}
.y5f{bottom:903.333333pt;}
.ya2{bottom:921.413333pt;}
.y3{bottom:924.133333pt;}
.y154{bottom:925.893333pt;}
.y33{bottom:940.133333pt;}
.y1e{bottom:944.613333pt;}
.y153{bottom:959.813333pt;}
.y2{bottom:960.613333pt;}
.y3c{bottom:960.933333pt;}
.y131{bottom:975.360000pt;}
.y32{bottom:976.933333pt;}
.y152{bottom:977.733333pt;}
.y1{bottom:997.413333pt;}
.y3b{bottom:1013.440000pt;}
.yb4{bottom:1013.600000pt;}
.y31{bottom:1013.760000pt;}
.y151{bottom:1014.240000pt;}
.y19{bottom:1043.029333pt;}
.y18{bottom:1060.629333pt;}
.y1c{bottom:1061.440000pt;}
.y17{bottom:1078.229333pt;}
.h17{height:14.866667pt;}
.h12{height:14.880000pt;}
.h16{height:14.898667pt;}
.h14{height:15.026667pt;}
.he{height:15.040000pt;}
.h2a{height:15.060000pt;}
.h13{height:15.066667pt;}
.h15{height:26.066667pt;}
.h10{height:26.080000pt;}
.h11{height:29.710312pt;}
.hf{height:29.835937pt;}
.h8{height:40.163750pt;}
.hd{height:40.796250pt;}
.h29{height:40.968750pt;}
.h6{height:41.770667pt;}
.h4{height:42.084375pt;}
.h7{height:45.568000pt;}
.ha{height:62.781250pt;}
.h5{height:62.812500pt;}
.h2{height:64.500000pt;}
.h2b{height:65.781915pt;}
.h19{height:68.288000pt;}
.h3{height:71.524375pt;}
.hc{height:71.652375pt;}
.h1d{height:73.978667pt;}
.h20{height:79.669333pt;}
.h21{height:91.020821pt;}
.h1b{height:91.050667pt;}
.h27{height:96.741333pt;}
.h1a{height:102.432000pt;}
.h1f{height:108.122667pt;}
.h26{height:113.813333pt;}
.h28{height:216.757333pt;}
.h25{height:293.760000pt;}
.h1c{height:495.360000pt;}
.h24{height:528.000000pt;}
.h22{height:576.000000pt;}
.h18{height:672.000000pt;}
.h1e{height:768.000000pt;}
.h23{height:1056.000000pt;}
.hb{height:1122.558213pt;}
.h9{height:1122.558667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w15{width:57.470667pt;}
.w1b{width:66.910667pt;}
.w8{width:84.480000pt;}
.w19{width:93.778667pt;}
.w1e{width:103.666667pt;}
.w18{width:103.670667pt;}
.w7{width:103.698667pt;}
.w4{width:123.550667pt;}
.w9{width:132.352000pt;}
.w1a{width:150.546667pt;}
.wa{width:150.573333pt;}
.w1f{width:160.013333pt;}
.w5{width:188.813333pt;}
.w1c{width:197.773333pt;}
.w16{width:198.257333pt;}
.w17{width:282.746667pt;}
.w6{width:282.946667pt;}
.w1d{width:292.706667pt;}
.wd{width:581.760000pt;}
.wf{width:636.066667pt;}
.w11{width:637.213333pt;}
.w10{width:658.226667pt;}
.w12{width:659.386667pt;}
.wc{width:720.000000pt;}
.w14{width:783.360000pt;}
.w3{width:793.758333pt;}
.w2{width:793.758667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w13{width:960.000000pt;}
.wb{width:1440.000000pt;}
.we{width:1536.000000pt;}
.x0{left:0.000000pt;}
.xb{left:4.318667pt;}
.x4b{left:7.826667pt;}
.x5f{left:12.266667pt;}
.x77{left:17.173333pt;}
.x86{left:23.106667pt;}
.x9{left:28.958333pt;}
.x7{left:36.478667pt;}
.x37{left:41.826667pt;}
.x5{left:43.998667pt;}
.x2{left:47.898667pt;}
.x6{left:51.520000pt;}
.x38{left:57.386667pt;}
.x78{left:59.706667pt;}
.x87{left:64.933333pt;}
.x62{left:66.613333pt;}
.x3{left:70.006667pt;}
.x1{left:75.520000pt;}
.x63{left:90.600000pt;}
.x39{left:91.693333pt;}
.x49{left:93.266667pt;}
.x21{left:97.920000pt;}
.x20{left:106.506667pt;}
.x79{left:110.013333pt;}
.x75{left:113.280000pt;}
.x88{left:120.720000pt;}
.x11{left:125.293333pt;}
.x64{left:127.866667pt;}
.x3a{left:128.880000pt;}
.x95{left:132.681333pt;}
.x76{left:136.320000pt;}
.x98{left:142.120000pt;}
.x22{left:143.440000pt;}
.x12{left:162.200000pt;}
.x65{left:165.133333pt;}
.x3b{left:166.080000pt;}
.x84{left:175.453333pt;}
.x7a{left:193.413333pt;}
.xc{left:198.760000pt;}
.x3c{left:203.280000pt;}
.x7b{left:226.773333pt;}
.x89{left:232.320000pt;}
.x13{left:236.106667pt;}
.x3d{left:240.480000pt;}
.x9a{left:246.120000pt;}
.x4a{left:264.533333pt;}
.x14{left:273.013333pt;}
.x5e{left:274.520000pt;}
.x7c{left:276.906667pt;}
.x3e{left:278.253333pt;}
.x8a{left:283.040000pt;}
.x6d{left:286.160000pt;}
.x36{left:294.746667pt;}
.xe{left:302.786667pt;}
.x15{left:309.906667pt;}
.x3f{left:314.866667pt;}
.x8b{left:316.000000pt;}
.x94{left:319.586667pt;}
.x96{left:331.266667pt;}
.x99{left:340.226667pt;}
.x16{left:346.906667pt;}
.x40{left:352.066667pt;}
.x1f{left:353.706667pt;}
.x7d{left:365.866667pt;}
.x6e{left:369.853333pt;}
.x8c{left:371.800000pt;}
.x17{left:383.813333pt;}
.x10{left:386.573333pt;}
.xd{left:387.906667pt;}
.x41{left:390.893333pt;}
.x93{left:392.346667pt;}
.x7e{left:394.480000pt;}
.x8d{left:399.693333pt;}
.x85{left:405.000000pt;}
.x18{left:420.720000pt;}
.x42{left:428.933333pt;}
.x7f{left:450.080000pt;}
.x6f{left:453.546667pt;}
.x8e{left:455.493333pt;}
.x19{left:457.613333pt;}
.x97{left:463.466667pt;}
.x43{left:465.386667pt;}
.x9b{left:472.906667pt;}
.x80{left:478.120000pt;}
.x8f{left:483.386667pt;}
.x1a{left:494.626667pt;}
.x44{left:502.560000pt;}
.xf{left:520.266667pt;}
.x74{left:524.666667pt;}
.x1b{left:531.520000pt;}
.x81{left:533.253333pt;}
.x70{left:537.240000pt;}
.x45{left:539.960000pt;}
.x9c{left:558.013333pt;}
.x82{left:567.080000pt;}
.x1c{left:568.426667pt;}
.x46{left:576.946667pt;}
.x1d{left:605.333333pt;}
.x47{left:614.066667pt;}
.x83{left:617.613333pt;}
.x71{left:620.920000pt;}
.x90{left:622.880000pt;}
.x1e{left:642.333333pt;}
.x91{left:650.773333pt;}
.x48{left:651.693333pt;}
.xa{left:703.333333pt;}
.x72{left:704.613333pt;}
.x92{left:706.573333pt;}
.x4{left:710.853333pt;}
.x8{left:718.213333pt;}
.x23{left:720.000000pt;}
.x4d{left:787.666667pt;}
.x24{left:794.880000pt;}
.x4e{left:803.226667pt;}
.x66{left:812.440000pt;}
.x35{left:823.466667pt;}
.x67{left:837.800000pt;}
.x4f{left:838.880000pt;}
.x25{left:845.293333pt;}
.x61{left:864.680000pt;}
.x6b{left:867.186667pt;}
.x6c{left:868.800000pt;}
.x73{left:872.000000pt;}
.x68{left:876.360000pt;}
.x50{left:877.373333pt;}
.x26{left:882.200000pt;}
.x60{left:888.493333pt;}
.x69{left:914.920000pt;}
.x51{left:915.866667pt;}
.x27{left:919.200000pt;}
.x52{left:954.360000pt;}
.x28{left:956.106667pt;}
.x6a{left:992.040000pt;}
.x29{left:993.013333pt;}
.x2a{left:1029.906667pt;}
.x53{left:1031.933333pt;}
.x4c{left:1051.666667pt;}
.x2b{left:1066.906667pt;}
.x54{left:1069.840000pt;}
.x34{left:1073.706667pt;}
.x2c{left:1103.813333pt;}
.x55{left:1108.333333pt;}
.x2d{left:1140.720000pt;}
.x56{left:1148.453333pt;}
.x2e{left:1177.613333pt;}
.x57{left:1187.786667pt;}
.x2f{left:1214.626667pt;}
.x58{left:1225.546667pt;}
.x30{left:1251.520000pt;}
.x59{left:1264.013333pt;}
.x31{left:1288.426667pt;}
.x5a{left:1302.706667pt;}
.x32{left:1325.333333pt;}
.x5b{left:1341.000000pt;}
.x33{left:1362.333333pt;}
.x5c{left:1379.413333pt;}
.x5d{left:1418.320000pt;}
}




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