
    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_411909f4b8252d0802ace7ce.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_11ac70b8295026a2bc3097c4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_5b82e3c0b48f06e8cedb69bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.105469;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_2690b08d7458d57988f807e8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.105469;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_a991209bc2cd7d1207f4125b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_57382c8a37c6aabb2c6fee04.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_274991734a2ea37948778c16.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.966797;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_313857926d726c40dc437dc2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.966797;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_cfc8ff3445baca07351f3c12.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.945312;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_0d0d40ff712921d029a79c57.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7b4e9335f9d04ef3b4dbb8d4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.800781;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_67a8c6a975183a2a15ac08cf.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_cb595c345941fecc905dc7c0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.906250;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_92d93c8b414ec0a097c2a3fb.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.097656;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_76b63f31dadb80cbd68a2dab.woff2')format("woff");}.fff{font-family:fff;line-height:1.097656;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.758789;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_54390cbc81758c13bc0750ee.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_74b979c2cd3c3dcc92431822.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.114746;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_e2ec25520198dbcb54fc19a2.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_042bc2d407edd5d1ff52e373.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.114746;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m4{transform:matrix(0.251312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251312,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252271,0.000000,0.000000,0.250000,0,0);}
.m2{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:-32.259291px;}
.v7{vertical-align:-27.342290px;}
.v3{vertical-align:-21.600000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.v5{vertical-align:5.760000px;}
.v1{vertical-align:21.600000px;}
.ls1b{letter-spacing:-1.944000px;}
.lsf{letter-spacing:-1.926000px;}
.ls2d{letter-spacing:-1.860000px;}
.ls3b{letter-spacing:-1.800000px;}
.ls1e{letter-spacing:-1.608000px;}
.ls26{letter-spacing:-1.458000px;}
.lsc{letter-spacing:-1.440000px;}
.lse{letter-spacing:-1.422000px;}
.ls27{letter-spacing:-1.272000px;}
.ls28{letter-spacing:-0.990000px;}
.ls1a{letter-spacing:-0.972000px;}
.lsd{letter-spacing:-0.936000px;}
.ls1d{letter-spacing:-0.810000px;}
.ls7{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.518400px;}
.ls2e{letter-spacing:-0.504000px;}
.ls39{letter-spacing:-0.501000px;}
.ls6{letter-spacing:-0.486600px;}
.ls1f{letter-spacing:-0.466800px;}
.ls9{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.302400px;}
.ls37{letter-spacing:-0.250800px;}
.lsa{letter-spacing:-0.015600px;}
.ls5{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.012000px;}
.ls2{letter-spacing:0.015840px;}
.ls4{letter-spacing:0.020160px;}
.ls10{letter-spacing:0.020400px;}
.ls16{letter-spacing:0.032160px;}
.ls19{letter-spacing:0.120000px;}
.ls2a{letter-spacing:0.135600px;}
.ls13{letter-spacing:0.144000px;}
.ls2b{letter-spacing:0.166800px;}
.ls18{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.250800px;}
.ls38{letter-spacing:0.387600px;}
.ls1{letter-spacing:0.413280px;}
.ls29{letter-spacing:0.449400px;}
.ls2c{letter-spacing:0.466800px;}
.ls17{letter-spacing:0.486600px;}
.ls21{letter-spacing:0.486720px;}
.ls3a{letter-spacing:0.501000px;}
.ls14{letter-spacing:0.507000px;}
.ls11{letter-spacing:0.665280px;}
.ls25{letter-spacing:0.715680px;}
.ls0{letter-spacing:0.720000px;}
.ls33{letter-spacing:1.080000px;}
.ls30{letter-spacing:1.890753px;}
.ls34{letter-spacing:2.520000px;}
.ls3{letter-spacing:5.040000px;}
.ls24{letter-spacing:5.140800px;}
.ls23{letter-spacing:15.301440px;}
.ls36{letter-spacing:15.480000px;}
.ls22{letter-spacing:16.660800px;}
.ls15{letter-spacing:18.720000px;}
.ls12{letter-spacing:26.386560px;}
.ls35{letter-spacing:34.309440px;}
.ls31{letter-spacing:40.786560px;}
.ls32{letter-spacing:58.789440px;}
.ls2f{letter-spacing:71.469577px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-60.480000px;}
.ws23{word-spacing:-47.907600px;}
.ws22{word-spacing:-47.520000px;}
.ws12{word-spacing:-18.058245px;}
.ws1f{word-spacing:-17.904723px;}
.wse{word-spacing:-15.627000px;}
.wsf{word-spacing:-15.606600px;}
.ws1d{word-spacing:-15.586800px;}
.ws18{word-spacing:-15.569400px;}
.ws9{word-spacing:-15.140400px;}
.ws13{word-spacing:-15.140160px;}
.ws3{word-spacing:-15.120000px;}
.ws21{word-spacing:-14.653200px;}
.wsc{word-spacing:-14.633400px;}
.ws1e{word-spacing:-14.616000px;}
.ws14{word-spacing:-14.184000px;}
.ws20{word-spacing:-14.148000px;}
.ws17{word-spacing:-14.130000px;}
.ws1b{word-spacing:-13.772400px;}
.ws15{word-spacing:-13.680000px;}
.ws16{word-spacing:-13.662000px;}
.ws19{word-spacing:-13.305600px;}
.ws1{word-spacing:-12.600000px;}
.wsb{word-spacing:-12.545280px;}
.ws25{word-spacing:-12.381000px;}
.ws6{word-spacing:-12.130800px;}
.ws0{word-spacing:-11.880000px;}
.ws5{word-spacing:-11.864400px;}
.ws24{word-spacing:-11.379000px;}
.ws7{word-spacing:-11.160000px;}
.ws8{word-spacing:-9.720000px;}
.ws1c{word-spacing:-0.884160px;}
.wsa{word-spacing:0.000000px;}
.ws1a{word-spacing:2.343600px;}
.ws10{word-spacing:7.185726px;}
.ws2{word-spacing:29.773080px;}
.ws4{word-spacing:29.916960px;}
.ws11{word-spacing:143.403883px;}
._2b{margin-left:-186.430219px;}
._3d{margin-left:-153.421623px;}
._2c{margin-left:-138.302677px;}
._3c{margin-left:-130.382434px;}
._2a{margin-left:-127.317134px;}
._2d{margin-left:-82.122128px;}
._29{margin-left:-5.321425px;}
._9{margin-left:-4.294146px;}
._2{margin-left:-2.540402px;}
._0{margin-left:-1.451399px;}
._1{width:1.148999px;}
._4{width:2.202000px;}
._5{width:4.023020px;}
._6{width:5.029281px;}
._e{width:6.128994px;}
._d{width:7.197054px;}
._11{width:8.427044px;}
._10{width:9.682802px;}
._f{width:11.433721px;}
._17{width:12.568324px;}
._1b{width:13.849799px;}
._12{width:14.933339px;}
._8{width:16.801897px;}
._7{width:18.081046px;}
._26{width:19.113011px;}
._13{width:20.139598px;}
._14{width:21.604086px;}
._a{width:23.529655px;}
._b{width:25.119009px;}
._c{width:26.140297px;}
._1a{width:27.457799px;}
._19{width:28.969799px;}
._43{width:30.007083px;}
._25{width:31.021002px;}
._24{width:32.295594px;}
._23{width:34.171200px;}
._2e{width:36.045959px;}
._2f{width:37.074240px;}
._1d{width:38.222997px;}
._1c{width:39.675001px;}
._36{width:41.791680px;}
._27{width:42.941042px;}
._20{width:44.392199px;}
._21{width:45.722396px;}
._1f{width:46.932601px;}
._22{width:48.541319px;}
._37{width:50.067867px;}
._16{width:51.296492px;}
._15{width:52.444878px;}
._18{width:54.166798px;}
._30{width:57.758279px;}
._3b{width:63.806279px;}
._1e{width:66.888884px;}
._41{width:68.143680px;}
._42{width:69.295159px;}
._32{width:71.790486px;}
._33{width:72.879005px;}
._31{width:74.813518px;}
._38{width:76.144925px;}
._34{width:77.293440px;}
._35{width:79.410482px;}
._3f{width:100.661760px;}
._40{width:101.946603px;}
._28{width:136.987200px;}
._3a{width:141.281280px;}
._39{width:143.861042px;}
._3e{width:576.651763px;}
._3{width:584.178000px;}
.fc2{color:rgb(51,51,255);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fsc{font-size:41.836295px;}
.fs9{font-size:42.171800px;}
.fs1{font-size:47.520000px;}
.fsd{font-size:50.089977px;}
.fs4{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs7{font-size:63.750880px;}
.fs3{font-size:66.240000px;}
.fsb{font-size:71.618893px;}
.fs8{font-size:72.000000px;}
.fsa{font-size:72.232979px;}
.fs5{font-size:119.520000px;}
.fs2{font-size:144.000000px;}
.y7a{bottom:-7.920000px;}
.y0{bottom:0.000000px;}
.y7{bottom:2.880000px;}
.y190{bottom:4.122695px;}
.yb{bottom:6.120000px;}
.y192{bottom:8.570971px;}
.y8{bottom:11.916000px;}
.y4{bottom:14.076000px;}
.yea{bottom:14.313183px;}
.y6{bottom:16.560000px;}
.y3{bottom:19.116000px;}
.ya{bottom:19.800000px;}
.y18f{bottom:22.530000px;}
.y191{bottom:29.365572px;}
.y5{bottom:30.240000px;}
.y9{bottom:33.480000px;}
.y193{bottom:33.777329px;}
.y194{bottom:33.814143px;}
.yca{bottom:81.396000px;}
.y13b{bottom:83.916000px;}
.y157{bottom:84.276000px;}
.y18e{bottom:85.875000px;}
.ybc{bottom:86.436000px;}
.y1d8{bottom:86.796000px;}
.y103{bottom:88.596000px;}
.y124{bottom:90.036000px;}
.yb4{bottom:91.836000px;}
.ye8{bottom:93.636000px;}
.y18c{bottom:94.716000px;}
.y42{bottom:96.516000px;}
.yc9{bottom:99.396000px;}
.y1d7{bottom:100.476000px;}
.y13a{bottom:101.916000px;}
.y156{bottom:102.276000px;}
.ybb{bottom:104.436000px;}
.y102{bottom:106.596000px;}
.y123{bottom:108.036000px;}
.y18d{bottom:108.396000px;}
.y41{bottom:110.556000px;}
.yb3{bottom:110.916000px;}
.ye7{bottom:111.996000px;}
.y18b{bottom:112.716000px;}
.y1d6{bottom:114.156000px;}
.y77{bottom:114.516000px;}
.yc8{bottom:117.396000px;}
.y139{bottom:120.276000px;}
.yba{bottom:122.436000px;}
.y40{bottom:124.236000px;}
.y101{bottom:124.956000px;}
.y122{bottom:126.036000px;}
.y1d5{bottom:128.196000px;}
.ye6{bottom:129.996000px;}
.yb2{bottom:130.356000px;}
.y18a{bottom:130.716000px;}
.y19e{bottom:131.832000px;}
.y76{bottom:132.552000px;}
.yc7{bottom:135.792000px;}
.y138{bottom:138.312000px;}
.y155{bottom:138.672000px;}
.yb9{bottom:140.472000px;}
.y1d4{bottom:141.912000px;}
.y100{bottom:142.992000px;}
.y121{bottom:144.072000px;}
.ye5{bottom:148.032000px;}
.y189{bottom:149.112000px;}
.yb1{bottom:149.472000px;}
.y75{bottom:150.555000px;}
.y19d{bottom:151.635000px;}
.y3f{bottom:151.995000px;}
.yc6{bottom:153.795000px;}
.y1d3{bottom:155.595000px;}
.y137{bottom:156.315000px;}
.y154{bottom:156.675000px;}
.yb8{bottom:158.835000px;}
.yff{bottom:160.995000px;}
.y120{bottom:162.435000px;}
.y3e{bottom:165.675000px;}
.ye4{bottom:166.035000px;}
.y188{bottom:167.115000px;}
.y74{bottom:168.555000px;}
.yb0{bottom:168.915000px;}
.y1d2{bottom:169.635000px;}
.y19c{bottom:171.435000px;}
.yc5{bottom:171.795000px;}
.y136{bottom:174.675000px;}
.yb7{bottom:176.835000px;}
.y3d{bottom:179.355000px;}
.y11f{bottom:180.435000px;}
.y1d1{bottom:183.315000px;}
.ye3{bottom:184.395000px;}
.y187{bottom:185.115000px;}
.y73{bottom:186.915000px;}
.yc4{bottom:190.155000px;}
.y19b{bottom:191.235000px;}
.y135{bottom:192.675000px;}
.y3c{bottom:193.395000px;}
.yb6{bottom:194.835000px;}
.y1d0{bottom:196.995000px;}
.yfe{bottom:197.355000px;}
.y11e{bottom:198.435000px;}
.ye2{bottom:202.395000px;}
.y186{bottom:203.475000px;}
.y72{bottom:204.915000px;}
.y3b{bottom:207.435000px;}
.yc3{bottom:208.155000px;}
.y134{bottom:210.675000px;}
.y153{bottom:211.035000px;}
.yaf{bottom:213.195000px;}
.yfd{bottom:215.355000px;}
.y11d{bottom:216.795000px;}
.ye1{bottom:220.395000px;}
.y185{bottom:221.475000px;}
.y3a{bottom:222.915000px;}
.y142{bottom:223.275000px;}
.y1cf{bottom:224.715000px;}
.yc2{bottom:226.155000px;}
.y133{bottom:229.035000px;}
.y19a{bottom:230.835000px;}
.yb5{bottom:231.195000px;}
.yfc{bottom:233.715000px;}
.y11c{bottom:234.795000px;}
.y39{bottom:238.395000px;}
.y184{bottom:239.475000px;}
.ye0{bottom:239.835000px;}
.y71{bottom:241.275000px;}
.yc1{bottom:244.155000px;}
.y132{bottom:247.035000px;}
.yae{bottom:249.195000px;}
.y199{bottom:250.635000px;}
.yfb{bottom:251.715000px;}
.y11b{bottom:252.795000px;}
.y38{bottom:253.875000px;}
.y183{bottom:257.835000px;}
.ydf{bottom:258.915000px;}
.y70{bottom:259.275000px;}
.y1ce{bottom:261.795000px;}
.yc0{bottom:262.515000px;}
.y131{bottom:265.065000px;}
.y152{bottom:265.425000px;}
.yad{bottom:267.585000px;}
.yfa{bottom:269.745000px;}
.y198{bottom:270.465000px;}
.y11a{bottom:271.185000px;}
.y182{bottom:275.865000px;}
.y6f{bottom:277.305000px;}
.y141{bottom:277.665000px;}
.ybf{bottom:280.545000px;}
.y130{bottom:283.065000px;}
.y151{bottom:283.785000px;}
.yac{bottom:285.585000px;}
.yf9{bottom:287.745000px;}
.y119{bottom:289.185000px;}
.y197{bottom:290.625000px;}
.y181{bottom:293.865000px;}
.yde{bottom:295.305000px;}
.y6e{bottom:295.665000px;}
.y1cd{bottom:296.745000px;}
.ybe{bottom:298.545000px;}
.y12f{bottom:301.425000px;}
.y150{bottom:301.785000px;}
.yab{bottom:303.585000px;}
.y37{bottom:304.305000px;}
.yf8{bottom:306.105000px;}
.y118{bottom:307.185000px;}
.y196{bottom:310.425000px;}
.y1cc{bottom:311.505000px;}
.y180{bottom:311.865000px;}
.ydd{bottom:313.305000px;}
.y6d{bottom:313.665000px;}
.y12e{bottom:319.425000px;}
.y14f{bottom:320.145000px;}
.yaa{bottom:321.945000px;}
.y36{bottom:322.305000px;}
.yf7{bottom:324.105000px;}
.y117{bottom:325.545000px;}
.y1cb{bottom:325.905000px;}
.y17f{bottom:330.225000px;}
.y6c{bottom:331.665000px;}
.y140{bottom:332.025000px;}
.y12d{bottom:337.425000px;}
.y14e{bottom:338.145000px;}
.y1ca{bottom:339.585000px;}
.ya9{bottom:339.945000px;}
.y35{bottom:340.305000px;}
.ybd{bottom:342.105000px;}
.y116{bottom:343.545000px;}
.y17e{bottom:348.225000px;}
.ydc{bottom:349.665000px;}
.y6b{bottom:350.025000px;}
.y1c9{bottom:353.625000px;}
.y12c{bottom:355.785000px;}
.y14d{bottom:356.145000px;}
.ya8{bottom:357.945000px;}
.y34{bottom:358.665000px;}
.yf6{bottom:360.465000px;}
.y115{bottom:361.545000px;}
.y17d{bottom:366.225000px;}
.y1c8{bottom:367.305000px;}
.ydb{bottom:367.665000px;}
.y6a{bottom:368.025000px;}
.y12b{bottom:373.785000px;}
.y14c{bottom:374.505000px;}
.ya7{bottom:375.945000px;}
.y195{bottom:376.305000px;}
.y33{bottom:376.665000px;}
.yf5{bottom:378.465000px;}
.y114{bottom:379.545000px;}
.y1c7{bottom:380.985000px;}
.y17c{bottom:384.585000px;}
.y69{bottom:386.025000px;}
.y12a{bottom:391.785000px;}
.y14b{bottom:392.865000px;}
.ya6{bottom:394.305000px;}
.y32{bottom:394.665000px;}
.y1c6{bottom:395.025000px;}
.yf4{bottom:396.465000px;}
.y113{bottom:397.905000px;}
.y17b{bottom:402.630000px;}
.y68{bottom:404.070000px;}
.y13f{bottom:404.430000px;}
.y1c5{bottom:408.750000px;}
.y129{bottom:410.190000px;}
.y14a{bottom:411.270000px;}
.ya5{bottom:412.350000px;}
.y31{bottom:413.070000px;}
.yf3{bottom:414.870000px;}
.y112{bottom:415.950000px;}
.y17a{bottom:420.630000px;}
.yda{bottom:422.070000px;}
.y67{bottom:422.430000px;}
.y128{bottom:428.190000px;}
.y149{bottom:429.630000px;}
.ya4{bottom:430.350000px;}
.y30{bottom:431.070000px;}
.y111{bottom:433.950000px;}
.y1c4{bottom:436.470000px;}
.yf2{bottom:437.910000px;}
.y179{bottom:438.990000px;}
.yd9{bottom:440.070000px;}
.y66{bottom:440.430000px;}
.y127{bottom:446.190000px;}
.y148{bottom:447.990000px;}
.ya3{bottom:448.710000px;}
.y2f{bottom:449.070000px;}
.y1c3{bottom:450.150000px;}
.y110{bottom:452.310000px;}
.y178{bottom:456.990000px;}
.yf1{bottom:458.070000px;}
.y65{bottom:458.430000px;}
.y13e{bottom:458.790000px;}
.y1c2{bottom:463.830000px;}
.y126{bottom:464.550000px;}
.y147{bottom:465.990000px;}
.ya2{bottom:466.710000px;}
.y2e{bottom:467.430000px;}
.y10f{bottom:470.310000px;}
.y177{bottom:474.990000px;}
.yd8{bottom:476.430000px;}
.y64{bottom:476.790000px;}
.y1c1{bottom:477.870000px;}
.y125{bottom:483.630000px;}
.y146{bottom:483.990000px;}
.ya1{bottom:484.710000px;}
.y2d{bottom:485.430000px;}
.y10e{bottom:488.310000px;}
.y1c0{bottom:491.550000px;}
.y176{bottom:493.350000px;}
.yd7{bottom:494.430000px;}
.y63{bottom:494.790000px;}
.y145{bottom:502.350000px;}
.ya0{bottom:503.070000px;}
.y2c{bottom:503.430000px;}
.y1bf{bottom:505.230000px;}
.y10d{bottom:506.670000px;}
.y175{bottom:511.350000px;}
.y62{bottom:512.790000px;}
.y13d{bottom:513.150000px;}
.y1be{bottom:518.910000px;}
.y144{bottom:520.350000px;}
.y9f{bottom:521.070000px;}
.y10c{bottom:524.670000px;}
.y174{bottom:529.350000px;}
.y2b{bottom:529.710000px;}
.yd6{bottom:530.790000px;}
.y61{bottom:531.150000px;}
.y1bd{bottom:533.340000px;}
.y143{bottom:538.740000px;}
.y9e{bottom:539.100000px;}
.y13c{bottom:539.460000px;}
.y10b{bottom:542.700000px;}
.y1bc{bottom:547.020000px;}
.y173{bottom:547.740000px;}
.yd5{bottom:548.820000px;}
.y60{bottom:549.180000px;}
.y9d{bottom:557.460000px;}
.y1bb{bottom:560.700000px;}
.y10a{bottom:561.060000px;}
.y2a{bottom:565.740000px;}
.y5f{bottom:567.180000px;}
.y1ba{bottom:574.740000px;}
.y9c{bottom:575.460000px;}
.y109{bottom:579.060000px;}
.y172{bottom:583.740000px;}
.y29{bottom:584.100000px;}
.yd4{bottom:585.180000px;}
.y5e{bottom:585.540000px;}
.y1b9{bottom:588.420000px;}
.y9b{bottom:593.460000px;}
.y108{bottom:597.060000px;}
.y171{bottom:601.740000px;}
.y28{bottom:602.100000px;}
.yd3{bottom:603.180000px;}
.y5d{bottom:603.540000px;}
.y9a{bottom:611.460000px;}
.y107{bottom:615.060000px;}
.y1b8{bottom:616.140000px;}
.y27{bottom:620.100000px;}
.y5c{bottom:621.540000px;}
.y99{bottom:629.820000px;}
.y106{bottom:633.420000px;}
.y170{bottom:638.100000px;}
.y26{bottom:638.460000px;}
.y5b{bottom:639.540000px;}
.y1b7{bottom:643.500000px;}
.y98{bottom:647.820000px;}
.y105{bottom:651.420000px;}
.y16f{bottom:656.100000px;}
.y25{bottom:656.460000px;}
.yd2{bottom:657.540000px;}
.y5a{bottom:657.900000px;}
.y97{bottom:665.850000px;}
.y1b6{bottom:671.250000px;}
.y24{bottom:674.490000px;}
.yd1{bottom:675.570000px;}
.y59{bottom:675.930000px;}
.y96{bottom:684.210000px;}
.y1b5{bottom:684.930000px;}
.y16e{bottom:692.490000px;}
.y23{bottom:692.850000px;}
.y58{bottom:693.930000px;}
.y104{bottom:694.650000px;}
.y1b4{bottom:698.970000px;}
.y95{bottom:702.210000px;}
.y16d{bottom:710.490000px;}
.y22{bottom:710.850000px;}
.yd0{bottom:711.930000px;}
.y57{bottom:712.290000px;}
.y1b3{bottom:713.730000px;}
.y94{bottom:720.210000px;}
.y1b2{bottom:728.130000px;}
.y16c{bottom:728.850000px;}
.ycf{bottom:729.930000px;}
.y56{bottom:730.290000px;}
.y21{bottom:733.170000px;}
.y93{bottom:738.570000px;}
.y1b1{bottom:742.170000px;}
.y16b{bottom:746.850000px;}
.y55{bottom:748.290000px;}
.y92{bottom:756.570000px;}
.y16a{bottom:764.850000px;}
.y1b0{bottom:765.210000px;}
.yce{bottom:766.290000px;}
.y54{bottom:766.650000px;}
.y20{bottom:773.130000px;}
.y91{bottom:774.570000px;}
.yf0{bottom:779.610000px;}
.y169{bottom:783.210000px;}
.ycd{bottom:784.290000px;}
.y53{bottom:784.650000px;}
.y90{bottom:792.930000px;}
.yef{bottom:797.610000px;}
.y168{bottom:801.255000px;}
.y1af{bottom:801.615000px;}
.y52{bottom:802.695000px;}
.y1f{bottom:808.455000px;}
.y8f{bottom:810.975000px;}
.yee{bottom:816.015000px;}
.y167{bottom:819.255000px;}
.y1ae{bottom:819.615000px;}
.y51{bottom:821.055000px;}
.y1e{bottom:823.935000px;}
.ycc{bottom:825.735000px;}
.y8e{bottom:828.975000px;}
.yed{bottom:834.015000px;}
.y1ad{bottom:837.615000px;}
.y166{bottom:838.695000px;}
.y50{bottom:840.135000px;}
.y1d{bottom:845.175000px;}
.ycb{bottom:845.895000px;}
.y8d{bottom:846.975000px;}
.yec{bottom:852.015000px;}
.y1ac{bottom:855.975000px;}
.y165{bottom:857.775000px;}
.y4f{bottom:859.575000px;}
.y1c{bottom:861.015000px;}
.y8c{bottom:865.335000px;}
.ye9{bottom:866.699919px;}
.yeb{bottom:872.895000px;}
.y1ab{bottom:873.975000px;}
.y1b{bottom:876.495000px;}
.y4e{bottom:877.575000px;}
.y8b{bottom:883.335000px;}
.y164{bottom:889.815000px;}
.y1a{bottom:891.975000px;}
.y4d{bottom:895.575000px;}
.y8a{bottom:901.335000px;}
.y19{bottom:907.455000px;}
.y163{bottom:908.895000px;}
.y1aa{bottom:910.335000px;}
.y4c{bottom:913.935000px;}
.y89{bottom:919.695000px;}
.y18{bottom:922.935000px;}
.y1a9{bottom:928.335000px;}
.y162{bottom:928.695000px;}
.y4b{bottom:931.935000px;}
.y88{bottom:937.725000px;}
.y17{bottom:938.445000px;}
.y1a8{bottom:946.365000px;}
.y4a{bottom:949.965000px;}
.y16{bottom:953.925000px;}
.y87{bottom:955.725000px;}
.y1a7{bottom:964.725000px;}
.y1e1{bottom:966.885000px;}
.y49{bottom:967.965000px;}
.y15{bottom:969.405000px;}
.y161{bottom:970.845000px;}
.y86{bottom:974.085000px;}
.y1a6{bottom:982.725000px;}
.y14{bottom:985.245000px;}
.y48{bottom:986.325000px;}
.y160{bottom:989.925000px;}
.y85{bottom:992.085000px;}
.y1e0{bottom:998.925000px;}
.y13{bottom:1000.725000px;}
.y47{bottom:1004.325000px;}
.y84{bottom:1010.085000px;}
.y12{bottom:1016.205000px;}
.y1df{bottom:1017.285000px;}
.y1a5{bottom:1018.725000px;}
.y15f{bottom:1020.525000px;}
.y46{bottom:1022.325000px;}
.y83{bottom:1028.445000px;}
.y11{bottom:1031.685000px;}
.y1a4{bottom:1037.085000px;}
.y15e{bottom:1039.245000px;}
.y45{bottom:1040.685000px;}
.y82{bottom:1046.445000px;}
.y10{bottom:1047.165000px;}
.y1de{bottom:1048.965000px;}
.y1a3{bottom:1055.085000px;}
.y15d{bottom:1057.245000px;}
.y44{bottom:1058.685000px;}
.yf{bottom:1062.645000px;}
.y81{bottom:1064.445000px;}
.y1dd{bottom:1066.245000px;}
.y1a2{bottom:1073.130000px;}
.y15c{bottom:1075.650000px;}
.y43{bottom:1076.730000px;}
.ye{bottom:1078.170000px;}
.y80{bottom:1082.490000px;}
.y1dc{bottom:1083.570000px;}
.y1a1{bottom:1090.410000px;}
.y15b{bottom:1095.090000px;}
.y7f{bottom:1100.850000px;}
.y1a0{bottom:1107.690000px;}
.yd{bottom:1112.370000px;}
.y15a{bottom:1115.610000px;}
.y1db{bottom:1118.130000px;}
.y7e{bottom:1118.850000px;}
.y159{bottom:1134.690000px;}
.y19f{bottom:1135.410000px;}
.y7d{bottom:1136.850000px;}
.y1da{bottom:1152.690000px;}
.yc{bottom:1153.770000px;}
.y158{bottom:1154.130000px;}
.y7c{bottom:1155.210000px;}
.y1d9{bottom:1166.730000px;}
.y7b{bottom:1173.210000px;}
.y79{bottom:1214.640000px;}
.y2{bottom:1217.520000px;}
.y78{bottom:1233.360000px;}
.y1{bottom:1234.800000px;}
.h13{height:30.224862px;}
.h1d{height:34.482259px;}
.h1a{height:37.219595px;}
.h14{height:37.518076px;}
.hc{height:38.608594px;}
.h5{height:39.166875px;}
.ha{height:39.650625px;}
.h20{height:40.893770px;}
.h4{height:41.400000px;}
.h7{height:42.276094px;}
.h2{height:42.672656px;}
.h11{height:44.031094px;}
.h6{height:44.640000px;}
.h1e{height:44.798906px;}
.h9{height:46.736719px;}
.h1f{height:47.264766px;}
.h1b{height:49.727571px;}
.hd{height:49.848750px;}
.h18{height:50.774962px;}
.hf{height:51.548563px;}
.h15{height:53.038125px;}
.he{height:53.645625px;}
.h3{height:53.805938px;}
.h16{height:55.918125px;}
.h10{height:56.189531px;}
.h1c{height:59.029635px;}
.h17{height:63.140625px;}
.h19{height:63.715636px;}
.h12{height:64.054688px;}
.h21{height:65.884219px;}
.hb{height:106.330781px;}
.h8{height:128.109375px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:84.225882px;}
.w6{width:91.121308px;}
.w2{width:186.585000px;}
.w3{width:251.745000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:3.906315px;}
.x28{left:6.571244px;}
.x5{left:10.830000px;}
.x2a{left:12.594937px;}
.x29{left:30.958488px;}
.x26{left:40.814161px;}
.x2b{left:47.240025px;}
.x14{left:69.155987px;}
.xa{left:70.236000px;}
.x6{left:71.676000px;}
.x2f{left:75.275987px;}
.x25{left:78.527120px;}
.x9{left:81.036000px;}
.x2e{left:102.275987px;}
.xc{left:103.356000px;}
.x1f{left:125.315987px;}
.x16{left:148.391987px;}
.x19{left:154.514987px;}
.x31{left:162.434987px;}
.xb{left:177.915000px;}
.x30{left:189.074987px;}
.x24{left:260.804980px;}
.x1e{left:269.024987px;}
.x3{left:272.625000px;}
.x1d{left:274.424987px;}
.x13{left:278.384987px;}
.x7{left:330.630000px;}
.x2c{left:351.869987px;}
.x12{left:391.109987px;}
.x8{left:397.980000px;}
.x1a{left:429.659987px;}
.x15{left:441.539987px;}
.x2{left:442.980000px;}
.x11{left:446.579987px;}
.xe{left:457.380000px;}
.xd{left:468.180000px;}
.x4{left:471.420000px;}
.x20{left:487.289987px;}
.x1c{left:493.769987px;}
.x21{left:513.569987px;}
.x1b{left:521.849987px;}
.x18{left:529.769987px;}
.x1{left:540.930000px;}
.x22{left:554.609987px;}
.x23{left:559.289987px;}
.x2d{left:569.054987px;}
.xf{left:704.445000px;}
.x10{left:719.565000px;}
.x17{left:819.329987px;}
.x32{left:822.929987px;}
@media print{
.v4{vertical-align:-28.674925pt;}
.v7{vertical-align:-24.304258pt;}
.v3{vertical-align:-19.200000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.v5{vertical-align:5.120000pt;}
.v1{vertical-align:19.200000pt;}
.ls1b{letter-spacing:-1.728000pt;}
.lsf{letter-spacing:-1.712000pt;}
.ls2d{letter-spacing:-1.653333pt;}
.ls3b{letter-spacing:-1.600000pt;}
.ls1e{letter-spacing:-1.429333pt;}
.ls26{letter-spacing:-1.296000pt;}
.lsc{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-1.264000pt;}
.ls27{letter-spacing:-1.130667pt;}
.ls28{letter-spacing:-0.880000pt;}
.ls1a{letter-spacing:-0.864000pt;}
.lsd{letter-spacing:-0.832000pt;}
.ls1d{letter-spacing:-0.720000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.460800pt;}
.ls2e{letter-spacing:-0.448000pt;}
.ls39{letter-spacing:-0.445333pt;}
.ls6{letter-spacing:-0.432533pt;}
.ls1f{letter-spacing:-0.414933pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.268800pt;}
.ls37{letter-spacing:-0.222933pt;}
.lsa{letter-spacing:-0.013867pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.010667pt;}
.ls2{letter-spacing:0.014080pt;}
.ls4{letter-spacing:0.017920pt;}
.ls10{letter-spacing:0.018133pt;}
.ls16{letter-spacing:0.028587pt;}
.ls19{letter-spacing:0.106667pt;}
.ls2a{letter-spacing:0.120533pt;}
.ls13{letter-spacing:0.128000pt;}
.ls2b{letter-spacing:0.148267pt;}
.ls18{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.222933pt;}
.ls38{letter-spacing:0.344533pt;}
.ls1{letter-spacing:0.367360pt;}
.ls29{letter-spacing:0.399467pt;}
.ls2c{letter-spacing:0.414933pt;}
.ls17{letter-spacing:0.432533pt;}
.ls21{letter-spacing:0.432640pt;}
.ls3a{letter-spacing:0.445333pt;}
.ls14{letter-spacing:0.450667pt;}
.ls11{letter-spacing:0.591360pt;}
.ls25{letter-spacing:0.636160pt;}
.ls0{letter-spacing:0.640000pt;}
.ls33{letter-spacing:0.960000pt;}
.ls30{letter-spacing:1.680669pt;}
.ls34{letter-spacing:2.240000pt;}
.ls3{letter-spacing:4.480000pt;}
.ls24{letter-spacing:4.569600pt;}
.ls23{letter-spacing:13.601280pt;}
.ls36{letter-spacing:13.760000pt;}
.ls22{letter-spacing:14.809600pt;}
.ls15{letter-spacing:16.640000pt;}
.ls12{letter-spacing:23.454720pt;}
.ls35{letter-spacing:30.497280pt;}
.ls31{letter-spacing:36.254720pt;}
.ls32{letter-spacing:52.257280pt;}
.ls2f{letter-spacing:63.528513pt;}
.wsd{word-spacing:-53.760000pt;}
.ws23{word-spacing:-42.584533pt;}
.ws22{word-spacing:-42.240000pt;}
.ws12{word-spacing:-16.051773pt;}
.ws1f{word-spacing:-15.915310pt;}
.wse{word-spacing:-13.890667pt;}
.wsf{word-spacing:-13.872533pt;}
.ws1d{word-spacing:-13.854933pt;}
.ws18{word-spacing:-13.839467pt;}
.ws9{word-spacing:-13.458133pt;}
.ws13{word-spacing:-13.457920pt;}
.ws3{word-spacing:-13.440000pt;}
.ws21{word-spacing:-13.025067pt;}
.wsc{word-spacing:-13.007467pt;}
.ws1e{word-spacing:-12.992000pt;}
.ws14{word-spacing:-12.608000pt;}
.ws20{word-spacing:-12.576000pt;}
.ws17{word-spacing:-12.560000pt;}
.ws1b{word-spacing:-12.242133pt;}
.ws15{word-spacing:-12.160000pt;}
.ws16{word-spacing:-12.144000pt;}
.ws19{word-spacing:-11.827200pt;}
.ws1{word-spacing:-11.200000pt;}
.wsb{word-spacing:-11.151360pt;}
.ws25{word-spacing:-11.005333pt;}
.ws6{word-spacing:-10.782933pt;}
.ws0{word-spacing:-10.560000pt;}
.ws5{word-spacing:-10.546133pt;}
.ws24{word-spacing:-10.114667pt;}
.ws7{word-spacing:-9.920000pt;}
.ws8{word-spacing:-8.640000pt;}
.ws1c{word-spacing:-0.785920pt;}
.wsa{word-spacing:0.000000pt;}
.ws1a{word-spacing:2.083200pt;}
.ws10{word-spacing:6.387312pt;}
.ws2{word-spacing:26.464960pt;}
.ws4{word-spacing:26.592853pt;}
.ws11{word-spacing:127.470118pt;}
._2b{margin-left:-165.715750pt;}
._3d{margin-left:-136.374776pt;}
._2c{margin-left:-122.935713pt;}
._3c{margin-left:-115.895497pt;}
._2a{margin-left:-113.170786pt;}
._2d{margin-left:-72.997447pt;}
._29{margin-left:-4.730156pt;}
._9{margin-left:-3.817019pt;}
._2{margin-left:-2.258135pt;}
._0{margin-left:-1.290132pt;}
._1{width:1.021332pt;}
._4{width:1.957333pt;}
._5{width:3.576018pt;}
._6{width:4.470472pt;}
._e{width:5.447995pt;}
._d{width:6.397381pt;}
._11{width:7.490706pt;}
._10{width:8.606935pt;}
._f{width:10.163308pt;}
._17{width:11.171843pt;}
._1b{width:12.310932pt;}
._12{width:13.274079pt;}
._8{width:14.935020pt;}
._7{width:16.072041pt;}
._26{width:16.989343pt;}
._13{width:17.901865pt;}
._14{width:19.203632pt;}
._a{width:20.915249pt;}
._b{width:22.328008pt;}
._c{width:23.235820pt;}
._1a{width:24.406932pt;}
._19{width:25.750932pt;}
._43{width:26.672963pt;}
._25{width:27.574224pt;}
._24{width:28.707195pt;}
._23{width:30.374400pt;}
._2e{width:32.040852pt;}
._2f{width:32.954880pt;}
._1d{width:33.975997pt;}
._1c{width:35.266668pt;}
._36{width:37.148160pt;}
._27{width:38.169815pt;}
._20{width:39.459732pt;}
._21{width:40.642130pt;}
._1f{width:41.717868pt;}
._22{width:43.147839pt;}
._37{width:44.504771pt;}
._16{width:45.596882pt;}
._15{width:46.617669pt;}
._18{width:48.148265pt;}
._30{width:51.340692pt;}
._3b{width:56.716692pt;}
._1e{width:59.456786pt;}
._41{width:60.572160pt;}
._42{width:61.595697pt;}
._32{width:63.813765pt;}
._33{width:64.781338pt;}
._31{width:66.500905pt;}
._38{width:67.684378pt;}
._34{width:68.705280pt;}
._35{width:70.587095pt;}
._3f{width:89.477120pt;}
._40{width:90.619203pt;}
._28{width:121.766400pt;}
._3a{width:125.583360pt;}
._39{width:127.876482pt;}
._3e{width:512.579345pt;}
._3{width:519.269333pt;}
.fs6{font-size:34.560000pt;}
.fsc{font-size:37.187818pt;}
.fs9{font-size:37.486045pt;}
.fs1{font-size:42.240000pt;}
.fsd{font-size:44.524424pt;}
.fs4{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs7{font-size:56.667449pt;}
.fs3{font-size:58.880000pt;}
.fsb{font-size:63.661238pt;}
.fs8{font-size:64.000000pt;}
.fsa{font-size:64.207093pt;}
.fs5{font-size:106.240000pt;}
.fs2{font-size:128.000000pt;}
.y7a{bottom:-7.040000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.560000pt;}
.y190{bottom:3.664618pt;}
.yb{bottom:5.440000pt;}
.y192{bottom:7.618641pt;}
.y8{bottom:10.592000pt;}
.y4{bottom:12.512000pt;}
.yea{bottom:12.722829pt;}
.y6{bottom:14.720000pt;}
.y3{bottom:16.992000pt;}
.ya{bottom:17.600000pt;}
.y18f{bottom:20.026666pt;}
.y191{bottom:26.102731pt;}
.y5{bottom:26.880000pt;}
.y9{bottom:29.760000pt;}
.y193{bottom:30.024292pt;}
.y194{bottom:30.057016pt;}
.yca{bottom:72.352000pt;}
.y13b{bottom:74.592000pt;}
.y157{bottom:74.912000pt;}
.y18e{bottom:76.333333pt;}
.ybc{bottom:76.832000pt;}
.y1d8{bottom:77.152000pt;}
.y103{bottom:78.752000pt;}
.y124{bottom:80.032000pt;}
.yb4{bottom:81.632000pt;}
.ye8{bottom:83.232000pt;}
.y18c{bottom:84.192000pt;}
.y42{bottom:85.792000pt;}
.yc9{bottom:88.352000pt;}
.y1d7{bottom:89.312000pt;}
.y13a{bottom:90.592000pt;}
.y156{bottom:90.912000pt;}
.ybb{bottom:92.832000pt;}
.y102{bottom:94.752000pt;}
.y123{bottom:96.032000pt;}
.y18d{bottom:96.352000pt;}
.y41{bottom:98.272000pt;}
.yb3{bottom:98.592000pt;}
.ye7{bottom:99.552000pt;}
.y18b{bottom:100.192000pt;}
.y1d6{bottom:101.472000pt;}
.y77{bottom:101.792000pt;}
.yc8{bottom:104.352000pt;}
.y139{bottom:106.912000pt;}
.yba{bottom:108.832000pt;}
.y40{bottom:110.432000pt;}
.y101{bottom:111.072000pt;}
.y122{bottom:112.032000pt;}
.y1d5{bottom:113.952000pt;}
.ye6{bottom:115.552000pt;}
.yb2{bottom:115.872000pt;}
.y18a{bottom:116.192000pt;}
.y19e{bottom:117.184000pt;}
.y76{bottom:117.824000pt;}
.yc7{bottom:120.704000pt;}
.y138{bottom:122.944000pt;}
.y155{bottom:123.264000pt;}
.yb9{bottom:124.864000pt;}
.y1d4{bottom:126.144000pt;}
.y100{bottom:127.104000pt;}
.y121{bottom:128.064000pt;}
.ye5{bottom:131.584000pt;}
.y189{bottom:132.544000pt;}
.yb1{bottom:132.864000pt;}
.y75{bottom:133.826667pt;}
.y19d{bottom:134.786667pt;}
.y3f{bottom:135.106667pt;}
.yc6{bottom:136.706667pt;}
.y1d3{bottom:138.306667pt;}
.y137{bottom:138.946667pt;}
.y154{bottom:139.266667pt;}
.yb8{bottom:141.186667pt;}
.yff{bottom:143.106667pt;}
.y120{bottom:144.386667pt;}
.y3e{bottom:147.266667pt;}
.ye4{bottom:147.586667pt;}
.y188{bottom:148.546667pt;}
.y74{bottom:149.826667pt;}
.yb0{bottom:150.146667pt;}
.y1d2{bottom:150.786667pt;}
.y19c{bottom:152.386667pt;}
.yc5{bottom:152.706667pt;}
.y136{bottom:155.266667pt;}
.yb7{bottom:157.186667pt;}
.y3d{bottom:159.426667pt;}
.y11f{bottom:160.386667pt;}
.y1d1{bottom:162.946667pt;}
.ye3{bottom:163.906667pt;}
.y187{bottom:164.546667pt;}
.y73{bottom:166.146667pt;}
.yc4{bottom:169.026667pt;}
.y19b{bottom:169.986667pt;}
.y135{bottom:171.266667pt;}
.y3c{bottom:171.906667pt;}
.yb6{bottom:173.186667pt;}
.y1d0{bottom:175.106667pt;}
.yfe{bottom:175.426667pt;}
.y11e{bottom:176.386667pt;}
.ye2{bottom:179.906667pt;}
.y186{bottom:180.866667pt;}
.y72{bottom:182.146667pt;}
.y3b{bottom:184.386667pt;}
.yc3{bottom:185.026667pt;}
.y134{bottom:187.266667pt;}
.y153{bottom:187.586667pt;}
.yaf{bottom:189.506667pt;}
.yfd{bottom:191.426667pt;}
.y11d{bottom:192.706667pt;}
.ye1{bottom:195.906667pt;}
.y185{bottom:196.866667pt;}
.y3a{bottom:198.146667pt;}
.y142{bottom:198.466667pt;}
.y1cf{bottom:199.746667pt;}
.yc2{bottom:201.026667pt;}
.y133{bottom:203.586667pt;}
.y19a{bottom:205.186667pt;}
.yb5{bottom:205.506667pt;}
.yfc{bottom:207.746667pt;}
.y11c{bottom:208.706667pt;}
.y39{bottom:211.906667pt;}
.y184{bottom:212.866667pt;}
.ye0{bottom:213.186667pt;}
.y71{bottom:214.466667pt;}
.yc1{bottom:217.026667pt;}
.y132{bottom:219.586667pt;}
.yae{bottom:221.506667pt;}
.y199{bottom:222.786667pt;}
.yfb{bottom:223.746667pt;}
.y11b{bottom:224.706667pt;}
.y38{bottom:225.666667pt;}
.y183{bottom:229.186667pt;}
.ydf{bottom:230.146667pt;}
.y70{bottom:230.466667pt;}
.y1ce{bottom:232.706667pt;}
.yc0{bottom:233.346667pt;}
.y131{bottom:235.613333pt;}
.y152{bottom:235.933333pt;}
.yad{bottom:237.853333pt;}
.yfa{bottom:239.773333pt;}
.y198{bottom:240.413333pt;}
.y11a{bottom:241.053333pt;}
.y182{bottom:245.213333pt;}
.y6f{bottom:246.493333pt;}
.y141{bottom:246.813333pt;}
.ybf{bottom:249.373333pt;}
.y130{bottom:251.613333pt;}
.y151{bottom:252.253333pt;}
.yac{bottom:253.853333pt;}
.yf9{bottom:255.773333pt;}
.y119{bottom:257.053333pt;}
.y197{bottom:258.333333pt;}
.y181{bottom:261.213333pt;}
.yde{bottom:262.493333pt;}
.y6e{bottom:262.813333pt;}
.y1cd{bottom:263.773333pt;}
.ybe{bottom:265.373333pt;}
.y12f{bottom:267.933333pt;}
.y150{bottom:268.253333pt;}
.yab{bottom:269.853333pt;}
.y37{bottom:270.493333pt;}
.yf8{bottom:272.093333pt;}
.y118{bottom:273.053333pt;}
.y196{bottom:275.933333pt;}
.y1cc{bottom:276.893333pt;}
.y180{bottom:277.213333pt;}
.ydd{bottom:278.493333pt;}
.y6d{bottom:278.813333pt;}
.y12e{bottom:283.933333pt;}
.y14f{bottom:284.573333pt;}
.yaa{bottom:286.173333pt;}
.y36{bottom:286.493333pt;}
.yf7{bottom:288.093333pt;}
.y117{bottom:289.373333pt;}
.y1cb{bottom:289.693333pt;}
.y17f{bottom:293.533333pt;}
.y6c{bottom:294.813333pt;}
.y140{bottom:295.133333pt;}
.y12d{bottom:299.933333pt;}
.y14e{bottom:300.573333pt;}
.y1ca{bottom:301.853333pt;}
.ya9{bottom:302.173333pt;}
.y35{bottom:302.493333pt;}
.ybd{bottom:304.093333pt;}
.y116{bottom:305.373333pt;}
.y17e{bottom:309.533333pt;}
.ydc{bottom:310.813333pt;}
.y6b{bottom:311.133333pt;}
.y1c9{bottom:314.333333pt;}
.y12c{bottom:316.253333pt;}
.y14d{bottom:316.573333pt;}
.ya8{bottom:318.173333pt;}
.y34{bottom:318.813333pt;}
.yf6{bottom:320.413333pt;}
.y115{bottom:321.373333pt;}
.y17d{bottom:325.533333pt;}
.y1c8{bottom:326.493333pt;}
.ydb{bottom:326.813333pt;}
.y6a{bottom:327.133333pt;}
.y12b{bottom:332.253333pt;}
.y14c{bottom:332.893333pt;}
.ya7{bottom:334.173333pt;}
.y195{bottom:334.493333pt;}
.y33{bottom:334.813333pt;}
.yf5{bottom:336.413333pt;}
.y114{bottom:337.373333pt;}
.y1c7{bottom:338.653333pt;}
.y17c{bottom:341.853333pt;}
.y69{bottom:343.133333pt;}
.y12a{bottom:348.253333pt;}
.y14b{bottom:349.213333pt;}
.ya6{bottom:350.493333pt;}
.y32{bottom:350.813333pt;}
.y1c6{bottom:351.133333pt;}
.yf4{bottom:352.413333pt;}
.y113{bottom:353.693333pt;}
.y17b{bottom:357.893333pt;}
.y68{bottom:359.173333pt;}
.y13f{bottom:359.493333pt;}
.y1c5{bottom:363.333333pt;}
.y129{bottom:364.613333pt;}
.y14a{bottom:365.573333pt;}
.ya5{bottom:366.533333pt;}
.y31{bottom:367.173333pt;}
.yf3{bottom:368.773333pt;}
.y112{bottom:369.733333pt;}
.y17a{bottom:373.893333pt;}
.yda{bottom:375.173333pt;}
.y67{bottom:375.493333pt;}
.y128{bottom:380.613333pt;}
.y149{bottom:381.893333pt;}
.ya4{bottom:382.533333pt;}
.y30{bottom:383.173333pt;}
.y111{bottom:385.733333pt;}
.y1c4{bottom:387.973333pt;}
.yf2{bottom:389.253333pt;}
.y179{bottom:390.213333pt;}
.yd9{bottom:391.173333pt;}
.y66{bottom:391.493333pt;}
.y127{bottom:396.613333pt;}
.y148{bottom:398.213333pt;}
.ya3{bottom:398.853333pt;}
.y2f{bottom:399.173333pt;}
.y1c3{bottom:400.133333pt;}
.y110{bottom:402.053333pt;}
.y178{bottom:406.213333pt;}
.yf1{bottom:407.173333pt;}
.y65{bottom:407.493333pt;}
.y13e{bottom:407.813333pt;}
.y1c2{bottom:412.293333pt;}
.y126{bottom:412.933333pt;}
.y147{bottom:414.213333pt;}
.ya2{bottom:414.853333pt;}
.y2e{bottom:415.493333pt;}
.y10f{bottom:418.053333pt;}
.y177{bottom:422.213333pt;}
.yd8{bottom:423.493333pt;}
.y64{bottom:423.813333pt;}
.y1c1{bottom:424.773333pt;}
.y125{bottom:429.893333pt;}
.y146{bottom:430.213333pt;}
.ya1{bottom:430.853333pt;}
.y2d{bottom:431.493333pt;}
.y10e{bottom:434.053333pt;}
.y1c0{bottom:436.933333pt;}
.y176{bottom:438.533333pt;}
.yd7{bottom:439.493333pt;}
.y63{bottom:439.813333pt;}
.y145{bottom:446.533333pt;}
.ya0{bottom:447.173333pt;}
.y2c{bottom:447.493333pt;}
.y1bf{bottom:449.093333pt;}
.y10d{bottom:450.373333pt;}
.y175{bottom:454.533333pt;}
.y62{bottom:455.813333pt;}
.y13d{bottom:456.133333pt;}
.y1be{bottom:461.253333pt;}
.y144{bottom:462.533333pt;}
.y9f{bottom:463.173333pt;}
.y10c{bottom:466.373333pt;}
.y174{bottom:470.533333pt;}
.y2b{bottom:470.853333pt;}
.yd6{bottom:471.813333pt;}
.y61{bottom:472.133333pt;}
.y1bd{bottom:474.080000pt;}
.y143{bottom:478.880000pt;}
.y9e{bottom:479.200000pt;}
.y13c{bottom:479.520000pt;}
.y10b{bottom:482.400000pt;}
.y1bc{bottom:486.240000pt;}
.y173{bottom:486.880000pt;}
.yd5{bottom:487.840000pt;}
.y60{bottom:488.160000pt;}
.y9d{bottom:495.520000pt;}
.y1bb{bottom:498.400000pt;}
.y10a{bottom:498.720000pt;}
.y2a{bottom:502.880000pt;}
.y5f{bottom:504.160000pt;}
.y1ba{bottom:510.880000pt;}
.y9c{bottom:511.520000pt;}
.y109{bottom:514.720000pt;}
.y172{bottom:518.880000pt;}
.y29{bottom:519.200000pt;}
.yd4{bottom:520.160000pt;}
.y5e{bottom:520.480000pt;}
.y1b9{bottom:523.040000pt;}
.y9b{bottom:527.520000pt;}
.y108{bottom:530.720000pt;}
.y171{bottom:534.880000pt;}
.y28{bottom:535.200000pt;}
.yd3{bottom:536.160000pt;}
.y5d{bottom:536.480000pt;}
.y9a{bottom:543.520000pt;}
.y107{bottom:546.720000pt;}
.y1b8{bottom:547.680000pt;}
.y27{bottom:551.200000pt;}
.y5c{bottom:552.480000pt;}
.y99{bottom:559.840000pt;}
.y106{bottom:563.040000pt;}
.y170{bottom:567.200000pt;}
.y26{bottom:567.520000pt;}
.y5b{bottom:568.480000pt;}
.y1b7{bottom:572.000000pt;}
.y98{bottom:575.840000pt;}
.y105{bottom:579.040000pt;}
.y16f{bottom:583.200000pt;}
.y25{bottom:583.520000pt;}
.yd2{bottom:584.480000pt;}
.y5a{bottom:584.800000pt;}
.y97{bottom:591.866667pt;}
.y1b6{bottom:596.666667pt;}
.y24{bottom:599.546667pt;}
.yd1{bottom:600.506667pt;}
.y59{bottom:600.826667pt;}
.y96{bottom:608.186667pt;}
.y1b5{bottom:608.826667pt;}
.y16e{bottom:615.546667pt;}
.y23{bottom:615.866667pt;}
.y58{bottom:616.826667pt;}
.y104{bottom:617.466667pt;}
.y1b4{bottom:621.306667pt;}
.y95{bottom:624.186667pt;}
.y16d{bottom:631.546667pt;}
.y22{bottom:631.866667pt;}
.yd0{bottom:632.826667pt;}
.y57{bottom:633.146667pt;}
.y1b3{bottom:634.426667pt;}
.y94{bottom:640.186667pt;}
.y1b2{bottom:647.226667pt;}
.y16c{bottom:647.866667pt;}
.ycf{bottom:648.826667pt;}
.y56{bottom:649.146667pt;}
.y21{bottom:651.706667pt;}
.y93{bottom:656.506667pt;}
.y1b1{bottom:659.706667pt;}
.y16b{bottom:663.866667pt;}
.y55{bottom:665.146667pt;}
.y92{bottom:672.506667pt;}
.y16a{bottom:679.866667pt;}
.y1b0{bottom:680.186667pt;}
.yce{bottom:681.146667pt;}
.y54{bottom:681.466667pt;}
.y20{bottom:687.226667pt;}
.y91{bottom:688.506667pt;}
.yf0{bottom:692.986667pt;}
.y169{bottom:696.186667pt;}
.ycd{bottom:697.146667pt;}
.y53{bottom:697.466667pt;}
.y90{bottom:704.826667pt;}
.yef{bottom:708.986667pt;}
.y168{bottom:712.226667pt;}
.y1af{bottom:712.546667pt;}
.y52{bottom:713.506667pt;}
.y1f{bottom:718.626667pt;}
.y8f{bottom:720.866667pt;}
.yee{bottom:725.346667pt;}
.y167{bottom:728.226667pt;}
.y1ae{bottom:728.546667pt;}
.y51{bottom:729.826667pt;}
.y1e{bottom:732.386667pt;}
.ycc{bottom:733.986667pt;}
.y8e{bottom:736.866667pt;}
.yed{bottom:741.346667pt;}
.y1ad{bottom:744.546667pt;}
.y166{bottom:745.506667pt;}
.y50{bottom:746.786667pt;}
.y1d{bottom:751.266667pt;}
.ycb{bottom:751.906667pt;}
.y8d{bottom:752.866667pt;}
.yec{bottom:757.346667pt;}
.y1ac{bottom:760.866667pt;}
.y165{bottom:762.466667pt;}
.y4f{bottom:764.066667pt;}
.y1c{bottom:765.346667pt;}
.y8c{bottom:769.186667pt;}
.ye9{bottom:770.399928pt;}
.yeb{bottom:775.906667pt;}
.y1ab{bottom:776.866667pt;}
.y1b{bottom:779.106667pt;}
.y4e{bottom:780.066667pt;}
.y8b{bottom:785.186667pt;}
.y164{bottom:790.946667pt;}
.y1a{bottom:792.866667pt;}
.y4d{bottom:796.066667pt;}
.y8a{bottom:801.186667pt;}
.y19{bottom:806.626667pt;}
.y163{bottom:807.906667pt;}
.y1aa{bottom:809.186667pt;}
.y4c{bottom:812.386667pt;}
.y89{bottom:817.506667pt;}
.y18{bottom:820.386667pt;}
.y1a9{bottom:825.186667pt;}
.y162{bottom:825.506667pt;}
.y4b{bottom:828.386667pt;}
.y88{bottom:833.533333pt;}
.y17{bottom:834.173333pt;}
.y1a8{bottom:841.213333pt;}
.y4a{bottom:844.413333pt;}
.y16{bottom:847.933333pt;}
.y87{bottom:849.533333pt;}
.y1a7{bottom:857.533333pt;}
.y1e1{bottom:859.453333pt;}
.y49{bottom:860.413333pt;}
.y15{bottom:861.693333pt;}
.y161{bottom:862.973333pt;}
.y86{bottom:865.853333pt;}
.y1a6{bottom:873.533333pt;}
.y14{bottom:875.773333pt;}
.y48{bottom:876.733333pt;}
.y160{bottom:879.933333pt;}
.y85{bottom:881.853333pt;}
.y1e0{bottom:887.933333pt;}
.y13{bottom:889.533333pt;}
.y47{bottom:892.733333pt;}
.y84{bottom:897.853333pt;}
.y12{bottom:903.293333pt;}
.y1df{bottom:904.253333pt;}
.y1a5{bottom:905.533333pt;}
.y15f{bottom:907.133333pt;}
.y46{bottom:908.733333pt;}
.y83{bottom:914.173333pt;}
.y11{bottom:917.053333pt;}
.y1a4{bottom:921.853333pt;}
.y15e{bottom:923.773333pt;}
.y45{bottom:925.053333pt;}
.y82{bottom:930.173333pt;}
.y10{bottom:930.813333pt;}
.y1de{bottom:932.413333pt;}
.y1a3{bottom:937.853333pt;}
.y15d{bottom:939.773333pt;}
.y44{bottom:941.053333pt;}
.yf{bottom:944.573333pt;}
.y81{bottom:946.173333pt;}
.y1dd{bottom:947.773333pt;}
.y1a2{bottom:953.893333pt;}
.y15c{bottom:956.133333pt;}
.y43{bottom:957.093333pt;}
.ye{bottom:958.373333pt;}
.y80{bottom:962.213333pt;}
.y1dc{bottom:963.173333pt;}
.y1a1{bottom:969.253333pt;}
.y15b{bottom:973.413333pt;}
.y7f{bottom:978.533333pt;}
.y1a0{bottom:984.613333pt;}
.yd{bottom:988.773333pt;}
.y15a{bottom:991.653333pt;}
.y1db{bottom:993.893333pt;}
.y7e{bottom:994.533333pt;}
.y159{bottom:1008.613333pt;}
.y19f{bottom:1009.253333pt;}
.y7d{bottom:1010.533333pt;}
.y1da{bottom:1024.613333pt;}
.yc{bottom:1025.573333pt;}
.y158{bottom:1025.893333pt;}
.y7c{bottom:1026.853333pt;}
.y1d9{bottom:1037.093333pt;}
.y7b{bottom:1042.853333pt;}
.y79{bottom:1079.680000pt;}
.y2{bottom:1082.240000pt;}
.y78{bottom:1096.320000pt;}
.y1{bottom:1097.600000pt;}
.h13{height:26.866544pt;}
.h1d{height:30.650897pt;}
.h1a{height:33.084084pt;}
.h14{height:33.349401pt;}
.hc{height:34.318750pt;}
.h5{height:34.815000pt;}
.ha{height:35.245000pt;}
.h20{height:36.350018pt;}
.h4{height:36.800000pt;}
.h7{height:37.578750pt;}
.h2{height:37.931250pt;}
.h11{height:39.138750pt;}
.h6{height:39.680000pt;}
.h1e{height:39.821250pt;}
.h9{height:41.543750pt;}
.h1f{height:42.013125pt;}
.h1b{height:44.202286pt;}
.hd{height:44.310000pt;}
.h18{height:45.133300pt;}
.hf{height:45.820945pt;}
.h15{height:47.145000pt;}
.he{height:47.685000pt;}
.h3{height:47.827500pt;}
.h16{height:49.705000pt;}
.h10{height:49.946250pt;}
.h1c{height:52.470786pt;}
.h17{height:56.125000pt;}
.h19{height:56.636121pt;}
.h12{height:56.937500pt;}
.h21{height:58.563750pt;}
.hb{height:94.516250pt;}
.h8{height:113.875000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:74.867450pt;}
.w6{width:80.996719pt;}
.w2{width:165.853333pt;}
.w3{width:223.773333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:3.472280pt;}
.x28{left:5.841105pt;}
.x5{left:9.626667pt;}
.x2a{left:11.195499pt;}
.x29{left:27.518656pt;}
.x26{left:36.279254pt;}
.x2b{left:41.991133pt;}
.x14{left:61.471988pt;}
.xa{left:62.432000pt;}
.x6{left:63.712000pt;}
.x2f{left:66.911988pt;}
.x25{left:69.801884pt;}
.x9{left:72.032000pt;}
.x2e{left:90.911988pt;}
.xc{left:91.872000pt;}
.x1f{left:111.391988pt;}
.x16{left:131.903988pt;}
.x19{left:137.346655pt;}
.x31{left:144.386655pt;}
.xb{left:158.146667pt;}
.x30{left:168.066655pt;}
.x24{left:231.826649pt;}
.x1e{left:239.133322pt;}
.x3{left:242.333333pt;}
.x1d{left:243.933322pt;}
.x13{left:247.453322pt;}
.x7{left:293.893333pt;}
.x2c{left:312.773322pt;}
.x12{left:347.653322pt;}
.x8{left:353.760000pt;}
.x1a{left:381.919988pt;}
.x15{left:392.479988pt;}
.x2{left:393.760000pt;}
.x11{left:396.959988pt;}
.xe{left:406.560000pt;}
.xd{left:416.160000pt;}
.x4{left:419.040000pt;}
.x20{left:433.146655pt;}
.x1c{left:438.906655pt;}
.x21{left:456.506655pt;}
.x1b{left:463.866655pt;}
.x18{left:470.906655pt;}
.x1{left:480.826667pt;}
.x22{left:492.986655pt;}
.x23{left:497.146655pt;}
.x2d{left:505.826655pt;}
.xf{left:626.173333pt;}
.x10{left:639.613333pt;}
.x17{left:728.293322pt;}
.x32{left:731.493322pt;}
}




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