
    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_74caca4c4d2b2473535d9137.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_1ffcb434e4a43eaa0961d9f8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.086000;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_4d96bacffac72625858a82c4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.086000;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_3b57bd9dfe7c20fd02f926a0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_a0f3c1e35b6616f01aa44c21.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.102000;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_1c6c784c994243fa390b4ffd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088000;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_47786bf32d38a7166228e23b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.678000;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_78b707faa393badfabb78a15.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.086000;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_74caca4c4d2b2473535d9137.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_01cc5b9ff2f130870f9fc74d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.086000;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_74caca4c4d2b2473535d9137.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_dc41ba2aa490083d0694735c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.102000;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_f13e8d6e101e596e1f99284a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.980000;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_ce787b1f20520f6764272c05.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.667000;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_df2184278ef5b52cd1534d6a.woff2')format("woff");}.fff{font-family:fff;line-height:1.086000;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_39727424aed8a08cee2a6984.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.088000;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1{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.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.974000px;}
.v5{vertical-align:15.983400px;}
.v2{vertical-align:19.980000px;}
.v4{vertical-align:31.968000px;}
.ls23{letter-spacing:-0.864000px;}
.ls27{letter-spacing:-0.600000px;}
.ls2c{letter-spacing:-0.480000px;}
.ls29{letter-spacing:-0.300000px;}
.ls8{letter-spacing:-0.285600px;}
.ls28{letter-spacing:-0.240000px;}
.ls3{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.146916px;}
.ls25{letter-spacing:0.209880px;}
.ls2{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.480000px;}
.ls20{letter-spacing:0.576000px;}
.lse{letter-spacing:0.600000px;}
.ls5{letter-spacing:0.780000px;}
.ls26{letter-spacing:0.895488px;}
.lsb{letter-spacing:0.900000px;}
.ls6{letter-spacing:0.960000px;}
.lsf{letter-spacing:1.020000px;}
.lsc{letter-spacing:1.140000px;}
.ls18{letter-spacing:1.200000px;}
.ls10{letter-spacing:1.399200px;}
.ls1a{letter-spacing:1.872000px;}
.ls2d{letter-spacing:1.920000px;}
.ls9{letter-spacing:2.100000px;}
.ls19{letter-spacing:2.400000px;}
.ls24{letter-spacing:2.448600px;}
.ls2b{letter-spacing:2.520000px;}
.ls7{letter-spacing:2.856000px;}
.ls2a{letter-spacing:2.940000px;}
.ls12{letter-spacing:3.312000px;}
.lsa{letter-spacing:3.360000px;}
.ls11{letter-spacing:3.744000px;}
.ls17{letter-spacing:3.936000px;}
.ls21{letter-spacing:4.080000px;}
.ls0{letter-spacing:4.200000px;}
.ls22{letter-spacing:4.224000px;}
.ls1d{letter-spacing:4.416000px;}
.ls1b{letter-spacing:4.464000px;}
.ls15{letter-spacing:4.512000px;}
.ls1c{letter-spacing:4.752000px;}
.ls1f{letter-spacing:5.040000px;}
.ls1e{letter-spacing:5.088000px;}
.ls16{letter-spacing:5.184000px;}
.lsd{letter-spacing:5.520000px;}
.ls14{letter-spacing:5.904000px;}
.ls13{letter-spacing:6.096000px;}
.ls1{letter-spacing:7.200000px;}
.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;}
}
.ws31{word-spacing:-16.800000px;}
.ws18{word-spacing:-16.416000px;}
.ws15{word-spacing:-16.176000px;}
.ws12{word-spacing:-16.020000px;}
.ws16{word-spacing:-15.600000px;}
.ws30{word-spacing:-14.887488px;}
.ws17{word-spacing:-14.016000px;}
.ws13{word-spacing:-13.824000px;}
.ws3a{word-spacing:-13.440000px;}
.ws14{word-spacing:-13.392000px;}
.ws3c{word-spacing:-13.020000px;}
.ws33{word-spacing:-12.600000px;}
.ws3f{word-spacing:-12.480000px;}
.ws44{word-spacing:-12.000000px;}
.ws3e{word-spacing:-11.760000px;}
.ws42{word-spacing:-11.040000px;}
.wsa{word-spacing:-10.500000px;}
.ws7{word-spacing:-10.200000px;}
.ws10{word-spacing:-10.144200px;}
.ws40{word-spacing:-10.080000px;}
.ws6{word-spacing:-9.914400px;}
.ws32{word-spacing:-9.794400px;}
.ws2f{word-spacing:-9.600000px;}
.ws35{word-spacing:-9.000000px;}
.ws2e{word-spacing:-8.954880px;}
.ws8{word-spacing:-8.568000px;}
.ws41{word-spacing:-7.680000px;}
.ws34{word-spacing:-7.345800px;}
.ws45{word-spacing:-7.275840px;}
.ws43{word-spacing:-7.200000px;}
.ws46{word-spacing:-6.268416px;}
.ws1f{word-spacing:-5.904000px;}
.ws3b{word-spacing:-5.596800px;}
.ws1c{word-spacing:-5.520000px;}
.ws21{word-spacing:-5.184000px;}
.ws9{word-spacing:-5.142060px;}
.ws28{word-spacing:-5.088000px;}
.ws29{word-spacing:-5.040000px;}
.ws26{word-spacing:-4.752000px;}
.ws20{word-spacing:-4.512000px;}
.ws25{word-spacing:-4.464000px;}
.ws27{word-spacing:-4.416000px;}
.ws2c{word-spacing:-4.224000px;}
.ws36{word-spacing:-4.200000px;}
.ws2b{word-spacing:-4.080000px;}
.ws19{word-spacing:-3.360000px;}
.ws3d{word-spacing:-2.940000px;}
.wsb{word-spacing:-2.856000px;}
.ws37{word-spacing:-2.448600px;}
.ws23{word-spacing:-2.400000px;}
.wsc{word-spacing:-2.100000px;}
.ws24{word-spacing:-1.872000px;}
.ws22{word-spacing:-1.200000px;}
.ws1b{word-spacing:-1.140000px;}
.ws1e{word-spacing:-1.020000px;}
.wse{word-spacing:-1.008000px;}
.ws4{word-spacing:-0.960000px;}
.ws1a{word-spacing:-0.900000px;}
.ws2{word-spacing:-0.780000px;}
.ws1d{word-spacing:-0.600000px;}
.ws2a{word-spacing:-0.576000px;}
.ws1{word-spacing:-0.480000px;}
.ws3{word-spacing:-0.300000px;}
.ws11{word-spacing:-0.042000px;}
.ws0{word-spacing:0.000000px;}
.wsf{word-spacing:0.168000px;}
.ws38{word-spacing:0.240000px;}
.wsd{word-spacing:0.294000px;}
.ws39{word-spacing:0.300000px;}
.ws5{word-spacing:0.420000px;}
.ws2d{word-spacing:419.424000px;}
._6{margin-left:-6.846000px;}
._2{margin-left:-5.040000px;}
._1{margin-left:-3.604800px;}
._4{margin-left:-2.370000px;}
._3{margin-left:-1.284000px;}
._0{width:1.740000px;}
._5{width:2.994000px;}
._9{width:4.072800px;}
._b{width:5.444400px;}
._a{width:6.796800px;}
._16{width:30.048000px;}
._19{width:31.776000px;}
._17{width:33.120000px;}
._18{width:34.224000px;}
._11{width:35.664000px;}
._15{width:37.392000px;}
._14{width:38.736000px;}
._13{width:40.368000px;}
._12{width:45.984000px;}
._f{width:50.352000px;}
._10{width:51.888000px;}
._e{width:53.232000px;}
._d{width:54.864000px;}
._c{width:60.480000px;}
._7{width:353.712000px;}
._8{width:381.984000px;}
.fc3{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:24.486000px;}
.fsa{font-size:27.984000px;}
.fs7{font-size:34.980000px;}
.fs3{font-size:40.800000px;}
.fs4{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs9{font-size:55.968000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:84.000000px;}
.fs8{font-size:96.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:63.487650px;}
.y39{bottom:72.131700px;}
.y38{bottom:85.636500px;}
.y37{bottom:99.141300px;}
.y2{bottom:110.551200px;}
.y36{bottom:112.646100px;}
.y10f{bottom:119.055150px;}
.y1e7{bottom:121.181100px;}
.ydf{bottom:125.166000px;}
.y35{bottom:126.150900px;}
.y168{bottom:130.193700px;}
.ya9{bottom:130.563000px;}
.y18a{bottom:130.688550px;}
.y1e6{bottom:133.781100px;}
.y232{bottom:134.017500px;}
.y253{bottom:134.154450px;}
.y1e5{bottom:134.917350px;}
.y1c4{bottom:134.917500px;}
.y1f0{bottom:136.216800px;}
.yde{bottom:137.766000px;}
.y34{bottom:139.655700px;}
.y10e{bottom:140.055150px;}
.ya8{bottom:143.163000px;}
.y167{bottom:148.193700px;}
.y231{bottom:148.417500px;}
.y252{bottom:148.554450px;}
.y189{bottom:148.688550px;}
.y1{bottom:148.821150px;}
.ydd{bottom:150.366000px;}
.y1e4{bottom:152.917350px;}
.y1c3{bottom:152.917500px;}
.y33{bottom:153.160500px;}
.ya7{bottom:155.763000px;}
.y13a{bottom:157.755150px;}
.y123{bottom:158.138850px;}
.y10d{bottom:161.055150px;}
.y230{bottom:162.817500px;}
.y251{bottom:162.954450px;}
.ydc{bottom:162.966000px;}
.y166{bottom:166.193700px;}
.y32{bottom:166.665300px;}
.y188{bottom:166.688550px;}
.ya6{bottom:168.363000px;}
.y1e3{bottom:170.917350px;}
.y1c2{bottom:170.917500px;}
.y22f{bottom:177.217500px;}
.y250{bottom:177.354450px;}
.ya5{bottom:180.963000px;}
.y10c{bottom:182.055150px;}
.y165{bottom:184.193700px;}
.y187{bottom:184.688550px;}
.ydb{bottom:188.166000px;}
.y1e2{bottom:188.917350px;}
.y1c1{bottom:188.917500px;}
.y22e{bottom:191.617500px;}
.y25e{bottom:191.754300px;}
.y24f{bottom:191.754450px;}
.ye7{bottom:193.563000px;}
.y31{bottom:193.664700px;}
.yda{bottom:200.766000px;}
.y164{bottom:202.193700px;}
.y186{bottom:202.688550px;}
.y10b{bottom:203.055150px;}
.y133{bottom:205.263150px;}
.y22d{bottom:206.017500px;}
.y25d{bottom:206.154300px;}
.y24e{bottom:206.154450px;}
.ya4{bottom:206.163000px;}
.y1e1{bottom:206.917350px;}
.y1c0{bottom:206.917500px;}
.y30{bottom:207.169500px;}
.yd9{bottom:213.366000px;}
.ya3{bottom:218.763000px;}
.y163{bottom:220.193700px;}
.y22c{bottom:220.417500px;}
.y25c{bottom:220.554300px;}
.y24d{bottom:220.554450px;}
.y2f{bottom:220.674300px;}
.y185{bottom:220.688550px;}
.y1e0{bottom:224.917350px;}
.y1bf{bottom:224.917500px;}
.yd8{bottom:225.966000px;}
.ya2{bottom:231.363000px;}
.y2e{bottom:234.179100px;}
.y22b{bottom:234.817500px;}
.y25b{bottom:234.954300px;}
.y24c{bottom:234.954450px;}
.y162{bottom:238.193700px;}
.yd7{bottom:238.566000px;}
.y184{bottom:238.688550px;}
.y1df{bottom:242.917350px;}
.y1be{bottom:242.917500px;}
.ya1{bottom:243.963000px;}
.y2d{bottom:247.683900px;}
.y108{bottom:248.065650px;}
.y22a{bottom:249.217500px;}
.y24b{bottom:249.354450px;}
.yd6{bottom:251.166000px;}
.y161{bottom:256.193700px;}
.ya0{bottom:256.563000px;}
.y183{bottom:256.688550px;}
.y1de{bottom:260.917350px;}
.y1bd{bottom:260.917500px;}
.y2c{bottom:261.188700px;}
.y229{bottom:263.617500px;}
.y25a{bottom:263.754300px;}
.y24a{bottom:263.754450px;}
.y107{bottom:269.065650px;}
.y9f{bottom:269.163000px;}
.y160{bottom:274.193700px;}
.y182{bottom:274.688550px;}
.y2b{bottom:274.693500px;}
.yd5{bottom:276.366000px;}
.y228{bottom:278.017500px;}
.y259{bottom:278.154300px;}
.y249{bottom:278.154450px;}
.y1dd{bottom:278.917350px;}
.y1bc{bottom:278.917500px;}
.y9e{bottom:281.763000px;}
.y2a{bottom:288.198300px;}
.yd4{bottom:288.966000px;}
.y106{bottom:290.065650px;}
.y15f{bottom:292.193700px;}
.y227{bottom:292.417500px;}
.y258{bottom:292.554300px;}
.y248{bottom:292.554450px;}
.y181{bottom:292.688700px;}
.y9d{bottom:294.363000px;}
.y139{bottom:296.427150px;}
.y122{bottom:296.810850px;}
.y1dc{bottom:296.917350px;}
.y1bb{bottom:296.917500px;}
.yd3{bottom:301.566000px;}
.y29{bottom:301.703100px;}
.y226{bottom:306.817500px;}
.y257{bottom:306.954300px;}
.y247{bottom:306.954450px;}
.y9c{bottom:306.963000px;}
.y15e{bottom:310.193700px;}
.y180{bottom:310.688700px;}
.y105{bottom:311.065650px;}
.y130{bottom:313.275150px;}
.yd2{bottom:314.166000px;}
.y1db{bottom:314.917350px;}
.y1ba{bottom:314.917500px;}
.y28{bottom:315.207900px;}
.y9b{bottom:319.563000px;}
.y225{bottom:321.217500px;}
.y256{bottom:321.354300px;}
.y246{bottom:321.354450px;}
.yd1{bottom:326.766000px;}
.y15d{bottom:328.193700px;}
.y17f{bottom:328.688700px;}
.y27{bottom:328.712700px;}
.y9a{bottom:332.163000px;}
.y1da{bottom:332.917350px;}
.y1b9{bottom:332.917500px;}
.y224{bottom:335.617500px;}
.y255{bottom:335.754300px;}
.y245{bottom:335.754450px;}
.y138{bottom:338.847150px;}
.y121{bottom:339.230850px;}
.yd0{bottom:339.366000px;}
.y26{bottom:342.217500px;}
.y99{bottom:344.763000px;}
.y15c{bottom:346.193700px;}
.y17e{bottom:346.688700px;}
.y223{bottom:350.017500px;}
.y244{bottom:350.154450px;}
.y1d9{bottom:350.917350px;}
.y1b8{bottom:350.917500px;}
.ycf{bottom:351.966000px;}
.y25{bottom:355.722300px;}
.y104{bottom:356.076150px;}
.ye5{bottom:357.363000px;}
.y15b{bottom:364.193700px;}
.y222{bottom:364.417500px;}
.y254{bottom:364.554300px;}
.y243{bottom:364.554450px;}
.yce{bottom:364.566000px;}
.y17d{bottom:364.688700px;}
.y1b7{bottom:368.917500px;}
.y24{bottom:369.227100px;}
.y98{bottom:369.963000px;}
.y103{bottom:377.071650px;}
.ycd{bottom:377.166000px;}
.y221{bottom:378.817500px;}
.y242{bottom:378.954450px;}
.y12f{bottom:379.287150px;}
.yf6{bottom:381.650700px;}
.y15a{bottom:382.193700px;}
.y97{bottom:382.563000px;}
.y17c{bottom:382.688700px;}
.y23{bottom:382.731900px;}
.y1b6{bottom:386.917500px;}
.ycc{bottom:389.766000px;}
.y220{bottom:393.217500px;}
.y241{bottom:393.354450px;}
.y96{bottom:395.163000px;}
.y22{bottom:396.236700px;}
.y159{bottom:400.193700px;}
.y17b{bottom:400.688700px;}
.ycb{bottom:402.366000px;}
.yf5{bottom:402.650700px;}
.y1b5{bottom:404.917500px;}
.y21f{bottom:407.617500px;}
.y240{bottom:407.754450px;}
.y95{bottom:407.763000px;}
.yca{bottom:414.966000px;}
.y158{bottom:418.193700px;}
.y17a{bottom:418.688700px;}
.y94{bottom:420.363000px;}
.y21e{bottom:422.017500px;}
.y102{bottom:422.086650px;}
.y23f{bottom:422.154450px;}
.y1b4{bottom:422.917500px;}
.y21{bottom:423.236100px;}
.yf4{bottom:423.650700px;}
.y137{bottom:425.859150px;}
.yc9{bottom:427.566000px;}
.y93{bottom:432.963000px;}
.y157{bottom:436.193700px;}
.y21d{bottom:436.417500px;}
.y23e{bottom:436.554450px;}
.y179{bottom:436.688700px;}
.y20{bottom:436.740900px;}
.yc8{bottom:440.166000px;}
.y1d8{bottom:440.917350px;}
.y1b3{bottom:440.917500px;}
.y101{bottom:443.086650px;}
.y92{bottom:445.563000px;}
.y1f{bottom:450.245700px;}
.y21c{bottom:450.817500px;}
.y23d{bottom:450.954450px;}
.yc7{bottom:452.766000px;}
.y156{bottom:454.193700px;}
.y178{bottom:454.688700px;}
.y91{bottom:458.163000px;}
.y1d7{bottom:458.917350px;}
.y1b2{bottom:458.917500px;}
.y1e{bottom:463.750500px;}
.y100{bottom:464.086650px;}
.y21b{bottom:465.217500px;}
.y23c{bottom:465.354450px;}
.yc6{bottom:465.366000px;}
.y131{bottom:466.299150px;}
.y11b{bottom:468.661350px;}
.y90{bottom:470.763000px;}
.y155{bottom:472.193700px;}
.y177{bottom:472.688700px;}
.y1d6{bottom:476.917350px;}
.y1b1{bottom:476.917500px;}
.y1d{bottom:477.255300px;}
.yc5{bottom:477.966000px;}
.y21a{bottom:479.617500px;}
.y23b{bottom:479.754450px;}
.ye4{bottom:483.363000px;}
.y11a{bottom:489.661350px;}
.y154{bottom:490.193700px;}
.y176{bottom:490.688700px;}
.y1c{bottom:490.760100px;}
.y219{bottom:494.017500px;}
.y23a{bottom:494.154450px;}
.y1d5{bottom:494.917350px;}
.y1b0{bottom:494.917500px;}
.ye9{bottom:495.832950px;}
.ye8{bottom:495.834750px;}
.y8f{bottom:495.963000px;}
.yc4{bottom:503.166000px;}
.y1b{bottom:504.264900px;}
.y153{bottom:508.193700px;}
.y218{bottom:508.417500px;}
.y239{bottom:508.554450px;}
.y8e{bottom:508.563000px;}
.y175{bottom:508.688700px;}
.yf3{bottom:509.097300px;}
.y119{bottom:510.661350px;}
.y136{bottom:512.823150px;}
.y1d4{bottom:512.917350px;}
.y1af{bottom:512.917500px;}
.yc3{bottom:515.766000px;}
.y1a{bottom:517.769700px;}
.y8d{bottom:521.163000px;}
.y217{bottom:522.817500px;}
.y238{bottom:522.954450px;}
.y152{bottom:526.193700px;}
.y174{bottom:526.688700px;}
.yc2{bottom:528.366000px;}
.yf2{bottom:530.097300px;}
.y1d3{bottom:530.917350px;}
.y1ae{bottom:530.917500px;}
.y19{bottom:531.274500px;}
.y8c{bottom:533.763000px;}
.y216{bottom:537.217500px;}
.y237{bottom:537.354450px;}
.yc1{bottom:540.966000px;}
.y125{bottom:542.871150px;}
.y151{bottom:544.193700px;}
.y173{bottom:544.688700px;}
.y8b{bottom:546.363000px;}
.y1d2{bottom:548.917350px;}
.y1ad{bottom:548.917500px;}
.yf1{bottom:551.097300px;}
.y215{bottom:551.617500px;}
.y236{bottom:551.754450px;}
.yc0{bottom:553.566000px;}
.y18{bottom:558.273900px;}
.y8a{bottom:558.963000px;}
.y150{bottom:562.193700px;}
.y172{bottom:562.688700px;}
.y214{bottom:566.017500px;}
.y235{bottom:566.154450px;}
.ybf{bottom:566.166000px;}
.y1d1{bottom:566.917350px;}
.y1ac{bottom:566.917500px;}
.ye3{bottom:571.563000px;}
.y17{bottom:571.778700px;}
.yf0{bottom:572.097300px;}
.y12d{bottom:574.311150px;}
.ybe{bottom:578.766000px;}
.y14f{bottom:580.193700px;}
.y213{bottom:580.417500px;}
.y234{bottom:580.554450px;}
.y171{bottom:580.688700px;}
.y89{bottom:584.163000px;}
.y1d0{bottom:584.917350px;}
.y1ab{bottom:584.917500px;}
.y16{bottom:585.283500px;}
.ybd{bottom:591.366000px;}
.y212{bottom:594.817500px;}
.y233{bottom:594.954450px;}
.y88{bottom:596.763000px;}
.y14e{bottom:598.193700px;}
.y170{bottom:598.688700px;}
.y1cf{bottom:602.917350px;}
.y1aa{bottom:602.917500px;}
.ybc{bottom:603.966000px;}
.y211{bottom:609.217500px;}
.y87{bottom:609.363000px;}
.y14d{bottom:616.193700px;}
.ybb{bottom:616.566000px;}
.y16f{bottom:616.688700px;}
.yfc{bottom:617.010000px;}
.y1ce{bottom:620.917350px;}
.y1a9{bottom:620.917500px;}
.y86{bottom:621.963000px;}
.y210{bottom:623.617500px;}
.y14c{bottom:634.193700px;}
.y85{bottom:634.563000px;}
.y16e{bottom:634.688700px;}
.y269{bottom:637.492500px;}
.yfb{bottom:638.010000px;}
.y20f{bottom:638.017500px;}
.y1cd{bottom:638.917350px;}
.y1a8{bottom:638.917500px;}
.y5e{bottom:638.943900px;}
.yba{bottom:641.766000px;}
.y84{bottom:647.163000px;}
.y268{bottom:650.092500px;}
.y5d{bottom:651.690900px;}
.y14b{bottom:652.193700px;}
.y20e{bottom:652.417500px;}
.y16d{bottom:652.688700px;}
.yb9{bottom:654.366000px;}
.y1cc{bottom:656.917350px;}
.y1a7{bottom:656.917500px;}
.yfa{bottom:659.010000px;}
.y83{bottom:659.763000px;}
.y12a{bottom:661.215150px;}
.y267{bottom:662.692500px;}
.y5c{bottom:664.443900px;}
.y1ef{bottom:666.235800px;}
.y20d{bottom:666.817500px;}
.yb8{bottom:666.966000px;}
.y14a{bottom:670.193700px;}
.y16c{bottom:670.688700px;}
.ye6{bottom:672.363000px;}
.y1cb{bottom:674.917350px;}
.y1a6{bottom:674.917500px;}
.y5b{bottom:677.190900px;}
.y1ee{bottom:678.835800px;}
.yb7{bottom:679.566000px;}
.y120{bottom:681.038850px;}
.y20c{bottom:681.217500px;}
.y82{bottom:684.963000px;}
.y149{bottom:688.193700px;}
.y16b{bottom:688.688700px;}
.y1ed{bottom:691.435800px;}
.yb6{bottom:692.166000px;}
.y1ca{bottom:692.917350px;}
.y1a5{bottom:692.917500px;}
.y20b{bottom:695.617500px;}
.y81{bottom:697.563000px;}
.y11f{bottom:702.038850px;}
.y5a{bottom:702.693900px;}
.yff{bottom:704.020500px;}
.y1ec{bottom:704.035800px;}
.y148{bottom:706.194450px;}
.y16a{bottom:706.688700px;}
.y20a{bottom:710.017500px;}
.y80{bottom:710.163000px;}
.y1c9{bottom:710.917350px;}
.y1a4{bottom:710.917500px;}
.y59{bottom:715.440900px;}
.y1eb{bottom:716.635800px;}
.yb5{bottom:717.366000px;}
.y7f{bottom:722.763000px;}
.y11e{bottom:723.038850px;}
.y147{bottom:724.194450px;}
.y209{bottom:724.417500px;}
.y169{bottom:724.688700px;}
.yfe{bottom:725.020500px;}
.y1c8{bottom:728.917350px;}
.y1a3{bottom:728.917500px;}
.yb4{bottom:729.966000px;}
.y7e{bottom:735.363000px;}
.y208{bottom:738.817500px;}
.y58{bottom:740.690700px;}
.yb3{bottom:742.566000px;}
.y11d{bottom:744.038850px;}
.yfd{bottom:746.020500px;}
.y1a2{bottom:746.917350px;}
.y7d{bottom:747.963000px;}
.y12b{bottom:748.227150px;}
.y207{bottom:753.217500px;}
.y57{bottom:753.440700px;}
.yb2{bottom:755.166000px;}
.y7c{bottom:760.563000px;}
.y1a1{bottom:764.917350px;}
.y11c{bottom:765.038850px;}
.y56{bottom:766.190700px;}
.y12c{bottom:767.247150px;}
.y206{bottom:767.617500px;}
.yb1{bottom:767.766000px;}
.y7b{bottom:773.163000px;}
.y124{bottom:778.275150px;}
.y55{bottom:778.940700px;}
.yb0{bottom:780.366000px;}
.y205{bottom:782.017500px;}
.y1a0{bottom:782.917350px;}
.ye2{bottom:785.763000px;}
.y141{bottom:790.464150px;}
.y54{bottom:791.690700px;}
.yaf{bottom:792.966000px;}
.y204{bottom:796.417500px;}
.y7a{bottom:798.363000px;}
.y19f{bottom:800.917350px;}
.y53{bottom:804.440700px;}
.y140{bottom:808.464150px;}
.yf9{bottom:810.049500px;}
.y203{bottom:810.817500px;}
.y79{bottom:810.963000px;}
.y1ea{bottom:813.823800px;}
.y52{bottom:817.190700px;}
.yae{bottom:818.166000px;}
.y19e{bottom:818.917350px;}
.y78{bottom:823.563000px;}
.y202{bottom:825.217500px;}
.y1e9{bottom:826.423800px;}
.y13f{bottom:826.464150px;}
.y51{bottom:829.940700px;}
.yad{bottom:830.766000px;}
.yf8{bottom:831.049500px;}
.y77{bottom:836.163000px;}
.y19d{bottom:836.917350px;}
.y1e8{bottom:839.023800px;}
.y201{bottom:839.617500px;}
.yac{bottom:843.366000px;}
.y13e{bottom:844.464150px;}
.y76{bottom:848.763000px;}
.yf7{bottom:852.049500px;}
.y200{bottom:854.017500px;}
.y12e{bottom:854.259150px;}
.y19c{bottom:854.917350px;}
.y50{bottom:855.440700px;}
.yab{bottom:855.966000px;}
.y75{bottom:861.363000px;}
.y3{bottom:861.722550px;}
.y13d{bottom:862.464150px;}
.y4f{bottom:868.190700px;}
.y1ff{bottom:868.417500px;}
.y19b{bottom:872.917350px;}
.y74{bottom:873.963000px;}
.y13c{bottom:880.464150px;}
.y1fe{bottom:882.817500px;}
.y73{bottom:886.563000px;}
.y19a{bottom:890.917350px;}
.y4e{bottom:893.690700px;}
.y1fd{bottom:897.217500px;}
.y13b{bottom:898.464150px;}
.y72{bottom:899.163000px;}
.y115{bottom:902.401500px;}
.y4d{bottom:907.195500px;}
.y199{bottom:908.917350px;}
.y1fc{bottom:911.617500px;}
.yaa{bottom:911.763000px;}
.yef{bottom:919.182750px;}
.y4c{bottom:920.700300px;}
.y114{bottom:923.401500px;}
.y71{bottom:924.363000px;}
.y1fb{bottom:926.017500px;}
.y198{bottom:926.917350px;}
.y4b{bottom:934.205100px;}
.y70{bottom:936.963000px;}
.yee{bottom:940.182750px;}
.y1fa{bottom:940.417500px;}
.y113{bottom:944.401500px;}
.y197{bottom:944.917350px;}
.y4a{bottom:947.709900px;}
.y6f{bottom:949.563000px;}
.y1f9{bottom:954.817500px;}
.y15{bottom:959.457900px;}
.yed{bottom:961.182750px;}
.y49{bottom:961.214700px;}
.y6e{bottom:962.163000px;}
.y196{bottom:962.917350px;}
.y128{bottom:963.387150px;}
.y145{bottom:964.674450px;}
.y112{bottom:965.401500px;}
.ya{bottom:966.202650px;}
.y1f8{bottom:969.217500px;}
.y48{bottom:974.719500px;}
.y6d{bottom:974.763000px;}
.y14{bottom:980.457900px;}
.y195{bottom:980.917350px;}
.y1f7{bottom:983.617500px;}
.y111{bottom:986.401500px;}
.y6c{bottom:987.363000px;}
.y47{bottom:988.224300px;}
.y129{bottom:993.447150px;}
.y1f6{bottom:998.017500px;}
.y194{bottom:998.917350px;}
.ye1{bottom:999.963000px;}
.y13{bottom:1001.457900px;}
.y46{bottom:1001.729100px;}
.y9{bottom:1002.202650px;}
.y110{bottom:1007.401500px;}
.y134{bottom:1009.611150px;}
.y1f5{bottom:1012.417500px;}
.y6b{bottom:1012.563000px;}
.y45{bottom:1015.233900px;}
.y193{bottom:1016.917350px;}
.y8{bottom:1020.202650px;}
.y12{bottom:1022.457900px;}
.y6a{bottom:1025.163000px;}
.y1f4{bottom:1026.817500px;}
.y44{bottom:1028.738700px;}
.y144{bottom:1030.450200px;}
.y192{bottom:1034.917350px;}
.y69{bottom:1037.763000px;}
.y7{bottom:1038.202650px;}
.y1f3{bottom:1041.217500px;}
.y43{bottom:1042.243500px;}
.y11{bottom:1049.835900px;}
.y68{bottom:1050.363000px;}
.y10a{bottom:1052.412000px;}
.y191{bottom:1052.917350px;}
.y1f2{bottom:1055.617500px;}
.y42{bottom:1055.748300px;}
.y6{bottom:1056.202650px;}
.y143{bottom:1059.250200px;}
.y67{bottom:1062.963000px;}
.y41{bottom:1069.253100px;}
.y1f1{bottom:1070.017500px;}
.y10{bottom:1070.835900px;}
.y190{bottom:1070.917350px;}
.y109{bottom:1073.412000px;}
.y266{bottom:1075.521000px;}
.y66{bottom:1075.563000px;}
.y132{bottom:1075.623150px;}
.y40{bottom:1082.757900px;}
.y142{bottom:1088.050200px;}
.y265{bottom:1088.121000px;}
.y65{bottom:1088.163000px;}
.yec{bottom:1088.762700px;}
.y18f{bottom:1088.917350px;}
.yf{bottom:1091.835900px;}
.y3f{bottom:1096.262700px;}
.y264{bottom:1100.721000px;}
.y64{bottom:1100.763000px;}
.y18e{bottom:1106.917350px;}
.yeb{bottom:1109.762700px;}
.y3e{bottom:1109.767500px;}
.ye{bottom:1112.835900px;}
.y263{bottom:1113.321000px;}
.ye0{bottom:1113.363000px;}
.y5{bottom:1117.243200px;}
.y118{bottom:1118.422650px;}
.y3d{bottom:1123.272300px;}
.y18d{bottom:1124.917350px;}
.y1c7{bottom:1124.917500px;}
.y262{bottom:1125.921000px;}
.y63{bottom:1125.963000px;}
.yea{bottom:1130.762700px;}
.y126{bottom:1132.959150px;}
.yd{bottom:1133.835900px;}
.y3c{bottom:1136.777100px;}
.y261{bottom:1138.521000px;}
.y62{bottom:1138.563000px;}
.y117{bottom:1139.422650px;}
.y18c{bottom:1142.917350px;}
.y1c6{bottom:1142.917500px;}
.y3b{bottom:1150.281900px;}
.y260{bottom:1151.121000px;}
.y61{bottom:1151.163000px;}
.yc{bottom:1154.835900px;}
.y116{bottom:1160.422650px;}
.y4{bottom:1160.443200px;}
.y18b{bottom:1160.917350px;}
.y1c5{bottom:1160.917500px;}
.y146{bottom:1160.919450px;}
.y135{bottom:1162.635150px;}
.y127{bottom:1163.019150px;}
.y25f{bottom:1163.721000px;}
.y60{bottom:1163.763000px;}
.y3a{bottom:1163.786700px;}
.yb{bottom:1175.835900px;}
.h6{height:31.048800px;}
.hb{height:31.962000px;}
.h7{height:34.353600px;}
.h8{height:35.364000px;}
.ha{height:35.574000px;}
.h9{height:36.528000px;}
.h13{height:39.744000px;}
.hd{height:40.416000px;}
.hc{height:40.656000px;}
.h3{height:45.660000px;}
.hf{height:46.599780px;}
.he{height:50.520000px;}
.h12{height:50.520600px;}
.h5{height:50.820000px;}
.h2{height:63.924000px;}
.h11{height:73.056000px;}
.h10{height:74.559648px;}
.h4{height:109.584000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:879.000000px;}
.w2{width:879.058965px;}
.w1{width:887.250000px;}
.w0{width:887.319000px;}
.w6{width:889.377000px;}
.w7{width:889.500000px;}
.w4{width:892.914000px;}
.w5{width:893.250000px;}
.xa{left:-782.985000px;}
.x2{left:-747.014700px;}
.xb{left:-178.193100px;}
.x1{left:-23.592300px;}
.x0{left:0.000000px;}
.x1e{left:44.645700px;}
.x1a{left:72.285600px;}
.x28{left:80.787450px;}
.x26{left:85.033350px;}
.xc{left:93.605715px;}
.xd{left:97.859115px;}
.x2d{left:110.554350px;}
.x16{left:114.933300px;}
.x18{left:127.689600px;}
.x1b{left:131.937600px;}
.x21{left:135.708600px;}
.x3f{left:141.471000px;}
.x24{left:146.715450px;}
.x37{left:177.441300px;}
.x22{left:204.049200px;}
.x23{left:228.379650px;}
.x29{left:268.680000px;}
.x3{left:340.593150px;}
.x4{left:344.661150px;}
.x7{left:393.497250px;}
.x6{left:401.867250px;}
.xe{left:408.359115px;}
.x25{left:414.495450px;}
.x20{left:435.004800px;}
.x1d{left:443.508750px;}
.x5{left:445.367250px;}
.x8{left:452.627250px;}
.x9{left:455.897250px;}
.x2a{left:461.343300px;}
.x1c{left:463.401600px;}
.x27{left:465.577200px;}
.x2c{left:474.088050px;}
.x31{left:482.602500px;}
.x2f{left:491.105850px;}
.x17{left:502.750800px;}
.x35{left:512.357550px;}
.x19{left:515.549550px;}
.x32{left:564.991500px;}
.x34{left:575.993100px;}
.x33{left:585.653100px;}
.x2b{left:597.233100px;}
.x2e{left:599.192250px;}
.x30{left:624.262500px;}
.x40{left:746.262900px;}
.x1f{left:837.637800px;}
.x15{left:857.063550px;}
.x36{left:900.863700px;}
.x10{left:992.897115px;}
.x11{left:1183.167615px;}
.x38{left:1265.049150px;}
.x39{left:1269.117150px;}
.x3c{left:1317.953250px;}
.x3b{left:1326.323250px;}
.xf{left:1355.618415px;}
.x3a{left:1369.823250px;}
.x12{left:1373.438115px;}
.x3d{left:1377.083250px;}
.x3e{left:1380.353250px;}
.x13{left:1563.708615px;}
.x14{left:1777.677165px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.421333pt;}
.v5{vertical-align:14.207467pt;}
.v2{vertical-align:17.760000pt;}
.v4{vertical-align:28.416000pt;}
.ls23{letter-spacing:-0.768000pt;}
.ls27{letter-spacing:-0.533333pt;}
.ls2c{letter-spacing:-0.426667pt;}
.ls29{letter-spacing:-0.266667pt;}
.ls8{letter-spacing:-0.253867pt;}
.ls28{letter-spacing:-0.213333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.130592pt;}
.ls25{letter-spacing:0.186560pt;}
.ls2{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.426667pt;}
.ls20{letter-spacing:0.512000pt;}
.lse{letter-spacing:0.533333pt;}
.ls5{letter-spacing:0.693333pt;}
.ls26{letter-spacing:0.795989pt;}
.lsb{letter-spacing:0.800000pt;}
.ls6{letter-spacing:0.853333pt;}
.lsf{letter-spacing:0.906667pt;}
.lsc{letter-spacing:1.013333pt;}
.ls18{letter-spacing:1.066667pt;}
.ls10{letter-spacing:1.243733pt;}
.ls1a{letter-spacing:1.664000pt;}
.ls2d{letter-spacing:1.706667pt;}
.ls9{letter-spacing:1.866667pt;}
.ls19{letter-spacing:2.133333pt;}
.ls24{letter-spacing:2.176533pt;}
.ls2b{letter-spacing:2.240000pt;}
.ls7{letter-spacing:2.538667pt;}
.ls2a{letter-spacing:2.613333pt;}
.ls12{letter-spacing:2.944000pt;}
.lsa{letter-spacing:2.986667pt;}
.ls11{letter-spacing:3.328000pt;}
.ls17{letter-spacing:3.498667pt;}
.ls21{letter-spacing:3.626667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls22{letter-spacing:3.754667pt;}
.ls1d{letter-spacing:3.925333pt;}
.ls1b{letter-spacing:3.968000pt;}
.ls15{letter-spacing:4.010667pt;}
.ls1c{letter-spacing:4.224000pt;}
.ls1f{letter-spacing:4.480000pt;}
.ls1e{letter-spacing:4.522667pt;}
.ls16{letter-spacing:4.608000pt;}
.lsd{letter-spacing:4.906667pt;}
.ls14{letter-spacing:5.248000pt;}
.ls13{letter-spacing:5.418667pt;}
.ls1{letter-spacing:6.400000pt;}
.ws31{word-spacing:-14.933333pt;}
.ws18{word-spacing:-14.592000pt;}
.ws15{word-spacing:-14.378667pt;}
.ws12{word-spacing:-14.240000pt;}
.ws16{word-spacing:-13.866667pt;}
.ws30{word-spacing:-13.233323pt;}
.ws17{word-spacing:-12.458667pt;}
.ws13{word-spacing:-12.288000pt;}
.ws3a{word-spacing:-11.946667pt;}
.ws14{word-spacing:-11.904000pt;}
.ws3c{word-spacing:-11.573333pt;}
.ws33{word-spacing:-11.200000pt;}
.ws3f{word-spacing:-11.093333pt;}
.ws44{word-spacing:-10.666667pt;}
.ws3e{word-spacing:-10.453333pt;}
.ws42{word-spacing:-9.813333pt;}
.wsa{word-spacing:-9.333333pt;}
.ws7{word-spacing:-9.066667pt;}
.ws10{word-spacing:-9.017067pt;}
.ws40{word-spacing:-8.960000pt;}
.ws6{word-spacing:-8.812800pt;}
.ws32{word-spacing:-8.706133pt;}
.ws2f{word-spacing:-8.533333pt;}
.ws35{word-spacing:-8.000000pt;}
.ws2e{word-spacing:-7.959893pt;}
.ws8{word-spacing:-7.616000pt;}
.ws41{word-spacing:-6.826667pt;}
.ws34{word-spacing:-6.529600pt;}
.ws45{word-spacing:-6.467413pt;}
.ws43{word-spacing:-6.400000pt;}
.ws46{word-spacing:-5.571925pt;}
.ws1f{word-spacing:-5.248000pt;}
.ws3b{word-spacing:-4.974933pt;}
.ws1c{word-spacing:-4.906667pt;}
.ws21{word-spacing:-4.608000pt;}
.ws9{word-spacing:-4.570720pt;}
.ws28{word-spacing:-4.522667pt;}
.ws29{word-spacing:-4.480000pt;}
.ws26{word-spacing:-4.224000pt;}
.ws20{word-spacing:-4.010667pt;}
.ws25{word-spacing:-3.968000pt;}
.ws27{word-spacing:-3.925333pt;}
.ws2c{word-spacing:-3.754667pt;}
.ws36{word-spacing:-3.733333pt;}
.ws2b{word-spacing:-3.626667pt;}
.ws19{word-spacing:-2.986667pt;}
.ws3d{word-spacing:-2.613333pt;}
.wsb{word-spacing:-2.538667pt;}
.ws37{word-spacing:-2.176533pt;}
.ws23{word-spacing:-2.133333pt;}
.wsc{word-spacing:-1.866667pt;}
.ws24{word-spacing:-1.664000pt;}
.ws22{word-spacing:-1.066667pt;}
.ws1b{word-spacing:-1.013333pt;}
.ws1e{word-spacing:-0.906667pt;}
.wse{word-spacing:-0.896000pt;}
.ws4{word-spacing:-0.853333pt;}
.ws1a{word-spacing:-0.800000pt;}
.ws2{word-spacing:-0.693333pt;}
.ws1d{word-spacing:-0.533333pt;}
.ws2a{word-spacing:-0.512000pt;}
.ws1{word-spacing:-0.426667pt;}
.ws3{word-spacing:-0.266667pt;}
.ws11{word-spacing:-0.037333pt;}
.ws0{word-spacing:0.000000pt;}
.wsf{word-spacing:0.149333pt;}
.ws38{word-spacing:0.213333pt;}
.wsd{word-spacing:0.261333pt;}
.ws39{word-spacing:0.266667pt;}
.ws5{word-spacing:0.373333pt;}
.ws2d{word-spacing:372.821333pt;}
._6{margin-left:-6.085333pt;}
._2{margin-left:-4.480000pt;}
._1{margin-left:-3.204267pt;}
._4{margin-left:-2.106667pt;}
._3{margin-left:-1.141333pt;}
._0{width:1.546667pt;}
._5{width:2.661333pt;}
._9{width:3.620267pt;}
._b{width:4.839467pt;}
._a{width:6.041600pt;}
._16{width:26.709333pt;}
._19{width:28.245333pt;}
._17{width:29.440000pt;}
._18{width:30.421333pt;}
._11{width:31.701333pt;}
._15{width:33.237333pt;}
._14{width:34.432000pt;}
._13{width:35.882667pt;}
._12{width:40.874667pt;}
._f{width:44.757333pt;}
._10{width:46.122667pt;}
._e{width:47.317333pt;}
._d{width:48.768000pt;}
._c{width:53.760000pt;}
._7{width:314.410667pt;}
._8{width:339.541333pt;}
.fs5{font-size:21.765333pt;}
.fsa{font-size:24.874667pt;}
.fs7{font-size:31.093333pt;}
.fs3{font-size:36.266667pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs9{font-size:49.749333pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:74.666667pt;}
.fs8{font-size:85.333333pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:56.433467pt;}
.y39{bottom:64.117067pt;}
.y38{bottom:76.121333pt;}
.y37{bottom:88.125600pt;}
.y2{bottom:98.267733pt;}
.y36{bottom:100.129867pt;}
.y10f{bottom:105.826800pt;}
.y1e7{bottom:107.716533pt;}
.ydf{bottom:111.258667pt;}
.y35{bottom:112.134133pt;}
.y168{bottom:115.727733pt;}
.ya9{bottom:116.056000pt;}
.y18a{bottom:116.167600pt;}
.y1e6{bottom:118.916533pt;}
.y232{bottom:119.126667pt;}
.y253{bottom:119.248400pt;}
.y1e5{bottom:119.926533pt;}
.y1c4{bottom:119.926667pt;}
.y1f0{bottom:121.081600pt;}
.yde{bottom:122.458667pt;}
.y34{bottom:124.138400pt;}
.y10e{bottom:124.493467pt;}
.ya8{bottom:127.256000pt;}
.y167{bottom:131.727733pt;}
.y231{bottom:131.926667pt;}
.y252{bottom:132.048400pt;}
.y189{bottom:132.167600pt;}
.y1{bottom:132.285467pt;}
.ydd{bottom:133.658667pt;}
.y1e4{bottom:135.926533pt;}
.y1c3{bottom:135.926667pt;}
.y33{bottom:136.142667pt;}
.ya7{bottom:138.456000pt;}
.y13a{bottom:140.226800pt;}
.y123{bottom:140.567867pt;}
.y10d{bottom:143.160133pt;}
.y230{bottom:144.726667pt;}
.y251{bottom:144.848400pt;}
.ydc{bottom:144.858667pt;}
.y166{bottom:147.727733pt;}
.y32{bottom:148.146933pt;}
.y188{bottom:148.167600pt;}
.ya6{bottom:149.656000pt;}
.y1e3{bottom:151.926533pt;}
.y1c2{bottom:151.926667pt;}
.y22f{bottom:157.526667pt;}
.y250{bottom:157.648400pt;}
.ya5{bottom:160.856000pt;}
.y10c{bottom:161.826800pt;}
.y165{bottom:163.727733pt;}
.y187{bottom:164.167600pt;}
.ydb{bottom:167.258667pt;}
.y1e2{bottom:167.926533pt;}
.y1c1{bottom:167.926667pt;}
.y22e{bottom:170.326667pt;}
.y25e{bottom:170.448267pt;}
.y24f{bottom:170.448400pt;}
.ye7{bottom:172.056000pt;}
.y31{bottom:172.146400pt;}
.yda{bottom:178.458667pt;}
.y164{bottom:179.727733pt;}
.y186{bottom:180.167600pt;}
.y10b{bottom:180.493467pt;}
.y133{bottom:182.456133pt;}
.y22d{bottom:183.126667pt;}
.y25d{bottom:183.248267pt;}
.y24e{bottom:183.248400pt;}
.ya4{bottom:183.256000pt;}
.y1e1{bottom:183.926533pt;}
.y1c0{bottom:183.926667pt;}
.y30{bottom:184.150667pt;}
.yd9{bottom:189.658667pt;}
.ya3{bottom:194.456000pt;}
.y163{bottom:195.727733pt;}
.y22c{bottom:195.926667pt;}
.y25c{bottom:196.048267pt;}
.y24d{bottom:196.048400pt;}
.y2f{bottom:196.154933pt;}
.y185{bottom:196.167600pt;}
.y1e0{bottom:199.926533pt;}
.y1bf{bottom:199.926667pt;}
.yd8{bottom:200.858667pt;}
.ya2{bottom:205.656000pt;}
.y2e{bottom:208.159200pt;}
.y22b{bottom:208.726667pt;}
.y25b{bottom:208.848267pt;}
.y24c{bottom:208.848400pt;}
.y162{bottom:211.727733pt;}
.yd7{bottom:212.058667pt;}
.y184{bottom:212.167600pt;}
.y1df{bottom:215.926533pt;}
.y1be{bottom:215.926667pt;}
.ya1{bottom:216.856000pt;}
.y2d{bottom:220.163467pt;}
.y108{bottom:220.502800pt;}
.y22a{bottom:221.526667pt;}
.y24b{bottom:221.648400pt;}
.yd6{bottom:223.258667pt;}
.y161{bottom:227.727733pt;}
.ya0{bottom:228.056000pt;}
.y183{bottom:228.167600pt;}
.y1de{bottom:231.926533pt;}
.y1bd{bottom:231.926667pt;}
.y2c{bottom:232.167733pt;}
.y229{bottom:234.326667pt;}
.y25a{bottom:234.448267pt;}
.y24a{bottom:234.448400pt;}
.y107{bottom:239.169467pt;}
.y9f{bottom:239.256000pt;}
.y160{bottom:243.727733pt;}
.y182{bottom:244.167600pt;}
.y2b{bottom:244.172000pt;}
.yd5{bottom:245.658667pt;}
.y228{bottom:247.126667pt;}
.y259{bottom:247.248267pt;}
.y249{bottom:247.248400pt;}
.y1dd{bottom:247.926533pt;}
.y1bc{bottom:247.926667pt;}
.y9e{bottom:250.456000pt;}
.y2a{bottom:256.176267pt;}
.yd4{bottom:256.858667pt;}
.y106{bottom:257.836133pt;}
.y15f{bottom:259.727733pt;}
.y227{bottom:259.926667pt;}
.y258{bottom:260.048267pt;}
.y248{bottom:260.048400pt;}
.y181{bottom:260.167733pt;}
.y9d{bottom:261.656000pt;}
.y139{bottom:263.490800pt;}
.y122{bottom:263.831867pt;}
.y1dc{bottom:263.926533pt;}
.y1bb{bottom:263.926667pt;}
.yd3{bottom:268.058667pt;}
.y29{bottom:268.180533pt;}
.y226{bottom:272.726667pt;}
.y257{bottom:272.848267pt;}
.y247{bottom:272.848400pt;}
.y9c{bottom:272.856000pt;}
.y15e{bottom:275.727733pt;}
.y180{bottom:276.167733pt;}
.y105{bottom:276.502800pt;}
.y130{bottom:278.466800pt;}
.yd2{bottom:279.258667pt;}
.y1db{bottom:279.926533pt;}
.y1ba{bottom:279.926667pt;}
.y28{bottom:280.184800pt;}
.y9b{bottom:284.056000pt;}
.y225{bottom:285.526667pt;}
.y256{bottom:285.648267pt;}
.y246{bottom:285.648400pt;}
.yd1{bottom:290.458667pt;}
.y15d{bottom:291.727733pt;}
.y17f{bottom:292.167733pt;}
.y27{bottom:292.189067pt;}
.y9a{bottom:295.256000pt;}
.y1da{bottom:295.926533pt;}
.y1b9{bottom:295.926667pt;}
.y224{bottom:298.326667pt;}
.y255{bottom:298.448267pt;}
.y245{bottom:298.448400pt;}
.y138{bottom:301.197467pt;}
.y121{bottom:301.538533pt;}
.yd0{bottom:301.658667pt;}
.y26{bottom:304.193333pt;}
.y99{bottom:306.456000pt;}
.y15c{bottom:307.727733pt;}
.y17e{bottom:308.167733pt;}
.y223{bottom:311.126667pt;}
.y244{bottom:311.248400pt;}
.y1d9{bottom:311.926533pt;}
.y1b8{bottom:311.926667pt;}
.ycf{bottom:312.858667pt;}
.y25{bottom:316.197600pt;}
.y104{bottom:316.512133pt;}
.ye5{bottom:317.656000pt;}
.y15b{bottom:323.727733pt;}
.y222{bottom:323.926667pt;}
.y254{bottom:324.048267pt;}
.y243{bottom:324.048400pt;}
.yce{bottom:324.058667pt;}
.y17d{bottom:324.167733pt;}
.y1b7{bottom:327.926667pt;}
.y24{bottom:328.201867pt;}
.y98{bottom:328.856000pt;}
.y103{bottom:335.174800pt;}
.ycd{bottom:335.258667pt;}
.y221{bottom:336.726667pt;}
.y242{bottom:336.848400pt;}
.y12f{bottom:337.144133pt;}
.yf6{bottom:339.245067pt;}
.y15a{bottom:339.727733pt;}
.y97{bottom:340.056000pt;}
.y17c{bottom:340.167733pt;}
.y23{bottom:340.206133pt;}
.y1b6{bottom:343.926667pt;}
.ycc{bottom:346.458667pt;}
.y220{bottom:349.526667pt;}
.y241{bottom:349.648400pt;}
.y96{bottom:351.256000pt;}
.y22{bottom:352.210400pt;}
.y159{bottom:355.727733pt;}
.y17b{bottom:356.167733pt;}
.ycb{bottom:357.658667pt;}
.yf5{bottom:357.911733pt;}
.y1b5{bottom:359.926667pt;}
.y21f{bottom:362.326667pt;}
.y240{bottom:362.448400pt;}
.y95{bottom:362.456000pt;}
.yca{bottom:368.858667pt;}
.y158{bottom:371.727733pt;}
.y17a{bottom:372.167733pt;}
.y94{bottom:373.656000pt;}
.y21e{bottom:375.126667pt;}
.y102{bottom:375.188133pt;}
.y23f{bottom:375.248400pt;}
.y1b4{bottom:375.926667pt;}
.y21{bottom:376.209867pt;}
.yf4{bottom:376.578400pt;}
.y137{bottom:378.541467pt;}
.yc9{bottom:380.058667pt;}
.y93{bottom:384.856000pt;}
.y157{bottom:387.727733pt;}
.y21d{bottom:387.926667pt;}
.y23e{bottom:388.048400pt;}
.y179{bottom:388.167733pt;}
.y20{bottom:388.214133pt;}
.yc8{bottom:391.258667pt;}
.y1d8{bottom:391.926533pt;}
.y1b3{bottom:391.926667pt;}
.y101{bottom:393.854800pt;}
.y92{bottom:396.056000pt;}
.y1f{bottom:400.218400pt;}
.y21c{bottom:400.726667pt;}
.y23d{bottom:400.848400pt;}
.yc7{bottom:402.458667pt;}
.y156{bottom:403.727733pt;}
.y178{bottom:404.167733pt;}
.y91{bottom:407.256000pt;}
.y1d7{bottom:407.926533pt;}
.y1b2{bottom:407.926667pt;}
.y1e{bottom:412.222667pt;}
.y100{bottom:412.521467pt;}
.y21b{bottom:413.526667pt;}
.y23c{bottom:413.648400pt;}
.yc6{bottom:413.658667pt;}
.y131{bottom:414.488133pt;}
.y11b{bottom:416.587867pt;}
.y90{bottom:418.456000pt;}
.y155{bottom:419.727733pt;}
.y177{bottom:420.167733pt;}
.y1d6{bottom:423.926533pt;}
.y1b1{bottom:423.926667pt;}
.y1d{bottom:424.226933pt;}
.yc5{bottom:424.858667pt;}
.y21a{bottom:426.326667pt;}
.y23b{bottom:426.448400pt;}
.ye4{bottom:429.656000pt;}
.y11a{bottom:435.254533pt;}
.y154{bottom:435.727733pt;}
.y176{bottom:436.167733pt;}
.y1c{bottom:436.231200pt;}
.y219{bottom:439.126667pt;}
.y23a{bottom:439.248400pt;}
.y1d5{bottom:439.926533pt;}
.y1b0{bottom:439.926667pt;}
.ye9{bottom:440.740400pt;}
.ye8{bottom:440.742000pt;}
.y8f{bottom:440.856000pt;}
.yc4{bottom:447.258667pt;}
.y1b{bottom:448.235467pt;}
.y153{bottom:451.727733pt;}
.y218{bottom:451.926667pt;}
.y239{bottom:452.048400pt;}
.y8e{bottom:452.056000pt;}
.y175{bottom:452.167733pt;}
.yf3{bottom:452.530933pt;}
.y119{bottom:453.921200pt;}
.y136{bottom:455.842800pt;}
.y1d4{bottom:455.926533pt;}
.y1af{bottom:455.926667pt;}
.yc3{bottom:458.458667pt;}
.y1a{bottom:460.239733pt;}
.y8d{bottom:463.256000pt;}
.y217{bottom:464.726667pt;}
.y238{bottom:464.848400pt;}
.y152{bottom:467.727733pt;}
.y174{bottom:468.167733pt;}
.yc2{bottom:469.658667pt;}
.yf2{bottom:471.197600pt;}
.y1d3{bottom:471.926533pt;}
.y1ae{bottom:471.926667pt;}
.y19{bottom:472.244000pt;}
.y8c{bottom:474.456000pt;}
.y216{bottom:477.526667pt;}
.y237{bottom:477.648400pt;}
.yc1{bottom:480.858667pt;}
.y125{bottom:482.552133pt;}
.y151{bottom:483.727733pt;}
.y173{bottom:484.167733pt;}
.y8b{bottom:485.656000pt;}
.y1d2{bottom:487.926533pt;}
.y1ad{bottom:487.926667pt;}
.yf1{bottom:489.864267pt;}
.y215{bottom:490.326667pt;}
.y236{bottom:490.448400pt;}
.yc0{bottom:492.058667pt;}
.y18{bottom:496.243467pt;}
.y8a{bottom:496.856000pt;}
.y150{bottom:499.727733pt;}
.y172{bottom:500.167733pt;}
.y214{bottom:503.126667pt;}
.y235{bottom:503.248400pt;}
.ybf{bottom:503.258667pt;}
.y1d1{bottom:503.926533pt;}
.y1ac{bottom:503.926667pt;}
.ye3{bottom:508.056000pt;}
.y17{bottom:508.247733pt;}
.yf0{bottom:508.530933pt;}
.y12d{bottom:510.498800pt;}
.ybe{bottom:514.458667pt;}
.y14f{bottom:515.727733pt;}
.y213{bottom:515.926667pt;}
.y234{bottom:516.048400pt;}
.y171{bottom:516.167733pt;}
.y89{bottom:519.256000pt;}
.y1d0{bottom:519.926533pt;}
.y1ab{bottom:519.926667pt;}
.y16{bottom:520.252000pt;}
.ybd{bottom:525.658667pt;}
.y212{bottom:528.726667pt;}
.y233{bottom:528.848400pt;}
.y88{bottom:530.456000pt;}
.y14e{bottom:531.727733pt;}
.y170{bottom:532.167733pt;}
.y1cf{bottom:535.926533pt;}
.y1aa{bottom:535.926667pt;}
.ybc{bottom:536.858667pt;}
.y211{bottom:541.526667pt;}
.y87{bottom:541.656000pt;}
.y14d{bottom:547.727733pt;}
.ybb{bottom:548.058667pt;}
.y16f{bottom:548.167733pt;}
.yfc{bottom:548.453333pt;}
.y1ce{bottom:551.926533pt;}
.y1a9{bottom:551.926667pt;}
.y86{bottom:552.856000pt;}
.y210{bottom:554.326667pt;}
.y14c{bottom:563.727733pt;}
.y85{bottom:564.056000pt;}
.y16e{bottom:564.167733pt;}
.y269{bottom:566.660000pt;}
.yfb{bottom:567.120000pt;}
.y20f{bottom:567.126667pt;}
.y1cd{bottom:567.926533pt;}
.y1a8{bottom:567.926667pt;}
.y5e{bottom:567.950133pt;}
.yba{bottom:570.458667pt;}
.y84{bottom:575.256000pt;}
.y268{bottom:577.860000pt;}
.y5d{bottom:579.280800pt;}
.y14b{bottom:579.727733pt;}
.y20e{bottom:579.926667pt;}
.y16d{bottom:580.167733pt;}
.yb9{bottom:581.658667pt;}
.y1cc{bottom:583.926533pt;}
.y1a7{bottom:583.926667pt;}
.yfa{bottom:585.786667pt;}
.y83{bottom:586.456000pt;}
.y12a{bottom:587.746800pt;}
.y267{bottom:589.060000pt;}
.y5c{bottom:590.616800pt;}
.y1ef{bottom:592.209600pt;}
.y20d{bottom:592.726667pt;}
.yb8{bottom:592.858667pt;}
.y14a{bottom:595.727733pt;}
.y16c{bottom:596.167733pt;}
.ye6{bottom:597.656000pt;}
.y1cb{bottom:599.926533pt;}
.y1a6{bottom:599.926667pt;}
.y5b{bottom:601.947467pt;}
.y1ee{bottom:603.409600pt;}
.yb7{bottom:604.058667pt;}
.y120{bottom:605.367867pt;}
.y20c{bottom:605.526667pt;}
.y82{bottom:608.856000pt;}
.y149{bottom:611.727733pt;}
.y16b{bottom:612.167733pt;}
.y1ed{bottom:614.609600pt;}
.yb6{bottom:615.258667pt;}
.y1ca{bottom:615.926533pt;}
.y1a5{bottom:615.926667pt;}
.y20b{bottom:618.326667pt;}
.y81{bottom:620.056000pt;}
.y11f{bottom:624.034533pt;}
.y5a{bottom:624.616800pt;}
.yff{bottom:625.796000pt;}
.y1ec{bottom:625.809600pt;}
.y148{bottom:627.728400pt;}
.y16a{bottom:628.167733pt;}
.y20a{bottom:631.126667pt;}
.y80{bottom:631.256000pt;}
.y1c9{bottom:631.926533pt;}
.y1a4{bottom:631.926667pt;}
.y59{bottom:635.947467pt;}
.y1eb{bottom:637.009600pt;}
.yb5{bottom:637.658667pt;}
.y7f{bottom:642.456000pt;}
.y11e{bottom:642.701200pt;}
.y147{bottom:643.728400pt;}
.y209{bottom:643.926667pt;}
.y169{bottom:644.167733pt;}
.yfe{bottom:644.462667pt;}
.y1c8{bottom:647.926533pt;}
.y1a3{bottom:647.926667pt;}
.yb4{bottom:648.858667pt;}
.y7e{bottom:653.656000pt;}
.y208{bottom:656.726667pt;}
.y58{bottom:658.391733pt;}
.yb3{bottom:660.058667pt;}
.y11d{bottom:661.367867pt;}
.yfd{bottom:663.129333pt;}
.y1a2{bottom:663.926533pt;}
.y7d{bottom:664.856000pt;}
.y12b{bottom:665.090800pt;}
.y207{bottom:669.526667pt;}
.y57{bottom:669.725067pt;}
.yb2{bottom:671.258667pt;}
.y7c{bottom:676.056000pt;}
.y1a1{bottom:679.926533pt;}
.y11c{bottom:680.034533pt;}
.y56{bottom:681.058400pt;}
.y12c{bottom:681.997467pt;}
.y206{bottom:682.326667pt;}
.yb1{bottom:682.458667pt;}
.y7b{bottom:687.256000pt;}
.y124{bottom:691.800133pt;}
.y55{bottom:692.391733pt;}
.yb0{bottom:693.658667pt;}
.y205{bottom:695.126667pt;}
.y1a0{bottom:695.926533pt;}
.ye2{bottom:698.456000pt;}
.y141{bottom:702.634800pt;}
.y54{bottom:703.725067pt;}
.yaf{bottom:704.858667pt;}
.y204{bottom:707.926667pt;}
.y7a{bottom:709.656000pt;}
.y19f{bottom:711.926533pt;}
.y53{bottom:715.058400pt;}
.y140{bottom:718.634800pt;}
.yf9{bottom:720.044000pt;}
.y203{bottom:720.726667pt;}
.y79{bottom:720.856000pt;}
.y1ea{bottom:723.398933pt;}
.y52{bottom:726.391733pt;}
.yae{bottom:727.258667pt;}
.y19e{bottom:727.926533pt;}
.y78{bottom:732.056000pt;}
.y202{bottom:733.526667pt;}
.y1e9{bottom:734.598933pt;}
.y13f{bottom:734.634800pt;}
.y51{bottom:737.725067pt;}
.yad{bottom:738.458667pt;}
.yf8{bottom:738.710667pt;}
.y77{bottom:743.256000pt;}
.y19d{bottom:743.926533pt;}
.y1e8{bottom:745.798933pt;}
.y201{bottom:746.326667pt;}
.yac{bottom:749.658667pt;}
.y13e{bottom:750.634800pt;}
.y76{bottom:754.456000pt;}
.yf7{bottom:757.377333pt;}
.y200{bottom:759.126667pt;}
.y12e{bottom:759.341467pt;}
.y19c{bottom:759.926533pt;}
.y50{bottom:760.391733pt;}
.yab{bottom:760.858667pt;}
.y75{bottom:765.656000pt;}
.y3{bottom:765.975600pt;}
.y13d{bottom:766.634800pt;}
.y4f{bottom:771.725067pt;}
.y1ff{bottom:771.926667pt;}
.y19b{bottom:775.926533pt;}
.y74{bottom:776.856000pt;}
.y13c{bottom:782.634800pt;}
.y1fe{bottom:784.726667pt;}
.y73{bottom:788.056000pt;}
.y19a{bottom:791.926533pt;}
.y4e{bottom:794.391733pt;}
.y1fd{bottom:797.526667pt;}
.y13b{bottom:798.634800pt;}
.y72{bottom:799.256000pt;}
.y115{bottom:802.134667pt;}
.y4d{bottom:806.396000pt;}
.y199{bottom:807.926533pt;}
.y1fc{bottom:810.326667pt;}
.yaa{bottom:810.456000pt;}
.yef{bottom:817.051333pt;}
.y4c{bottom:818.400267pt;}
.y114{bottom:820.801333pt;}
.y71{bottom:821.656000pt;}
.y1fb{bottom:823.126667pt;}
.y198{bottom:823.926533pt;}
.y4b{bottom:830.404533pt;}
.y70{bottom:832.856000pt;}
.yee{bottom:835.718000pt;}
.y1fa{bottom:835.926667pt;}
.y113{bottom:839.468000pt;}
.y197{bottom:839.926533pt;}
.y4a{bottom:842.408800pt;}
.y6f{bottom:844.056000pt;}
.y1f9{bottom:848.726667pt;}
.y15{bottom:852.851467pt;}
.yed{bottom:854.384667pt;}
.y49{bottom:854.413067pt;}
.y6e{bottom:855.256000pt;}
.y196{bottom:855.926533pt;}
.y128{bottom:856.344133pt;}
.y145{bottom:857.488400pt;}
.y112{bottom:858.134667pt;}
.ya{bottom:858.846800pt;}
.y1f8{bottom:861.526667pt;}
.y48{bottom:866.417333pt;}
.y6d{bottom:866.456000pt;}
.y14{bottom:871.518133pt;}
.y195{bottom:871.926533pt;}
.y1f7{bottom:874.326667pt;}
.y111{bottom:876.801333pt;}
.y6c{bottom:877.656000pt;}
.y47{bottom:878.421600pt;}
.y129{bottom:883.064133pt;}
.y1f6{bottom:887.126667pt;}
.y194{bottom:887.926533pt;}
.ye1{bottom:888.856000pt;}
.y13{bottom:890.184800pt;}
.y46{bottom:890.425867pt;}
.y9{bottom:890.846800pt;}
.y110{bottom:895.468000pt;}
.y134{bottom:897.432133pt;}
.y1f5{bottom:899.926667pt;}
.y6b{bottom:900.056000pt;}
.y45{bottom:902.430133pt;}
.y193{bottom:903.926533pt;}
.y8{bottom:906.846800pt;}
.y12{bottom:908.851467pt;}
.y6a{bottom:911.256000pt;}
.y1f4{bottom:912.726667pt;}
.y44{bottom:914.434400pt;}
.y144{bottom:915.955733pt;}
.y192{bottom:919.926533pt;}
.y69{bottom:922.456000pt;}
.y7{bottom:922.846800pt;}
.y1f3{bottom:925.526667pt;}
.y43{bottom:926.438667pt;}
.y11{bottom:933.187467pt;}
.y68{bottom:933.656000pt;}
.y10a{bottom:935.477333pt;}
.y191{bottom:935.926533pt;}
.y1f2{bottom:938.326667pt;}
.y42{bottom:938.442933pt;}
.y6{bottom:938.846800pt;}
.y143{bottom:941.555733pt;}
.y67{bottom:944.856000pt;}
.y41{bottom:950.447200pt;}
.y1f1{bottom:951.126667pt;}
.y10{bottom:951.854133pt;}
.y190{bottom:951.926533pt;}
.y109{bottom:954.144000pt;}
.y266{bottom:956.018667pt;}
.y66{bottom:956.056000pt;}
.y132{bottom:956.109467pt;}
.y40{bottom:962.451467pt;}
.y142{bottom:967.155733pt;}
.y265{bottom:967.218667pt;}
.y65{bottom:967.256000pt;}
.yec{bottom:967.789067pt;}
.y18f{bottom:967.926533pt;}
.yf{bottom:970.520800pt;}
.y3f{bottom:974.455733pt;}
.y264{bottom:978.418667pt;}
.y64{bottom:978.456000pt;}
.y18e{bottom:983.926533pt;}
.yeb{bottom:986.455733pt;}
.y3e{bottom:986.460000pt;}
.ye{bottom:989.187467pt;}
.y263{bottom:989.618667pt;}
.ye0{bottom:989.656000pt;}
.y5{bottom:993.105067pt;}
.y118{bottom:994.153467pt;}
.y3d{bottom:998.464267pt;}
.y18d{bottom:999.926533pt;}
.y1c7{bottom:999.926667pt;}
.y262{bottom:1000.818667pt;}
.y63{bottom:1000.856000pt;}
.yea{bottom:1005.122400pt;}
.y126{bottom:1007.074800pt;}
.yd{bottom:1007.854133pt;}
.y3c{bottom:1010.468533pt;}
.y261{bottom:1012.018667pt;}
.y62{bottom:1012.056000pt;}
.y117{bottom:1012.820133pt;}
.y18c{bottom:1015.926533pt;}
.y1c6{bottom:1015.926667pt;}
.y3b{bottom:1022.472800pt;}
.y260{bottom:1023.218667pt;}
.y61{bottom:1023.256000pt;}
.yc{bottom:1026.520800pt;}
.y116{bottom:1031.486800pt;}
.y4{bottom:1031.505067pt;}
.y18b{bottom:1031.926533pt;}
.y1c5{bottom:1031.926667pt;}
.y146{bottom:1031.928400pt;}
.y135{bottom:1033.453467pt;}
.y127{bottom:1033.794800pt;}
.y25f{bottom:1034.418667pt;}
.y60{bottom:1034.456000pt;}
.y3a{bottom:1034.477067pt;}
.yb{bottom:1045.187467pt;}
.h6{height:27.598933pt;}
.hb{height:28.410667pt;}
.h7{height:30.536533pt;}
.h8{height:31.434667pt;}
.ha{height:31.621333pt;}
.h9{height:32.469333pt;}
.h13{height:35.328000pt;}
.hd{height:35.925333pt;}
.hc{height:36.138667pt;}
.h3{height:40.586667pt;}
.hf{height:41.422027pt;}
.he{height:44.906667pt;}
.h12{height:44.907200pt;}
.h5{height:45.173333pt;}
.h2{height:56.821333pt;}
.h11{height:64.938667pt;}
.h10{height:66.275243pt;}
.h4{height:97.408000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:781.333333pt;}
.w2{width:781.385747pt;}
.w1{width:788.666667pt;}
.w0{width:788.728000pt;}
.w6{width:790.557333pt;}
.w7{width:790.666667pt;}
.w4{width:793.701333pt;}
.w5{width:794.000000pt;}
.xa{left:-695.986667pt;}
.x2{left:-664.013067pt;}
.xb{left:-158.393867pt;}
.x1{left:-20.970933pt;}
.x0{left:0.000000pt;}
.x1e{left:39.685067pt;}
.x1a{left:64.253867pt;}
.x28{left:71.811067pt;}
.x26{left:75.585200pt;}
.xc{left:83.205080pt;}
.xd{left:86.985880pt;}
.x2d{left:98.270533pt;}
.x16{left:102.162933pt;}
.x18{left:113.501867pt;}
.x1b{left:117.277867pt;}
.x21{left:120.629867pt;}
.x3f{left:125.752000pt;}
.x24{left:130.413733pt;}
.x37{left:157.725600pt;}
.x22{left:181.377067pt;}
.x23{left:203.004133pt;}
.x29{left:238.826667pt;}
.x3{left:302.749467pt;}
.x4{left:306.365467pt;}
.x7{left:349.775333pt;}
.x6{left:357.215333pt;}
.xe{left:362.985880pt;}
.x25{left:368.440400pt;}
.x20{left:386.670933pt;}
.x1d{left:394.230000pt;}
.x5{left:395.882000pt;}
.x8{left:402.335333pt;}
.x9{left:405.242000pt;}
.x2a{left:410.082933pt;}
.x1c{left:411.912533pt;}
.x27{left:413.846400pt;}
.x2c{left:421.411600pt;}
.x31{left:428.980000pt;}
.x2f{left:436.538533pt;}
.x17{left:446.889600pt;}
.x35{left:455.428933pt;}
.x19{left:458.266267pt;}
.x32{left:502.214667pt;}
.x34{left:511.993867pt;}
.x33{left:520.580533pt;}
.x2b{left:530.873867pt;}
.x2e{left:532.615333pt;}
.x30{left:554.900000pt;}
.x40{left:663.344800pt;}
.x1f{left:744.566933pt;}
.x15{left:761.834267pt;}
.x36{left:800.767733pt;}
.x10{left:882.575213pt;}
.x11{left:1051.704547pt;}
.x38{left:1124.488133pt;}
.x39{left:1128.104133pt;}
.x3c{left:1171.514000pt;}
.x3b{left:1178.954000pt;}
.xf{left:1204.994147pt;}
.x3a{left:1217.620667pt;}
.x12{left:1220.833880pt;}
.x3d{left:1224.074000pt;}
.x3e{left:1226.980667pt;}
.x13{left:1389.963213pt;}
.x14{left:1580.157480pt;}
}




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