
    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_b7814e21f8cb5957f8aa0d51.woff')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_8fe81de661672af96ed8e906.woff')format("woff");}.ff2{font-family:ff2;line-height:1.091797;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_d8d25d019926bc6d109cafd7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.708008;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_8e1c01b7ab7ffaf69e9431bc.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_8bad7f69b6a7411915fa25d3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.708008;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_0e4c7a623c17971d4fcbbae8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.927246;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_e4fc03e1fc6ad0d3788262cc.woff')format("woff");}.ffa{font-family:ffa;line-height:1.091797;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_a0fb044ec07d281294ef1a3c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.927246;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_b2676b1d5efeee423b0ef314.woff')format("woff");}.ffc{font-family:ffc;line-height:0.767578;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_219e1de66a0546322d0bae81.woff')format("woff");}.ffd{font-family:ffd;line-height:1.087891;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;}
.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);}
.v2{vertical-align:-67.680000px;}
.v3{vertical-align:-61.920000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-22.620000px;}
.ls2e{letter-spacing:-19.320000px;}
.ls45{letter-spacing:-19.140000px;}
.ls21{letter-spacing:-18.240000px;}
.ls20{letter-spacing:-17.520000px;}
.ls31{letter-spacing:-16.800000px;}
.ls12{letter-spacing:-16.080000px;}
.ls11{letter-spacing:-15.360000px;}
.ls43{letter-spacing:-14.160000px;}
.lsd{letter-spacing:-13.920000px;}
.ls26{letter-spacing:-13.200000px;}
.ls2d{letter-spacing:-12.480000px;}
.ls25{letter-spacing:-11.760000px;}
.ls24{letter-spacing:-11.040000px;}
.ls13{letter-spacing:-10.320000px;}
.ls15{letter-spacing:-9.600000px;}
.ls1c{letter-spacing:-8.880000px;}
.ls1a{letter-spacing:-8.160000px;}
.ls1b{letter-spacing:-7.440000px;}
.ls1f{letter-spacing:-6.720000px;}
.ls23{letter-spacing:-5.976000px;}
.ls17{letter-spacing:-5.256000px;}
.ls18{letter-spacing:-4.536000px;}
.ls19{letter-spacing:-3.816000px;}
.ls2a{letter-spacing:-3.096000px;}
.ls1d{letter-spacing:-2.376000px;}
.ls2c{letter-spacing:-1.656000px;}
.ls1e{letter-spacing:-0.936000px;}
.ls36{letter-spacing:-0.648000px;}
.ls2b{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.ls40{letter-spacing:-0.092400px;}
.ls3f{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000001px;}
.ls39{letter-spacing:0.000003px;}
.ls1{letter-spacing:0.020160px;}
.ls3d{letter-spacing:0.027360px;}
.ls14{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.216000px;}
.ls3e{letter-spacing:0.233280px;}
.ls44{letter-spacing:0.233400px;}
.lsa{letter-spacing:0.288000px;}
.ls42{letter-spacing:0.305280px;}
.ls2f{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.504000px;}
.ls38{letter-spacing:0.576000px;}
.ls7{letter-spacing:0.738000px;}
.ls0{letter-spacing:0.740160px;}
.ls29{letter-spacing:1.224000px;}
.ls35{letter-spacing:1.944000px;}
.ls28{letter-spacing:2.664000px;}
.ls27{letter-spacing:3.384000px;}
.ls3a{letter-spacing:5.544000px;}
.ls32{letter-spacing:7.680000px;}
.ls33{letter-spacing:8.400000px;}
.ls22{letter-spacing:12.000000px;}
.ls2{letter-spacing:28.920000px;}
.ls3c{letter-spacing:35.561280px;}
.ls34{letter-spacing:185.724000px;}
.ls3b{letter-spacing:231.804000px;}
.ls37{letter-spacing:314.604000px;}
.ls41{letter-spacing:466.524000px;}
.ls30{letter-spacing:536.364000px;}
.ls10{letter-spacing:571.644000px;}
.ls9{letter-spacing:837.876000px;}
.ls4{letter-spacing:844.104000px;}
.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;}
}
.ws7{word-spacing:-30.024000px;}
.ws16{word-spacing:-20.592000px;}
.wsa{word-spacing:-20.520000px;}
.ws18{word-spacing:-20.304000px;}
.wsb{word-spacing:-20.232000px;}
.wsc{word-spacing:-20.160000px;}
.wsd{word-spacing:-20.088000px;}
.ws17{word-spacing:-20.016003px;}
.ws8{word-spacing:-20.016000px;}
.ws19{word-spacing:-19.944000px;}
.wse{word-spacing:-19.872000px;}
.ws9{word-spacing:-19.800000px;}
.wsf{word-spacing:-19.728000px;}
.ws11{word-spacing:-19.584000px;}
.ws15{word-spacing:-19.368000px;}
.ws13{word-spacing:-19.080000px;}
.ws1d{word-spacing:-18.414720px;}
.ws12{word-spacing:-15.048000px;}
.ws10{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.904000px;}
.ws5{word-spacing:-14.832000px;}
.ws1{word-spacing:-14.616000px;}
.ws4{word-spacing:-14.328000px;}
.ws1c{word-spacing:-13.446720px;}
.ws1a{word-spacing:-13.354320px;}
.ws2{word-spacing:-9.215280px;}
.ws3{word-spacing:-8.497440px;}
.ws0{word-spacing:-8.477280px;}
.ws1b{word-spacing:-0.066240px;}
.ws6{word-spacing:0.000000px;}
._106{margin-left:-2231.424000px;}
._c8{margin-left:-1179.192000px;}
._c6{margin-left:-992.400000px;}
._103{margin-left:-980.160000px;}
._10a{margin-left:-959.983680px;}
._c7{margin-left:-691.312320px;}
._c9{margin-left:-528.036000px;}
._102{margin-left:-520.956000px;}
._11{margin-left:-506.592000px;}
._fc{margin-left:-488.976000px;}
._10{margin-left:-480.936000px;}
._eb{margin-left:-475.524000px;}
._100{margin-left:-461.088000px;}
._ec{margin-left:-454.824000px;}
._c4{margin-left:-441.564000px;}
._120{margin-left:-436.280640px;}
._101{margin-left:-430.344000px;}
._fe{margin-left:-415.584000px;}
._fb{margin-left:-407.652000px;}
._119{margin-left:-404.640000px;}
._fd{margin-left:-402.288000px;}
._118{margin-left:-397.260000px;}
._d5{margin-left:-396.036000px;}
._113{margin-left:-394.456320px;}
._5{margin-left:-393.444000px;}
._10b{margin-left:-392.136000px;}
._fa{margin-left:-390.679680px;}
._9{margin-left:-385.416000px;}
._8{margin-left:-384.120000px;}
._f9{margin-left:-380.664000px;}
._116{margin-left:-378.072000px;}
._a{margin-left:-377.064000px;}
._11b{margin-left:-374.760000px;}
._7{margin-left:-369.024000px;}
._f8{margin-left:-366.840000px;}
._107{margin-left:-356.232000px;}
._b2{margin-left:-354.456000px;}
._f7{margin-left:-352.788000px;}
._11a{margin-left:-351.427680px;}
._dd{margin-left:-349.716000px;}
._a2{margin-left:-348.048000px;}
._c{margin-left:-346.392000px;}
._b{margin-left:-345.252000px;}
._f5{margin-left:-343.368000px;}
._a1{margin-left:-342.132000px;}
._ea{margin-left:-340.848000px;}
._10e{margin-left:-339.432000px;}
._f2{margin-left:-338.335680px;}
._10d{margin-left:-335.232000px;}
._ee{margin-left:-333.408000px;}
._bb{margin-left:-329.832000px;}
._d9{margin-left:-327.816000px;}
._d7{margin-left:-325.824000px;}
._db{margin-left:-323.892000px;}
._111{margin-left:-322.612320px;}
._ba{margin-left:-321.012000px;}
._e2{margin-left:-319.980000px;}
._84{margin-left:-318.240000px;}
._c1{margin-left:-316.800000px;}
._f6{margin-left:-315.576000px;}
._83{margin-left:-312.840000px;}
._d6{margin-left:-311.832000px;}
._88{margin-left:-309.312000px;}
._a4{margin-left:-308.208000px;}
._9f{margin-left:-306.576000px;}
._89{margin-left:-304.752000px;}
._87{margin-left:-302.952000px;}
._11f{margin-left:-301.807680px;}
._9d{margin-left:-300.756000px;}
._10c{margin-left:-299.580000px;}
._93{margin-left:-298.080000px;}
._4{margin-left:-296.100000px;}
._22{margin-left:-294.156000px;}
._48{margin-left:-293.124000px;}
._85{margin-left:-291.672000px;}
._f4{margin-left:-290.628000px;}
._92{margin-left:-289.608000px;}
._80{margin-left:-288.144000px;}
._8b{margin-left:-285.972000px;}
._cc{margin-left:-284.688000px;}
._31{margin-left:-282.924000px;}
._21{margin-left:-281.352000px;}
._68{margin-left:-279.924000px;}
._bc{margin-left:-278.748000px;}
._c2{margin-left:-277.308000px;}
._7e{margin-left:-276.000000px;}
._aa{margin-left:-274.608000px;}
._23{margin-left:-273.600000px;}
._3{margin-left:-272.388000px;}
._e8{margin-left:-271.200000px;}
._9c{margin-left:-270.120000px;}
._37{margin-left:-268.908000px;}
._8e{margin-left:-267.672000px;}
._8f{margin-left:-265.824000px;}
._36{margin-left:-264.744000px;}
._53{margin-left:-263.376000px;}
._20{margin-left:-262.200000px;}
._47{margin-left:-260.868000px;}
._76{margin-left:-259.704000px;}
._25{margin-left:-258.624000px;}
._90{margin-left:-257.040000px;}
._bf{margin-left:-255.996000px;}
._6c{margin-left:-254.952000px;}
._2{margin-left:-253.908000px;}
._7f{margin-left:-252.096000px;}
._91{margin-left:-250.296000px;}
._54{margin-left:-248.352000px;}
._7c{margin-left:-246.864000px;}
._e6{margin-left:-245.604000px;}
._30{margin-left:-244.548000px;}
._58{margin-left:-243.072000px;}
._62{margin-left:-241.152000px;}
._81{margin-left:-239.664000px;}
._24{margin-left:-237.816000px;}
._56{margin-left:-236.556000px;}
._28{margin-left:-235.512000px;}
._d0{margin-left:-234.396000px;}
._65{margin-left:-233.256000px;}
._95{margin-left:-231.492000px;}
._1f{margin-left:-230.472000px;}
._14{margin-left:-229.464000px;}
._51{margin-left:-228.120000px;}
._b0{margin-left:-226.584000px;}
._112{margin-left:-225.552000px;}
._b9{margin-left:-224.448000px;}
._2f{margin-left:-223.416000px;}
._13{margin-left:-221.976000px;}
._1e{margin-left:-220.536000px;}
._5d{margin-left:-219.384000px;}
._26{margin-left:-218.376000px;}
._99{margin-left:-217.368000px;}
._5f{margin-left:-215.952000px;}
._8a{margin-left:-214.680000px;}
._73{margin-left:-213.000000px;}
._1c{margin-left:-211.896000px;}
._9e{margin-left:-210.888000px;}
._50{margin-left:-209.664000px;}
._42{margin-left:-208.440000px;}
._61{margin-left:-206.568000px;}
._a0{margin-left:-204.972000px;}
._7b{margin-left:-203.844000px;}
._8d{margin-left:-202.644000px;}
._66{margin-left:-200.832000px;}
._27{margin-left:-199.080000px;}
._55{margin-left:-197.676000px;}
._33{margin-left:-195.936000px;}
._72{margin-left:-194.436000px;}
._60{margin-left:-193.308000px;}
._1d{margin-left:-191.592000px;}
._4f{margin-left:-189.720000px;}
._1b{margin-left:-188.064000px;}
._71{margin-left:-186.756000px;}
._32{margin-left:-185.256000px;}
._3c{margin-left:-183.636000px;}
._5e{margin-left:-182.592000px;}
._f{margin-left:-181.440000px;}
._be{margin-left:-180.040320px;}
._75{margin-left:-179.028000px;}
._1a{margin-left:-177.588000px;}
._e{margin-left:-175.896000px;}
._3d{margin-left:-174.012000px;}
._41{margin-left:-172.824000px;}
._44{margin-left:-171.396000px;}
._2b{margin-left:-169.632000px;}
._12{margin-left:-168.480000px;}
._3f{margin-left:-167.004000px;}
._4e{margin-left:-165.240000px;}
._c0{margin-left:-163.788000px;}
._2c{margin-left:-162.576000px;}
._ab{margin-left:-160.644000px;}
._45{margin-left:-159.120000px;}
._19{margin-left:-157.896000px;}
._d2{margin-left:-156.696000px;}
._35{margin-left:-155.124000px;}
._59{margin-left:-153.792000px;}
._40{margin-left:-152.352000px;}
._11c{margin-left:-151.296000px;}
._2d{margin-left:-150.264000px;}
._e7{margin-left:-149.232000px;}
._63{margin-left:-148.224000px;}
._97{margin-left:-146.976000px;}
._4d{margin-left:-145.236000px;}
._29{margin-left:-144.216000px;}
._b4{margin-left:-143.148000px;}
._4b{margin-left:-141.336000px;}
._4a{margin-left:-139.536000px;}
._d4{margin-left:-138.408000px;}
._6d{margin-left:-136.740000px;}
._2e{margin-left:-135.576000px;}
._64{margin-left:-134.268000px;}
._67{margin-left:-132.492000px;}
._57{margin-left:-130.992000px;}
._82{margin-left:-129.852000px;}
._a8{margin-left:-128.784000px;}
._96{margin-left:-127.764000px;}
._70{margin-left:-125.952000px;}
._46{margin-left:-124.056000px;}
._115{margin-left:-122.964000px;}
._18{margin-left:-121.896000px;}
._b6{margin-left:-120.204000px;}
._49{margin-left:-119.196000px;}
._d1{margin-left:-117.456000px;}
._6e{margin-left:-116.352000px;}
._b3{margin-left:-115.104000px;}
._a7{margin-left:-113.484000px;}
._d{margin-left:-112.032000px;}
._b5{margin-left:-111.000000px;}
._9b{margin-left:-109.752000px;}
._ff{margin-left:-108.552000px;}
._5a{margin-left:-107.496000px;}
._dc{margin-left:-106.344000px;}
._39{margin-left:-105.240000px;}
._d8{margin-left:-104.196000px;}
._78{margin-left:-102.864000px;}
._4c{margin-left:-101.160000px;}
._ac{margin-left:-99.192000px;}
._74{margin-left:-97.896000px;}
._3b{margin-left:-96.624000px;}
._38{margin-left:-94.992000px;}
._a5{margin-left:-93.732000px;}
._94{margin-left:-92.628000px;}
._6b{margin-left:-90.720000px;}
._6f{margin-left:-89.412000px;}
._e1{margin-left:-88.272000px;}
._9a{margin-left:-87.060000px;}
._3a{margin-left:-85.680000px;}
._ae{margin-left:-84.672000px;}
._5b{margin-left:-83.088000px;}
._79{margin-left:-81.720000px;}
._6a{margin-left:-80.160000px;}
._b8{margin-left:-77.664000px;}
._34{margin-left:-76.536000px;}
._5c{margin-left:-74.448000px;}
._da{margin-left:-72.840000px;}
._8c{margin-left:-71.784000px;}
._e5{margin-left:-69.840000px;}
._11e{margin-left:-68.623680px;}
._ad{margin-left:-67.488000px;}
._f3{margin-left:-66.067680px;}
._af{margin-left:-64.728000px;}
._16{margin-left:-63.216000px;}
._110{margin-left:-62.088000px;}
._cd{margin-left:-60.912000px;}
._df{margin-left:-59.256000px;}
._c5{margin-left:-57.576000px;}
._3e{margin-left:-55.656000px;}
._e4{margin-left:-54.571680px;}
._15{margin-left:-52.728000px;}
._17{margin-left:-51.192000px;}
._cb{margin-left:-49.732320px;}
._bd{margin-left:-48.588000px;}
._ce{margin-left:-47.460000px;}
._ca{margin-left:-45.852000px;}
._c3{margin-left:-44.784000px;}
._10f{margin-left:-43.536000px;}
._98{margin-left:-42.204000px;}
._7a{margin-left:-40.272000px;}
._e9{margin-left:-38.460000px;}
._e0{margin-left:-36.816000px;}
._cf{margin-left:-34.296000px;}
._114{margin-left:-32.256000px;}
._f1{margin-left:-30.696000px;}
._6{margin-left:-29.268000px;}
._ef{margin-left:-27.072000px;}
._f0{margin-left:-25.968000px;}
._de{margin-left:-24.612000px;}
._11d{margin-left:-23.472000px;}
._2a{margin-left:-20.736000px;}
._52{margin-left:-19.296000px;}
._108{margin-left:-18.232320px;}
._77{margin-left:-16.416000px;}
._7d{margin-left:-15.336000px;}
._43{margin-left:-13.584000px;}
._b7{margin-left:-12.468000px;}
._69{margin-left:-10.296000px;}
._117{margin-left:-9.295680px;}
._a3{margin-left:-8.196000px;}
._a9{margin-left:-6.828000px;}
._86{margin-left:-5.256000px;}
._ed{margin-left:-4.075680px;}
._a6{margin-left:-3.000000px;}
._0{margin-left:-1.080000px;}
._1{width:1.572000px;}
._e3{width:3.120000px;}
._109{width:5.479680px;}
._d3{width:7.816320px;}
._105{width:9.072000px;}
._104{width:10.296000px;}
._b1{width:11.952000px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y8b{bottom:121.896000px;}
.yd4{bottom:124.056000px;}
.ye7{bottom:126.036000px;}
.y9f{bottom:132.336000px;}
.ybd{bottom:135.216000px;}
.y4b{bottom:135.756000px;}
.y68{bottom:142.056000px;}
.y8a{bottom:147.276000px;}
.ye6{bottom:149.256000px;}
.yd3{bottom:149.616000px;}
.y9e{bottom:157.890000px;}
.ybc{bottom:160.590000px;}
.y67{bottom:167.430000px;}
.ye5{bottom:172.650000px;}
.y89{bottom:172.830000px;}
.y4a{bottom:173.190000px;}
.yd2{bottom:174.990000px;}
.y2f{bottom:177.870000px;}
.y9d{bottom:183.270000px;}
.ybb{bottom:186.150000px;}
.y66{bottom:192.810000px;}
.ye4{bottom:196.230000px;}
.y88{bottom:198.210000px;}
.yd1{bottom:200.370000px;}
.y49{bottom:210.630000px;}
.yba{bottom:211.530000px;}
.y87{bottom:223.770000px;}
.y9c{bottom:226.110000px;}
.y2e{bottom:228.090000px;}
.ye3{bottom:231.510000px;}
.y65{bottom:235.650000px;}
.yb9{bottom:237.090000px;}
.yd0{bottom:243.210000px;}
.y48{bottom:246.630000px;}
.y86{bottom:249.150000px;}
.y9b{bottom:251.490000px;}
.ye2{bottom:254.910000px;}
.y64{bottom:261.030000px;}
.yb8{bottom:262.470000px;}
.ycf{bottom:268.590000px;}
.y47{bottom:272.010000px;}
.y2d{bottom:273.990000px;}
.y85{bottom:274.530000px;}
.y9a{bottom:276.870000px;}
.ye1{bottom:278.130000px;}
.yb7{bottom:287.850000px;}
.yce{bottom:294.150000px;}
.y84{bottom:300.090000px;}
.y99{bottom:302.430000px;}
.y63{bottom:303.690000px;}
.y46{bottom:309.450000px;}
.y2c{bottom:311.430000px;}
.ye0{bottom:314.310000px;}
.ycd{bottom:319.530000px;}
.y83{bottom:325.470000px;}
.yb6{bottom:330.690000px;}
.y2b{bottom:337.035000px;}
.y98{bottom:339.915000px;}
.ycc{bottom:345.135000px;}
.y62{bottom:346.575000px;}
.y45{bottom:346.935000px;}
.y82{bottom:351.075000px;}
.ydf{bottom:351.975000px;}
.yb5{bottom:354.675000px;}
.ycb{bottom:370.515000px;}
.y61{bottom:372.135000px;}
.y2a{bottom:374.475000px;}
.y97{bottom:375.915000px;}
.y81{bottom:376.455000px;}
.yb4{bottom:380.235000px;}
.y44{bottom:384.375000px;}
.yde{bottom:389.415000px;}
.yca{bottom:395.895000px;}
.y60{bottom:397.335000px;}
.y29{bottom:399.855000px;}
.yb3{bottom:405.615000px;}
.y80{bottom:412.455000px;}
.y96{bottom:413.355000px;}
.y43{bottom:420.375000px;}
.yc9{bottom:421.455000px;}
.y28{bottom:425.235000px;}
.ydd{bottom:426.855000px;}
.yb2{bottom:430.995000px;}
.y7f{bottom:437.835000px;}
.y95{bottom:438.735000px;}
.y5f{bottom:440.355000px;}
.y42{bottom:445.935000px;}
.yc8{bottom:446.835000px;}
.y27{bottom:450.795000px;}
.yb1{bottom:456.555000px;}
.y94{bottom:464.295000px;}
.y5e{bottom:465.735000px;}
.yc7{bottom:472.395000px;}
.y7e{bottom:475.275000px;}
.y41{bottom:481.935000px;}
.y26{bottom:488.235000px;}
.y93{bottom:489.675000px;}
.y5d{bottom:491.115000px;}
.yc6{bottom:497.775000px;}
.y40{bottom:507.315000px;}
.y7d{bottom:512.715000px;}
.y25{bottom:513.615000px;}
.y92{bottom:515.055000px;}
.ydc{bottom:515.235000px;}
.y5c{bottom:516.675000px;}
.yc5{bottom:523.155000px;}
.yb0{bottom:524.775000px;}
.y7c{bottom:538.275000px;}
.y24{bottom:539.175000px;}
.y91{bottom:540.615000px;}
.y5b{bottom:542.055000px;}
.y3f{bottom:544.755000px;}
.yaf{bottom:548.715000px;}
.y7b{bottom:563.655000px;}
.y23{bottom:564.555000px;}
.y5a{bottom:565.995000px;}
.yae{bottom:574.095000px;}
.y3e{bottom:580.755000px;}
.y7a{bottom:589.215000px;}
.ydb{bottom:590.115000px;}
.y59{bottom:591.555000px;}
.yad{bottom:599.655000px;}
.y22{bottom:601.995000px;}
.y3d{bottom:606.165000px;}
.y79{bottom:614.625000px;}
.yda{bottom:615.525000px;}
.yac{bottom:624.885000px;}
.yc4{bottom:625.065000px;}
.y21{bottom:627.585000px;}
.y58{bottom:629.025000px;}
.yf5{bottom:638.205000px;}
.y11{bottom:640.905000px;}
.y3c{bottom:642.165000px;}
.yc3{bottom:650.445000px;}
.y78{bottom:652.065000px;}
.y20{bottom:652.965000px;}
.y57{bottom:654.405000px;}
.yd9{bottom:666.465000px;}
.y3b{bottom:667.725000px;}
.yf4{bottom:674.925000px;}
.yc2{bottom:676.005000px;}
.y77{bottom:677.445000px;}
.y10{bottom:678.345000px;}
.y90{bottom:679.785000px;}
.y56{bottom:679.965000px;}
.yd8{bottom:691.845000px;}
.yab{bottom:693.285000px;}
.yf3{bottom:698.325000px;}
.yc1{bottom:701.385000px;}
.y76{bottom:703.005000px;}
.y3a{bottom:703.545000px;}
.yf{bottom:703.905000px;}
.y55{bottom:705.345000px;}
.yd7{bottom:717.225000px;}
.yaa{bottom:718.665000px;}
.y75{bottom:728.385000px;}
.y39{bottom:729.105000px;}
.ye{bottom:729.285000px;}
.y54{bottom:730.725000px;}
.yf2{bottom:733.605000px;}
.y1f{bottom:741.345000px;}
.yd6{bottom:742.785000px;}
.yc0{bottom:744.045000px;}
.ya9{bottom:744.225000px;}
.y74{bottom:752.325000px;}
.yd{bottom:754.845000px;}
.y53{bottom:756.285000px;}
.yf1{bottom:757.005000px;}
.y38{bottom:766.545000px;}
.y1e{bottom:766.725000px;}
.y8f{bottom:768.165000px;}
.ya8{bottom:769.605000px;}
.yc{bottom:780.225000px;}
.y52{bottom:781.665000px;}
.ybf{bottom:786.885000px;}
.y73{bottom:789.765000px;}
.y1d{bottom:792.285000px;}
.y8e{bottom:793.725000px;}
.y37{bottom:802.545000px;}
.yb{bottom:805.605000px;}
.y51{bottom:807.225000px;}
.ya7{bottom:812.445000px;}
.y72{bottom:815.325000px;}
.yf0{bottom:815.685000px;}
.y1c{bottom:817.665000px;}
.y8d{bottom:819.105000px;}
.y36{bottom:827.925000px;}
.ya{bottom:831.165000px;}
.y50{bottom:832.605000px;}
.ya6{bottom:837.825000px;}
.y71{bottom:840.705000px;}
.y1b{bottom:843.045000px;}
.y8c{bottom:844.485000px;}
.yef{bottom:850.965000px;}
.y9{bottom:856.545000px;}
.ya5{bottom:863.205000px;}
.y35{bottom:863.925000px;}
.y70{bottom:866.265000px;}
.y1a{bottom:868.605000px;}
.y4f{bottom:870.045000px;}
.yee{bottom:874.410000px;}
.y8{bottom:882.150000px;}
.ya4{bottom:888.810000px;}
.y34{bottom:889.350000px;}
.y6f{bottom:891.690000px;}
.y19{bottom:894.030000px;}
.yd5{bottom:906.090000px;}
.y7{bottom:907.530000px;}
.yed{bottom:909.690000px;}
.ya3{bottom:914.190000px;}
.y6e{bottom:915.630000px;}
.y4e{bottom:919.590000px;}
.y33{bottom:926.790000px;}
.y18{bottom:931.470000px;}
.yec{bottom:933.090000px;}
.ybe{bottom:939.570000px;}
.ya2{bottom:939.750000px;}
.y6{bottom:944.970000px;}
.y6d{bottom:953.070000px;}
.y17{bottom:957.030000px;}
.y32{bottom:964.410000px;}
.ya1{bottom:965.130000px;}
.yeb{bottom:968.370000px;}
.y5{bottom:970.350000px;}
.y16{bottom:982.410000px;}
.y6c{bottom:990.510000px;}
.yea{bottom:991.590000px;}
.y4{bottom:995.910000px;}
.y31{bottom:1000.230000px;}
.y15{bottom:1007.790000px;}
.ye9{bottom:1014.990000px;}
.ya0{bottom:1015.890000px;}
.y4d{bottom:1021.290000px;}
.y6b{bottom:1027.950000px;}
.y14{bottom:1033.350000px;}
.y3{bottom:1037.670000px;}
.y30{bottom:1039.830000px;}
.y4c{bottom:1046.850000px;}
.ye8{bottom:1050.270000px;}
.y6a{bottom:1053.510000px;}
.y13{bottom:1058.730000px;}
.y2{bottom:1075.830000px;}
.y69{bottom:1078.890000px;}
.y12{bottom:1084.290000px;}
.y1{bottom:1101.210000px;}
.h7{height:52.417969px;}
.h9{height:57.410156px;}
.h8{height:57.457266px;}
.h2{height:62.402344px;}
.h4{height:62.507812px;}
.h6{height:78.626953px;}
.h5{height:93.603516px;}
.h3{height:93.761719px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:108.035987px;}
.x3{left:135.035987px;}
.x4{left:162.029987px;}
.x39{left:182.009987px;}
.x6{left:405.974987px;}
.x7{left:516.704987px;}
.x1{left:629.204987px;}
.x45{left:647.024987px;}
.x49{left:653.684987px;}
.x3e{left:655.124987px;}
.x25{left:657.869987px;}
.x37{left:660.029987px;}
.x26{left:663.809987px;}
.x33{left:667.229987px;}
.x48{left:669.569987px;}
.x3d{left:670.649987px;}
.x3b{left:672.269987px;}
.x46{left:673.889987px;}
.x32{left:677.129987px;}
.x24{left:678.389987px;}
.x34{left:679.469987px;}
.x21{left:680.909987px;}
.x43{left:682.169987px;}
.x22{left:683.789987px;}
.x23{left:686.129987px;}
.x3a{left:688.469987px;}
.x40{left:690.269987px;}
.x35{left:691.529987px;}
.x3c{left:692.789987px;}
.x5{left:694.229987px;}
.x38{left:696.029987px;}
.x36{left:697.109987px;}
.x44{left:698.549987px;}
.x41{left:700.169987px;}
.x42{left:702.149987px;}
.x47{left:705.029987px;}
.x1f{left:707.729987px;}
.x30{left:709.169987px;}
.x31{left:710.609987px;}
.x17{left:714.029987px;}
.x3f{left:716.729987px;}
.x27{left:719.789987px;}
.x15{left:723.749987px;}
.x29{left:725.369987px;}
.x2b{left:726.629987px;}
.x19{left:728.789987px;}
.xb{left:730.049987px;}
.x12{left:731.669987px;}
.x28{left:733.289987px;}
.x1b{left:734.729987px;}
.x16{left:736.349987px;}
.x2a{left:737.609987px;}
.xd{left:739.409987px;}
.x1e{left:740.489987px;}
.x13{left:741.929987px;}
.x11{left:743.189987px;}
.x2d{left:744.629987px;}
.x14{left:745.709987px;}
.x9{left:746.789987px;}
.x2e{left:747.869987px;}
.x20{left:749.129987px;}
.x2f{left:750.569987px;}
.xc{left:751.829987px;}
.xe{left:752.909987px;}
.x1c{left:756.149987px;}
.xf{left:758.489987px;}
.x1d{left:762.089987px;}
.x2c{left:764.609987px;}
.x1a{left:765.869987px;}
.x18{left:770.009987px;}
.x8{left:773.969987px;}
.x10{left:775.049987px;}
.xa{left:776.129987px;}
@media print{
.v2{vertical-align:-60.160000pt;}
.v3{vertical-align:-55.040000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-20.106667pt;}
.ls2e{letter-spacing:-17.173333pt;}
.ls45{letter-spacing:-17.013333pt;}
.ls21{letter-spacing:-16.213333pt;}
.ls20{letter-spacing:-15.573333pt;}
.ls31{letter-spacing:-14.933333pt;}
.ls12{letter-spacing:-14.293333pt;}
.ls11{letter-spacing:-13.653333pt;}
.ls43{letter-spacing:-12.586667pt;}
.lsd{letter-spacing:-12.373333pt;}
.ls26{letter-spacing:-11.733333pt;}
.ls2d{letter-spacing:-11.093333pt;}
.ls25{letter-spacing:-10.453333pt;}
.ls24{letter-spacing:-9.813333pt;}
.ls13{letter-spacing:-9.173333pt;}
.ls15{letter-spacing:-8.533333pt;}
.ls1c{letter-spacing:-7.893333pt;}
.ls1a{letter-spacing:-7.253333pt;}
.ls1b{letter-spacing:-6.613333pt;}
.ls1f{letter-spacing:-5.973333pt;}
.ls23{letter-spacing:-5.312000pt;}
.ls17{letter-spacing:-4.672000pt;}
.ls18{letter-spacing:-4.032000pt;}
.ls19{letter-spacing:-3.392000pt;}
.ls2a{letter-spacing:-2.752000pt;}
.ls1d{letter-spacing:-2.112000pt;}
.ls2c{letter-spacing:-1.472000pt;}
.ls1e{letter-spacing:-0.832000pt;}
.ls36{letter-spacing:-0.576000pt;}
.ls2b{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls40{letter-spacing:-0.082133pt;}
.ls3f{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000001pt;}
.ls39{letter-spacing:0.000003pt;}
.ls1{letter-spacing:0.017920pt;}
.ls3d{letter-spacing:0.024320pt;}
.ls14{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls3e{letter-spacing:0.207360pt;}
.ls44{letter-spacing:0.207467pt;}
.lsa{letter-spacing:0.256000pt;}
.ls42{letter-spacing:0.271360pt;}
.ls2f{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.448000pt;}
.ls38{letter-spacing:0.512000pt;}
.ls7{letter-spacing:0.656000pt;}
.ls0{letter-spacing:0.657920pt;}
.ls29{letter-spacing:1.088000pt;}
.ls35{letter-spacing:1.728000pt;}
.ls28{letter-spacing:2.368000pt;}
.ls27{letter-spacing:3.008000pt;}
.ls3a{letter-spacing:4.928000pt;}
.ls32{letter-spacing:6.826667pt;}
.ls33{letter-spacing:7.466667pt;}
.ls22{letter-spacing:10.666667pt;}
.ls2{letter-spacing:25.706667pt;}
.ls3c{letter-spacing:31.610027pt;}
.ls34{letter-spacing:165.088000pt;}
.ls3b{letter-spacing:206.048000pt;}
.ls37{letter-spacing:279.648000pt;}
.ls41{letter-spacing:414.688000pt;}
.ls30{letter-spacing:476.768000pt;}
.ls10{letter-spacing:508.128000pt;}
.ls9{letter-spacing:744.778667pt;}
.ls4{letter-spacing:750.314667pt;}
.ws7{word-spacing:-26.688000pt;}
.ws16{word-spacing:-18.304000pt;}
.wsa{word-spacing:-18.240000pt;}
.ws18{word-spacing:-18.048000pt;}
.wsb{word-spacing:-17.984000pt;}
.wsc{word-spacing:-17.920000pt;}
.wsd{word-spacing:-17.856000pt;}
.ws17{word-spacing:-17.792003pt;}
.ws8{word-spacing:-17.792000pt;}
.ws19{word-spacing:-17.728000pt;}
.wse{word-spacing:-17.664000pt;}
.ws9{word-spacing:-17.600000pt;}
.wsf{word-spacing:-17.536000pt;}
.ws11{word-spacing:-17.408000pt;}
.ws15{word-spacing:-17.216000pt;}
.ws13{word-spacing:-16.960000pt;}
.ws1d{word-spacing:-16.368640pt;}
.ws12{word-spacing:-13.376000pt;}
.ws10{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.248000pt;}
.ws5{word-spacing:-13.184000pt;}
.ws1{word-spacing:-12.992000pt;}
.ws4{word-spacing:-12.736000pt;}
.ws1c{word-spacing:-11.952640pt;}
.ws1a{word-spacing:-11.870507pt;}
.ws2{word-spacing:-8.191360pt;}
.ws3{word-spacing:-7.553280pt;}
.ws0{word-spacing:-7.535360pt;}
.ws1b{word-spacing:-0.058880pt;}
.ws6{word-spacing:0.000000pt;}
._106{margin-left:-1983.488000pt;}
._c8{margin-left:-1048.170667pt;}
._c6{margin-left:-882.133333pt;}
._103{margin-left:-871.253333pt;}
._10a{margin-left:-853.318827pt;}
._c7{margin-left:-614.499840pt;}
._c9{margin-left:-469.365333pt;}
._102{margin-left:-463.072000pt;}
._11{margin-left:-450.304000pt;}
._fc{margin-left:-434.645333pt;}
._10{margin-left:-427.498667pt;}
._eb{margin-left:-422.688000pt;}
._100{margin-left:-409.856000pt;}
._ec{margin-left:-404.288000pt;}
._c4{margin-left:-392.501333pt;}
._120{margin-left:-387.805013pt;}
._101{margin-left:-382.528000pt;}
._fe{margin-left:-369.408000pt;}
._fb{margin-left:-362.357333pt;}
._119{margin-left:-359.680000pt;}
._fd{margin-left:-357.589333pt;}
._118{margin-left:-353.120000pt;}
._d5{margin-left:-352.032000pt;}
._113{margin-left:-350.627840pt;}
._5{margin-left:-349.728000pt;}
._10b{margin-left:-348.565333pt;}
._fa{margin-left:-347.270827pt;}
._9{margin-left:-342.592000pt;}
._8{margin-left:-341.440000pt;}
._f9{margin-left:-338.368000pt;}
._116{margin-left:-336.064000pt;}
._a{margin-left:-335.168000pt;}
._11b{margin-left:-333.120000pt;}
._7{margin-left:-328.021333pt;}
._f8{margin-left:-326.080000pt;}
._107{margin-left:-316.650667pt;}
._b2{margin-left:-315.072000pt;}
._f7{margin-left:-313.589333pt;}
._11a{margin-left:-312.380160pt;}
._dd{margin-left:-310.858667pt;}
._a2{margin-left:-309.376000pt;}
._c{margin-left:-307.904000pt;}
._b{margin-left:-306.890667pt;}
._f5{margin-left:-305.216000pt;}
._a1{margin-left:-304.117333pt;}
._ea{margin-left:-302.976000pt;}
._10e{margin-left:-301.717333pt;}
._f2{margin-left:-300.742827pt;}
._10d{margin-left:-297.984000pt;}
._ee{margin-left:-296.362667pt;}
._bb{margin-left:-293.184000pt;}
._d9{margin-left:-291.392000pt;}
._d7{margin-left:-289.621333pt;}
._db{margin-left:-287.904000pt;}
._111{margin-left:-286.766507pt;}
._ba{margin-left:-285.344000pt;}
._e2{margin-left:-284.426667pt;}
._84{margin-left:-282.880000pt;}
._c1{margin-left:-281.600000pt;}
._f6{margin-left:-280.512000pt;}
._83{margin-left:-278.080000pt;}
._d6{margin-left:-277.184000pt;}
._88{margin-left:-274.944000pt;}
._a4{margin-left:-273.962667pt;}
._9f{margin-left:-272.512000pt;}
._89{margin-left:-270.890667pt;}
._87{margin-left:-269.290667pt;}
._11f{margin-left:-268.273493pt;}
._9d{margin-left:-267.338667pt;}
._10c{margin-left:-266.293333pt;}
._93{margin-left:-264.960000pt;}
._4{margin-left:-263.200000pt;}
._22{margin-left:-261.472000pt;}
._48{margin-left:-260.554667pt;}
._85{margin-left:-259.264000pt;}
._f4{margin-left:-258.336000pt;}
._92{margin-left:-257.429333pt;}
._80{margin-left:-256.128000pt;}
._8b{margin-left:-254.197333pt;}
._cc{margin-left:-253.056000pt;}
._31{margin-left:-251.488000pt;}
._21{margin-left:-250.090667pt;}
._68{margin-left:-248.821333pt;}
._bc{margin-left:-247.776000pt;}
._c2{margin-left:-246.496000pt;}
._7e{margin-left:-245.333333pt;}
._aa{margin-left:-244.096000pt;}
._23{margin-left:-243.200000pt;}
._3{margin-left:-242.122667pt;}
._e8{margin-left:-241.066667pt;}
._9c{margin-left:-240.106667pt;}
._37{margin-left:-239.029333pt;}
._8e{margin-left:-237.930667pt;}
._8f{margin-left:-236.288000pt;}
._36{margin-left:-235.328000pt;}
._53{margin-left:-234.112000pt;}
._20{margin-left:-233.066667pt;}
._47{margin-left:-231.882667pt;}
._76{margin-left:-230.848000pt;}
._25{margin-left:-229.888000pt;}
._90{margin-left:-228.480000pt;}
._bf{margin-left:-227.552000pt;}
._6c{margin-left:-226.624000pt;}
._2{margin-left:-225.696000pt;}
._7f{margin-left:-224.085333pt;}
._91{margin-left:-222.485333pt;}
._54{margin-left:-220.757333pt;}
._7c{margin-left:-219.434667pt;}
._e6{margin-left:-218.314667pt;}
._30{margin-left:-217.376000pt;}
._58{margin-left:-216.064000pt;}
._62{margin-left:-214.357333pt;}
._81{margin-left:-213.034667pt;}
._24{margin-left:-211.392000pt;}
._56{margin-left:-210.272000pt;}
._28{margin-left:-209.344000pt;}
._d0{margin-left:-208.352000pt;}
._65{margin-left:-207.338667pt;}
._95{margin-left:-205.770667pt;}
._1f{margin-left:-204.864000pt;}
._14{margin-left:-203.968000pt;}
._51{margin-left:-202.773333pt;}
._b0{margin-left:-201.408000pt;}
._112{margin-left:-200.490667pt;}
._b9{margin-left:-199.509333pt;}
._2f{margin-left:-198.592000pt;}
._13{margin-left:-197.312000pt;}
._1e{margin-left:-196.032000pt;}
._5d{margin-left:-195.008000pt;}
._26{margin-left:-194.112000pt;}
._99{margin-left:-193.216000pt;}
._5f{margin-left:-191.957333pt;}
._8a{margin-left:-190.826667pt;}
._73{margin-left:-189.333333pt;}
._1c{margin-left:-188.352000pt;}
._9e{margin-left:-187.456000pt;}
._50{margin-left:-186.368000pt;}
._42{margin-left:-185.280000pt;}
._61{margin-left:-183.616000pt;}
._a0{margin-left:-182.197333pt;}
._7b{margin-left:-181.194667pt;}
._8d{margin-left:-180.128000pt;}
._66{margin-left:-178.517333pt;}
._27{margin-left:-176.960000pt;}
._55{margin-left:-175.712000pt;}
._33{margin-left:-174.165333pt;}
._72{margin-left:-172.832000pt;}
._60{margin-left:-171.829333pt;}
._1d{margin-left:-170.304000pt;}
._4f{margin-left:-168.640000pt;}
._1b{margin-left:-167.168000pt;}
._71{margin-left:-166.005333pt;}
._32{margin-left:-164.672000pt;}
._3c{margin-left:-163.232000pt;}
._5e{margin-left:-162.304000pt;}
._f{margin-left:-161.280000pt;}
._be{margin-left:-160.035840pt;}
._75{margin-left:-159.136000pt;}
._1a{margin-left:-157.856000pt;}
._e{margin-left:-156.352000pt;}
._3d{margin-left:-154.677333pt;}
._41{margin-left:-153.621333pt;}
._44{margin-left:-152.352000pt;}
._2b{margin-left:-150.784000pt;}
._12{margin-left:-149.760000pt;}
._3f{margin-left:-148.448000pt;}
._4e{margin-left:-146.880000pt;}
._c0{margin-left:-145.589333pt;}
._2c{margin-left:-144.512000pt;}
._ab{margin-left:-142.794667pt;}
._45{margin-left:-141.440000pt;}
._19{margin-left:-140.352000pt;}
._d2{margin-left:-139.285333pt;}
._35{margin-left:-137.888000pt;}
._59{margin-left:-136.704000pt;}
._40{margin-left:-135.424000pt;}
._11c{margin-left:-134.485333pt;}
._2d{margin-left:-133.568000pt;}
._e7{margin-left:-132.650667pt;}
._63{margin-left:-131.754667pt;}
._97{margin-left:-130.645333pt;}
._4d{margin-left:-129.098667pt;}
._29{margin-left:-128.192000pt;}
._b4{margin-left:-127.242667pt;}
._4b{margin-left:-125.632000pt;}
._4a{margin-left:-124.032000pt;}
._d4{margin-left:-123.029333pt;}
._6d{margin-left:-121.546667pt;}
._2e{margin-left:-120.512000pt;}
._64{margin-left:-119.349333pt;}
._67{margin-left:-117.770667pt;}
._57{margin-left:-116.437333pt;}
._82{margin-left:-115.424000pt;}
._a8{margin-left:-114.474667pt;}
._96{margin-left:-113.568000pt;}
._70{margin-left:-111.957333pt;}
._46{margin-left:-110.272000pt;}
._115{margin-left:-109.301333pt;}
._18{margin-left:-108.352000pt;}
._b6{margin-left:-106.848000pt;}
._49{margin-left:-105.952000pt;}
._d1{margin-left:-104.405333pt;}
._6e{margin-left:-103.424000pt;}
._b3{margin-left:-102.314667pt;}
._a7{margin-left:-100.874667pt;}
._d{margin-left:-99.584000pt;}
._b5{margin-left:-98.666667pt;}
._9b{margin-left:-97.557333pt;}
._ff{margin-left:-96.490667pt;}
._5a{margin-left:-95.552000pt;}
._dc{margin-left:-94.528000pt;}
._39{margin-left:-93.546667pt;}
._d8{margin-left:-92.618667pt;}
._78{margin-left:-91.434667pt;}
._4c{margin-left:-89.920000pt;}
._ac{margin-left:-88.170667pt;}
._74{margin-left:-87.018667pt;}
._3b{margin-left:-85.888000pt;}
._38{margin-left:-84.437333pt;}
._a5{margin-left:-83.317333pt;}
._94{margin-left:-82.336000pt;}
._6b{margin-left:-80.640000pt;}
._6f{margin-left:-79.477333pt;}
._e1{margin-left:-78.464000pt;}
._9a{margin-left:-77.386667pt;}
._3a{margin-left:-76.160000pt;}
._ae{margin-left:-75.264000pt;}
._5b{margin-left:-73.856000pt;}
._79{margin-left:-72.640000pt;}
._6a{margin-left:-71.253333pt;}
._b8{margin-left:-69.034667pt;}
._34{margin-left:-68.032000pt;}
._5c{margin-left:-66.176000pt;}
._da{margin-left:-64.746667pt;}
._8c{margin-left:-63.808000pt;}
._e5{margin-left:-62.080000pt;}
._11e{margin-left:-60.998827pt;}
._ad{margin-left:-59.989333pt;}
._f3{margin-left:-58.726827pt;}
._af{margin-left:-57.536000pt;}
._16{margin-left:-56.192000pt;}
._110{margin-left:-55.189333pt;}
._cd{margin-left:-54.144000pt;}
._df{margin-left:-52.672000pt;}
._c5{margin-left:-51.178667pt;}
._3e{margin-left:-49.472000pt;}
._e4{margin-left:-48.508160pt;}
._15{margin-left:-46.869333pt;}
._17{margin-left:-45.504000pt;}
._cb{margin-left:-44.206507pt;}
._bd{margin-left:-43.189333pt;}
._ce{margin-left:-42.186667pt;}
._ca{margin-left:-40.757333pt;}
._c3{margin-left:-39.808000pt;}
._10f{margin-left:-38.698667pt;}
._98{margin-left:-37.514667pt;}
._7a{margin-left:-35.797333pt;}
._e9{margin-left:-34.186667pt;}
._e0{margin-left:-32.725333pt;}
._cf{margin-left:-30.485333pt;}
._114{margin-left:-28.672000pt;}
._f1{margin-left:-27.285333pt;}
._6{margin-left:-26.016000pt;}
._ef{margin-left:-24.064000pt;}
._f0{margin-left:-23.082667pt;}
._de{margin-left:-21.877333pt;}
._11d{margin-left:-20.864000pt;}
._2a{margin-left:-18.432000pt;}
._52{margin-left:-17.152000pt;}
._108{margin-left:-16.206507pt;}
._77{margin-left:-14.592000pt;}
._7d{margin-left:-13.632000pt;}
._43{margin-left:-12.074667pt;}
._b7{margin-left:-11.082667pt;}
._69{margin-left:-9.152000pt;}
._117{margin-left:-8.262827pt;}
._a3{margin-left:-7.285333pt;}
._a9{margin-left:-6.069333pt;}
._86{margin-left:-4.672000pt;}
._ed{margin-left:-3.622827pt;}
._a6{margin-left:-2.666667pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.397333pt;}
._e3{width:2.773333pt;}
._109{width:4.870827pt;}
._d3{width:6.947840pt;}
._105{width:8.064000pt;}
._104{width:9.152000pt;}
._b1{width:10.624000pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:108.352000pt;}
.yd4{bottom:110.272000pt;}
.ye7{bottom:112.032000pt;}
.y9f{bottom:117.632000pt;}
.ybd{bottom:120.192000pt;}
.y4b{bottom:120.672000pt;}
.y68{bottom:126.272000pt;}
.y8a{bottom:130.912000pt;}
.ye6{bottom:132.672000pt;}
.yd3{bottom:132.992000pt;}
.y9e{bottom:140.346667pt;}
.ybc{bottom:142.746667pt;}
.y67{bottom:148.826667pt;}
.ye5{bottom:153.466667pt;}
.y89{bottom:153.626667pt;}
.y4a{bottom:153.946667pt;}
.yd2{bottom:155.546667pt;}
.y2f{bottom:158.106667pt;}
.y9d{bottom:162.906667pt;}
.ybb{bottom:165.466667pt;}
.y66{bottom:171.386667pt;}
.ye4{bottom:174.426667pt;}
.y88{bottom:176.186667pt;}
.yd1{bottom:178.106667pt;}
.y49{bottom:187.226667pt;}
.yba{bottom:188.026667pt;}
.y87{bottom:198.906667pt;}
.y9c{bottom:200.986667pt;}
.y2e{bottom:202.746667pt;}
.ye3{bottom:205.786667pt;}
.y65{bottom:209.466667pt;}
.yb9{bottom:210.746667pt;}
.yd0{bottom:216.186667pt;}
.y48{bottom:219.226667pt;}
.y86{bottom:221.466667pt;}
.y9b{bottom:223.546667pt;}
.ye2{bottom:226.586667pt;}
.y64{bottom:232.026667pt;}
.yb8{bottom:233.306667pt;}
.ycf{bottom:238.746667pt;}
.y47{bottom:241.786667pt;}
.y2d{bottom:243.546667pt;}
.y85{bottom:244.026667pt;}
.y9a{bottom:246.106667pt;}
.ye1{bottom:247.226667pt;}
.yb7{bottom:255.866667pt;}
.yce{bottom:261.466667pt;}
.y84{bottom:266.746667pt;}
.y99{bottom:268.826667pt;}
.y63{bottom:269.946667pt;}
.y46{bottom:275.066667pt;}
.y2c{bottom:276.826667pt;}
.ye0{bottom:279.386667pt;}
.ycd{bottom:284.026667pt;}
.y83{bottom:289.306667pt;}
.yb6{bottom:293.946667pt;}
.y2b{bottom:299.586667pt;}
.y98{bottom:302.146667pt;}
.ycc{bottom:306.786667pt;}
.y62{bottom:308.066667pt;}
.y45{bottom:308.386667pt;}
.y82{bottom:312.066667pt;}
.ydf{bottom:312.866667pt;}
.yb5{bottom:315.266667pt;}
.ycb{bottom:329.346667pt;}
.y61{bottom:330.786667pt;}
.y2a{bottom:332.866667pt;}
.y97{bottom:334.146667pt;}
.y81{bottom:334.626667pt;}
.yb4{bottom:337.986667pt;}
.y44{bottom:341.666667pt;}
.yde{bottom:346.146667pt;}
.yca{bottom:351.906667pt;}
.y60{bottom:353.186667pt;}
.y29{bottom:355.426667pt;}
.yb3{bottom:360.546667pt;}
.y80{bottom:366.626667pt;}
.y96{bottom:367.426667pt;}
.y43{bottom:373.666667pt;}
.yc9{bottom:374.626667pt;}
.y28{bottom:377.986667pt;}
.ydd{bottom:379.426667pt;}
.yb2{bottom:383.106667pt;}
.y7f{bottom:389.186667pt;}
.y95{bottom:389.986667pt;}
.y5f{bottom:391.426667pt;}
.y42{bottom:396.386667pt;}
.yc8{bottom:397.186667pt;}
.y27{bottom:400.706667pt;}
.yb1{bottom:405.826667pt;}
.y94{bottom:412.706667pt;}
.y5e{bottom:413.986667pt;}
.yc7{bottom:419.906667pt;}
.y7e{bottom:422.466667pt;}
.y41{bottom:428.386667pt;}
.y26{bottom:433.986667pt;}
.y93{bottom:435.266667pt;}
.y5d{bottom:436.546667pt;}
.yc6{bottom:442.466667pt;}
.y40{bottom:450.946667pt;}
.y7d{bottom:455.746667pt;}
.y25{bottom:456.546667pt;}
.y92{bottom:457.826667pt;}
.ydc{bottom:457.986667pt;}
.y5c{bottom:459.266667pt;}
.yc5{bottom:465.026667pt;}
.yb0{bottom:466.466667pt;}
.y7c{bottom:478.466667pt;}
.y24{bottom:479.266667pt;}
.y91{bottom:480.546667pt;}
.y5b{bottom:481.826667pt;}
.y3f{bottom:484.226667pt;}
.yaf{bottom:487.746667pt;}
.y7b{bottom:501.026667pt;}
.y23{bottom:501.826667pt;}
.y5a{bottom:503.106667pt;}
.yae{bottom:510.306667pt;}
.y3e{bottom:516.226667pt;}
.y7a{bottom:523.746667pt;}
.ydb{bottom:524.546667pt;}
.y59{bottom:525.826667pt;}
.yad{bottom:533.026667pt;}
.y22{bottom:535.106667pt;}
.y3d{bottom:538.813333pt;}
.y79{bottom:546.333333pt;}
.yda{bottom:547.133333pt;}
.yac{bottom:555.453333pt;}
.yc4{bottom:555.613333pt;}
.y21{bottom:557.853333pt;}
.y58{bottom:559.133333pt;}
.yf5{bottom:567.293333pt;}
.y11{bottom:569.693333pt;}
.y3c{bottom:570.813333pt;}
.yc3{bottom:578.173333pt;}
.y78{bottom:579.613333pt;}
.y20{bottom:580.413333pt;}
.y57{bottom:581.693333pt;}
.yd9{bottom:592.413333pt;}
.y3b{bottom:593.533333pt;}
.yf4{bottom:599.933333pt;}
.yc2{bottom:600.893333pt;}
.y77{bottom:602.173333pt;}
.y10{bottom:602.973333pt;}
.y90{bottom:604.253333pt;}
.y56{bottom:604.413333pt;}
.yd8{bottom:614.973333pt;}
.yab{bottom:616.253333pt;}
.yf3{bottom:620.733333pt;}
.yc1{bottom:623.453333pt;}
.y76{bottom:624.893333pt;}
.y3a{bottom:625.373333pt;}
.yf{bottom:625.693333pt;}
.y55{bottom:626.973333pt;}
.yd7{bottom:637.533333pt;}
.yaa{bottom:638.813333pt;}
.y75{bottom:647.453333pt;}
.y39{bottom:648.093333pt;}
.ye{bottom:648.253333pt;}
.y54{bottom:649.533333pt;}
.yf2{bottom:652.093333pt;}
.y1f{bottom:658.973333pt;}
.yd6{bottom:660.253333pt;}
.yc0{bottom:661.373333pt;}
.ya9{bottom:661.533333pt;}
.y74{bottom:668.733333pt;}
.yd{bottom:670.973333pt;}
.y53{bottom:672.253333pt;}
.yf1{bottom:672.893333pt;}
.y38{bottom:681.373333pt;}
.y1e{bottom:681.533333pt;}
.y8f{bottom:682.813333pt;}
.ya8{bottom:684.093333pt;}
.yc{bottom:693.533333pt;}
.y52{bottom:694.813333pt;}
.ybf{bottom:699.453333pt;}
.y73{bottom:702.013333pt;}
.y1d{bottom:704.253333pt;}
.y8e{bottom:705.533333pt;}
.y37{bottom:713.373333pt;}
.yb{bottom:716.093333pt;}
.y51{bottom:717.533333pt;}
.ya7{bottom:722.173333pt;}
.y72{bottom:724.733333pt;}
.yf0{bottom:725.053333pt;}
.y1c{bottom:726.813333pt;}
.y8d{bottom:728.093333pt;}
.y36{bottom:735.933333pt;}
.ya{bottom:738.813333pt;}
.y50{bottom:740.093333pt;}
.ya6{bottom:744.733333pt;}
.y71{bottom:747.293333pt;}
.y1b{bottom:749.373333pt;}
.y8c{bottom:750.653333pt;}
.yef{bottom:756.413333pt;}
.y9{bottom:761.373333pt;}
.ya5{bottom:767.293333pt;}
.y35{bottom:767.933333pt;}
.y70{bottom:770.013333pt;}
.y1a{bottom:772.093333pt;}
.y4f{bottom:773.373333pt;}
.yee{bottom:777.253333pt;}
.y8{bottom:784.133333pt;}
.ya4{bottom:790.053333pt;}
.y34{bottom:790.533333pt;}
.y6f{bottom:792.613333pt;}
.y19{bottom:794.693333pt;}
.yd5{bottom:805.413333pt;}
.y7{bottom:806.693333pt;}
.yed{bottom:808.613333pt;}
.ya3{bottom:812.613333pt;}
.y6e{bottom:813.893333pt;}
.y4e{bottom:817.413333pt;}
.y33{bottom:823.813333pt;}
.y18{bottom:827.973333pt;}
.yec{bottom:829.413333pt;}
.ybe{bottom:835.173333pt;}
.ya2{bottom:835.333333pt;}
.y6{bottom:839.973333pt;}
.y6d{bottom:847.173333pt;}
.y17{bottom:850.693333pt;}
.y32{bottom:857.253333pt;}
.ya1{bottom:857.893333pt;}
.yeb{bottom:860.773333pt;}
.y5{bottom:862.533333pt;}
.y16{bottom:873.253333pt;}
.y6c{bottom:880.453333pt;}
.yea{bottom:881.413333pt;}
.y4{bottom:885.253333pt;}
.y31{bottom:889.093333pt;}
.y15{bottom:895.813333pt;}
.ye9{bottom:902.213333pt;}
.ya0{bottom:903.013333pt;}
.y4d{bottom:907.813333pt;}
.y6b{bottom:913.733333pt;}
.y14{bottom:918.533333pt;}
.y3{bottom:922.373333pt;}
.y30{bottom:924.293333pt;}
.y4c{bottom:930.533333pt;}
.ye8{bottom:933.573333pt;}
.y6a{bottom:936.453333pt;}
.y13{bottom:941.093333pt;}
.y2{bottom:956.293333pt;}
.y69{bottom:959.013333pt;}
.y12{bottom:963.813333pt;}
.y1{bottom:978.853333pt;}
.h7{height:46.593750pt;}
.h9{height:51.031250pt;}
.h8{height:51.073125pt;}
.h2{height:55.468750pt;}
.h4{height:55.562500pt;}
.h6{height:69.890625pt;}
.h5{height:83.203125pt;}
.h3{height:83.343750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.031988pt;}
.x3{left:120.031988pt;}
.x4{left:144.026655pt;}
.x39{left:161.786655pt;}
.x6{left:360.866655pt;}
.x7{left:459.293322pt;}
.x1{left:559.293322pt;}
.x45{left:575.133322pt;}
.x49{left:581.053322pt;}
.x3e{left:582.333322pt;}
.x25{left:584.773322pt;}
.x37{left:586.693322pt;}
.x26{left:590.053322pt;}
.x33{left:593.093322pt;}
.x48{left:595.173322pt;}
.x3d{left:596.133322pt;}
.x3b{left:597.573322pt;}
.x46{left:599.013322pt;}
.x32{left:601.893322pt;}
.x24{left:603.013322pt;}
.x34{left:603.973322pt;}
.x21{left:605.253322pt;}
.x43{left:606.373322pt;}
.x22{left:607.813322pt;}
.x23{left:609.893322pt;}
.x3a{left:611.973322pt;}
.x40{left:613.573322pt;}
.x35{left:614.693322pt;}
.x3c{left:615.813322pt;}
.x5{left:617.093322pt;}
.x38{left:618.693322pt;}
.x36{left:619.653322pt;}
.x44{left:620.933322pt;}
.x41{left:622.373322pt;}
.x42{left:624.133322pt;}
.x47{left:626.693322pt;}
.x1f{left:629.093322pt;}
.x30{left:630.373322pt;}
.x31{left:631.653322pt;}
.x17{left:634.693322pt;}
.x3f{left:637.093322pt;}
.x27{left:639.813322pt;}
.x15{left:643.333322pt;}
.x29{left:644.773322pt;}
.x2b{left:645.893322pt;}
.x19{left:647.813322pt;}
.xb{left:648.933322pt;}
.x12{left:650.373322pt;}
.x28{left:651.813322pt;}
.x1b{left:653.093322pt;}
.x16{left:654.533322pt;}
.x2a{left:655.653322pt;}
.xd{left:657.253322pt;}
.x1e{left:658.213322pt;}
.x13{left:659.493322pt;}
.x11{left:660.613322pt;}
.x2d{left:661.893322pt;}
.x14{left:662.853322pt;}
.x9{left:663.813322pt;}
.x2e{left:664.773322pt;}
.x20{left:665.893322pt;}
.x2f{left:667.173322pt;}
.xc{left:668.293322pt;}
.xe{left:669.253322pt;}
.x1c{left:672.133322pt;}
.xf{left:674.213322pt;}
.x1d{left:677.413322pt;}
.x2c{left:679.653322pt;}
.x1a{left:680.773322pt;}
.x18{left:684.453322pt;}
.x8{left:687.973322pt;}
.x10{left:688.933322pt;}
.xa{left:689.893322pt;}
}




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