
    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_26dc9531cd97bb384c49045d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_ba2f8d188244f5975fce4953.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_068a7dc35a538ab97f6f5e85.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895508;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_53157b5da872f35bbfa56df3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_f2cbc26295886aabce499052.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.694824;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_f28bbeee08d2b363b39e87ce.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_209164d1cac10729c47731ca.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.926270;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_082b5c5a85e002b29357f78d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.975586;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_20730f609c20f6ae18eb2342.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v7{vertical-align:-13.680000px;}
.v9{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.185920px;}
.v1{vertical-align:15.120000px;}
.vc{vertical-align:20.134080px;}
.v3{vertical-align:23.734080px;}
.vb{vertical-align:36.691200px;}
.v6{vertical-align:39.594240px;}
.vd{vertical-align:42.480000px;}
.v8{vertical-align:44.640000px;}
.va{vertical-align:50.408640px;}
.v5{vertical-align:53.256960px;}
.ls52{letter-spacing:-0.993600px;}
.ls16{letter-spacing:-0.927360px;}
.ls15{letter-spacing:-0.861120px;}
.ls25{letter-spacing:-0.794880px;}
.ls40{letter-spacing:-0.728640px;}
.ls32{letter-spacing:-0.723600px;}
.ls12{letter-spacing:-0.675360px;}
.ls24{letter-spacing:-0.662400px;}
.ls1b{letter-spacing:-0.596160px;}
.ls1a{letter-spacing:-0.529920px;}
.ls19{letter-spacing:-0.463680px;}
.ls13{letter-spacing:-0.397440px;}
.lsf{letter-spacing:-0.337680px;}
.ls34{letter-spacing:-0.334080px;}
.ls8{letter-spacing:-0.331200px;}
.ls1d{letter-spacing:-0.330000px;}
.ls3e{letter-spacing:-0.292320px;}
.lse{letter-spacing:-0.289440px;}
.ls60{letter-spacing:-0.270000px;}
.ls9{letter-spacing:-0.264960px;}
.lsa{letter-spacing:-0.241200px;}
.ls62{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.211680px;}
.ls1c{letter-spacing:-0.198720px;}
.ls33{letter-spacing:-0.167040px;}
.ls63{letter-spacing:-0.162000px;}
.ls10{letter-spacing:-0.144720px;}
.ls17{letter-spacing:-0.132480px;}
.ls61{letter-spacing:-0.108000px;}
.ls14{letter-spacing:-0.066240px;}
.lsc{letter-spacing:-0.048240px;}
.ls7{letter-spacing:0.000000px;}
.ls4b{letter-spacing:0.000120px;}
.ls45{letter-spacing:0.000240px;}
.ls5d{letter-spacing:0.006624px;}
.ls38{letter-spacing:0.014400px;}
.ls69{letter-spacing:0.016200px;}
.ls6a{letter-spacing:0.018000px;}
.ls31{letter-spacing:0.019872px;}
.ls66{letter-spacing:0.032400px;}
.ls5f{letter-spacing:0.037800px;}
.ls2f{letter-spacing:0.040320px;}
.ls11{letter-spacing:0.048240px;}
.ls5e{letter-spacing:0.054000px;}
.ls20{letter-spacing:0.066240px;}
.ls49{letter-spacing:0.066480px;}
.ls57{letter-spacing:0.072864px;}
.ls1f{letter-spacing:0.079488px;}
.ls4e{letter-spacing:0.089280px;}
.ls58{letter-spacing:0.099360px;}
.ls42{letter-spacing:0.105984px;}
.ls5{letter-spacing:0.106560px;}
.ls37{letter-spacing:0.112320px;}
.ls2a{letter-spacing:0.119232px;}
.ls3f{letter-spacing:0.125856px;}
.ls22{letter-spacing:0.126720px;}
.ls4a{letter-spacing:0.132240px;}
.ls0{letter-spacing:0.132480px;}
.ls21{letter-spacing:0.135360px;}
.ls26{letter-spacing:0.139104px;}
.ls5a{letter-spacing:0.144864px;}
.ls56{letter-spacing:0.152352px;}
.ls5c{letter-spacing:0.158976px;}
.ls3b{letter-spacing:0.165600px;}
.ls1e{letter-spacing:0.172224px;}
.ls5b{letter-spacing:0.175680px;}
.ls28{letter-spacing:0.178848px;}
.lsd{letter-spacing:0.192960px;}
.ls2{letter-spacing:0.198720px;}
.ls4f{letter-spacing:0.207360px;}
.ls64{letter-spacing:0.216000px;}
.ls23{letter-spacing:0.218592px;}
.ls55{letter-spacing:0.225216px;}
.ls6{letter-spacing:0.231840px;}
.ls3{letter-spacing:0.264960px;}
.ls3d{letter-spacing:0.290880px;}
.ls54{letter-spacing:0.304704px;}
.ls51{letter-spacing:0.311328px;}
.ls59{letter-spacing:0.317952px;}
.ls68{letter-spacing:0.324000px;}
.ls18{letter-spacing:0.331200px;}
.ls1{letter-spacing:0.337680px;}
.ls27{letter-spacing:0.344448px;}
.ls41{letter-spacing:0.375840px;}
.ls4{letter-spacing:0.388800px;}
.ls29{letter-spacing:0.397440px;}
.ls50{letter-spacing:0.423936px;}
.ls53{letter-spacing:0.470304px;}
.ls46{letter-spacing:0.529920px;}
.ls65{letter-spacing:0.756000px;}
.ls67{letter-spacing:0.766800px;}
.ls43{letter-spacing:0.993600px;}
.ls48{letter-spacing:3.029040px;}
.ls47{letter-spacing:3.697920px;}
.ls4c{letter-spacing:3.824640px;}
.ls2d{letter-spacing:6.690240px;}
.ls2e{letter-spacing:9.936000px;}
.ls30{letter-spacing:10.465920px;}
.ls4d{letter-spacing:13.550400px;}
.ls35{letter-spacing:14.440320px;}
.ls36{letter-spacing:14.572800px;}
.ls3a{letter-spacing:14.639040px;}
.ls3c{letter-spacing:16.709040px;}
.ls2b{letter-spacing:17.884800px;}
.ls2c{letter-spacing:18.216000px;}
.ls44{letter-spacing:34.047360px;}
.ls39{letter-spacing:82.949040px;}
.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;}
}
.ws4a{word-spacing:-66.372480px;}
.ws4d{word-spacing:-66.240000px;}
.ws4c{word-spacing:-66.107520px;}
.ws4e{word-spacing:-66.041280px;}
.ws4b{word-spacing:-65.908800px;}
.ws3f{word-spacing:-48.240000px;}
.ws40{word-spacing:-47.516400px;}
.ws3c{word-spacing:-15.367680px;}
.wse{word-spacing:-15.301440px;}
.ws2d{word-spacing:-15.235200px;}
.ws51{word-spacing:-15.109344px;}
.wsc{word-spacing:-15.102720px;}
.ws2e{word-spacing:-15.036480px;}
.ws0{word-spacing:-14.970240px;}
.wsd{word-spacing:-14.904000px;}
.ws12{word-spacing:-14.837760px;}
.ws11{word-spacing:-14.771520px;}
.ws2{word-spacing:-14.705280px;}
.ws1{word-spacing:-14.639040px;}
.ws41{word-spacing:-14.592672px;}
.wsb{word-spacing:-14.572800px;}
.ws34{word-spacing:-14.506560px;}
.ws4f{word-spacing:-14.440320px;}
.ws10{word-spacing:-14.374080px;}
.ws33{word-spacing:-14.307840px;}
.ws32{word-spacing:-14.175360px;}
.ws3d{word-spacing:-14.109120px;}
.ws50{word-spacing:-14.042880px;}
.ws13{word-spacing:-13.230000px;}
.ws5e{word-spacing:-12.420000px;}
.ws53{word-spacing:-12.258000px;}
.ws52{word-spacing:-12.204000px;}
.ws5f{word-spacing:-12.042000px;}
.ws5a{word-spacing:-11.988000px;}
.ws5b{word-spacing:-11.934000px;}
.ws6{word-spacing:-10.902240px;}
.ws8{word-spacing:-10.757520px;}
.ws3{word-spacing:-10.661040px;}
.ws9{word-spacing:-10.612800px;}
.ws7{word-spacing:-10.564560px;}
.wsa{word-spacing:-10.226880px;}
.ws48{word-spacing:-9.813600px;}
.wsf{word-spacing:-9.437760px;}
.ws42{word-spacing:-9.270720px;}
.ws47{word-spacing:-9.145440px;}
.ws43{word-spacing:-9.103680px;}
.ws5{word-spacing:-6.834240px;}
.ws4{word-spacing:-6.622560px;}
.ws39{word-spacing:-0.927360px;}
.ws36{word-spacing:-0.861120px;}
.ws38{word-spacing:-0.728640px;}
.ws30{word-spacing:-0.662400px;}
.ws1c{word-spacing:-0.578880px;}
.ws2c{word-spacing:-0.529920px;}
.ws31{word-spacing:-0.463680px;}
.ws3e{word-spacing:-0.397440px;}
.ws23{word-spacing:-0.331200px;}
.ws5d{word-spacing:-0.270000px;}
.ws2f{word-spacing:-0.264960px;}
.ws2b{word-spacing:-0.198720px;}
.ws1a{word-spacing:-0.192960px;}
.ws59{word-spacing:-0.162000px;}
.ws1f{word-spacing:-0.144720px;}
.ws29{word-spacing:-0.132480px;}
.ws3a{word-spacing:-0.066240px;}
.ws5c{word-spacing:-0.054000px;}
.ws19{word-spacing:-0.048240px;}
.ws14{word-spacing:0.000000px;}
.ws1e{word-spacing:0.048240px;}
.ws55{word-spacing:0.054000px;}
.ws26{word-spacing:0.066240px;}
.ws28{word-spacing:0.132480px;}
.ws18{word-spacing:0.144720px;}
.ws56{word-spacing:0.162000px;}
.ws1b{word-spacing:0.192960px;}
.ws21{word-spacing:0.198720px;}
.ws58{word-spacing:0.216000px;}
.ws17{word-spacing:0.264960px;}
.ws57{word-spacing:0.270000px;}
.ws20{word-spacing:0.289440px;}
.ws45{word-spacing:0.292320px;}
.ws54{word-spacing:0.324000px;}
.ws49{word-spacing:0.331200px;}
.ws1d{word-spacing:0.337680px;}
.ws16{word-spacing:0.397440px;}
.ws15{word-spacing:0.463680px;}
.ws24{word-spacing:0.529920px;}
.ws27{word-spacing:0.596160px;}
.ws35{word-spacing:0.662400px;}
.ws60{word-spacing:0.702000px;}
.ws3b{word-spacing:0.728640px;}
.ws37{word-spacing:0.794880px;}
.ws2a{word-spacing:0.861120px;}
.ws25{word-spacing:0.927360px;}
.ws22{word-spacing:0.993600px;}
.ws46{word-spacing:1.059840px;}
.ws44{word-spacing:3.391488px;}
._3{margin-left:-2.165328px;}
._1{margin-left:-1.102608px;}
._0{width:1.046592px;}
._2{width:2.056536px;}
._4{width:4.129488px;}
._7{width:5.564160px;}
._5{width:17.553600px;}
._6{width:50.238720px;}
._8{width:851.883408px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:30.240000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:57.606480px;}
.y1{bottom:77.760000px;}
.y4f{bottom:116.543520px;}
.yc8{bottom:117.007920px;}
.y70{bottom:119.881440px;}
.y183{bottom:119.922480px;}
.y19a{bottom:119.954880px;}
.y23c{bottom:120.271500px;}
.y147{bottom:120.458160px;}
.ya8{bottom:121.167360px;}
.y1d2{bottom:126.249120px;}
.y8e{bottom:126.264240px;}
.y279{bottom:127.473120px;}
.ydf{bottom:132.300000px;}
.y165{bottom:132.312240px;}
.y23b{bottom:136.647000px;}
.y117{bottom:136.683360px;}
.y12a{bottom:138.613680px;}
.y4e{bottom:146.782080px;}
.y278{bottom:149.249520px;}
.y2a{bottom:149.943600px;}
.y6f{bottom:150.120000px;}
.y182{bottom:150.161040px;}
.y199{bottom:150.193440px;}
.y146{bottom:150.696720px;}
.ya7{bottom:151.405920px;}
.y23a{bottom:153.022500px;}
.y8d{bottom:156.502800px;}
.y256{bottom:157.860000px;}
.yc7{bottom:159.148080px;}
.y1f3{bottom:159.516000px;}
.yde{bottom:162.540000px;}
.y164{bottom:162.550800px;}
.y116{bottom:166.739760px;}
.y1b3{bottom:168.338160px;}
.y1d1{bottom:168.361200px;}
.y129{bottom:168.852240px;}
.yfa{bottom:168.861600px;}
.y265{bottom:170.645040px;}
.y277{bottom:171.025920px;}
.y21c{bottom:174.271500px;}
.y1f2{bottom:175.891500px;}
.y4d{bottom:176.838480px;}
.y181{bottom:180.399600px;}
.y198{bottom:180.432000px;}
.y8c{bottom:186.741360px;}
.y29{bottom:189.190800px;}
.yc6{bottom:189.386640px;}
.y21b{bottom:190.647000px;}
.y6e{bottom:192.420000px;}
.y163{bottom:192.789360px;}
.y276{bottom:192.802320px;}
.y145{bottom:192.808800px;}
.ya6{bottom:193.518000px;}
.y115{bottom:196.978320px;}
.y1b2{bottom:198.576720px;}
.y1d0{bottom:198.599760px;}
.y255{bottom:199.984320px;}
.y264{bottom:200.883600px;}
.ydd{bottom:204.924240px;}
.y21a{bottom:207.022500px;}
.y4c{bottom:207.077040px;}
.y180{bottom:210.638160px;}
.y197{bottom:210.670560px;}
.y128{bottom:210.964320px;}
.yf9{bottom:210.973680px;}
.y272{bottom:212.229360px;}
.y1f1{bottom:213.327000px;}
.y275{bottom:214.396560px;}
.y8b{bottom:216.797760px;}
.yc5{bottom:219.625200px;}
.y6d{bottom:222.660000px;}
.y239{bottom:223.587000px;}
.ya5{bottom:223.756560px;}
.y1b1{bottom:228.815280px;}
.y1cf{bottom:228.838320px;}
.y1f0{bottom:229.702500px;}
.y254{bottom:230.222880px;}
.y114{bottom:230.810400px;}
.y263{bottom:231.122160px;}
.y28{bottom:231.485040px;}
.y162{bottom:235.083600px;}
.y144{bottom:235.103040px;}
.ydc{bottom:235.162800px;}
.y274{bottom:236.172960px;}
.y4b{bottom:237.315600px;}
.y17f{bottom:240.876720px;}
.y196{bottom:240.909120px;}
.y127{bottom:241.202880px;}
.yf8{bottom:241.212240px;}
.y219{bottom:244.647000px;}
.y8a{bottom:247.036320px;}
.yc4{bottom:249.863760px;}
.y6c{bottom:252.720000px;}
.ya4{bottom:253.995120px;}
.y271{bottom:254.523600px;}
.y273{bottom:257.949360px;}
.y1b0{bottom:259.053840px;}
.y1ce{bottom:259.076880px;}
.y253{bottom:260.461440px;}
.y218{bottom:261.022500px;}
.y262{bottom:261.360720px;}
.y27{bottom:261.723600px;}
.y161{bottom:265.142880px;}
.y143{bottom:265.159440px;}
.ydb{bottom:265.219200px;}
.y1ef{bottom:267.327000px;}
.y17e{bottom:271.115280px;}
.y195{bottom:271.147680px;}
.y126{bottom:271.441440px;}
.yf7{bottom:271.450800px;}
.y113{bottom:272.922480px;}
.y217{bottom:277.398000px;}
.y4a{bottom:279.609840px;}
.yc3{bottom:280.102320px;}
.y6b{bottom:282.960000px;}
.y1ee{bottom:283.702500px;}
.ya3{bottom:284.233680px;}
.y270{bottom:284.580000px;}
.y1af{bottom:289.292400px;}
.y1cd{bottom:289.315440px;}
.y89{bottom:289.330560px;}
.y252{bottom:290.700000px;}
.y261{bottom:291.599280px;}
.y26{bottom:291.785760px;}
.y238{bottom:293.962500px;}
.y160{bottom:295.381440px;}
.y142{bottom:295.398000px;}
.yda{bottom:295.457760px;}
.y17d{bottom:301.171680px;}
.y194{bottom:301.204080px;}
.y125{bottom:301.680000px;}
.yf6{bottom:301.689360px;}
.y112{bottom:303.161040px;}
.y49{bottom:309.666240px;}
.yc2{bottom:310.340880px;}
.y6a{bottom:313.200000px;}
.ya2{bottom:314.290080px;}
.y26f{bottom:314.818560px;}
.y216{bottom:315.022500px;}
.y1ae{bottom:319.530960px;}
.y1cc{bottom:319.554000px;}
.y88{bottom:319.569120px;}
.y251{bottom:320.940000px;}
.y1ed{bottom:321.327000px;}
.y25{bottom:322.024320px;}
.y15f{bottom:325.620000px;}
.y141{bottom:325.636560px;}
.yd9{bottom:325.696320px;}
.y260{bottom:329.223600px;}
.y215{bottom:331.398000px;}
.y17c{bottom:331.410240px;}
.y193{bottom:331.442640px;}
.y237{bottom:331.587000px;}
.y111{bottom:333.399600px;}
.y1ec{bottom:337.702500px;}
.y48{bottom:339.904800px;}
.yc1{bottom:340.397280px;}
.y69{bottom:343.440000px;}
.y124{bottom:343.800000px;}
.yf5{bottom:343.801440px;}
.ya1{bottom:344.528640px;}
.y26e{bottom:345.057120px;}
.y236{bottom:347.962500px;}
.y1ad{bottom:349.587360px;}
.y1cb{bottom:349.610400px;}
.y87{bottom:349.625520px;}
.y24{bottom:352.262880px;}
.y1eb{bottom:354.267000px;}
.y15e{bottom:355.860000px;}
.y140{bottom:355.875120px;}
.yd8{bottom:355.934880px;}
.y250{bottom:358.557840px;}
.y17b{bottom:361.648800px;}
.y192{bottom:361.681200px;}
.y110{bottom:363.638160px;}
.y235{bottom:364.338000px;}
.y214{bottom:369.022500px;}
.y47{bottom:370.143360px;}
.y1ea{bottom:370.642500px;}
.y68{bottom:373.680000px;}
.y123{bottom:374.040000px;}
.yf4{bottom:374.083920px;}
.ya0{bottom:374.767200px;}
.y26d{bottom:375.295680px;}
.y1ac{bottom:379.825920px;}
.y1ca{bottom:379.848960px;}
.y86{bottom:379.864080px;}
.y23{bottom:382.501440px;}
.yc0{bottom:382.691520px;}
.y213{bottom:385.398000px;}
.y13f{bottom:386.113680px;}
.yd7{bottom:386.173440px;}
.y17a{bottom:391.887360px;}
.y191{bottom:391.919760px;}
.y10f{bottom:393.876720px;}
.y15d{bottom:397.999440px;}
.y46{bottom:400.381920px;}
.y212{bottom:401.962500px;}
.y67{bottom:403.920000px;}
.y122{bottom:404.280000px;}
.yf3{bottom:404.322480px;}
.y1e9{bottom:408.267000px;}
.y1ab{bottom:410.064480px;}
.y1c9{bottom:410.087520px;}
.y85{bottom:410.102640px;}
.y22{bottom:412.740000px;}
.y26c{bottom:412.920000px;}
.y13e{bottom:416.352240px;}
.ybf{bottom:416.358000px;}
.y9f{bottom:417.061440px;}
.y234{bottom:418.338000px;}
.y179{bottom:422.125920px;}
.y190{bottom:422.158320px;}
.y10e{bottom:423.933120px;}
.y1e8{bottom:424.642500px;}
.y15c{bottom:428.238000px;}
.yd6{bottom:428.285520px;}
.y45{bottom:430.620480px;}
.y66{bottom:433.980000px;}
.y121{bottom:434.520000px;}
.y211{bottom:439.398000px;}
.y84{bottom:440.341200px;}
.y21{bottom:442.986480px;}
.y13d{bottom:446.408640px;}
.yf2{bottom:446.434560px;}
.y9e{bottom:447.303600px;}
.y1aa{bottom:452.358720px;}
.y178{bottom:452.364480px;}
.y1c8{bottom:452.381760px;}
.y18f{bottom:452.396880px;}
.y10d{bottom:454.171680px;}
.y210{bottom:455.773500px;}
.y233{bottom:455.962500px;}
.y15b{bottom:458.476560px;}
.yd5{bottom:458.524080px;}
.ybe{bottom:458.652240px;}
.y44{bottom:460.859040px;}
.y1e7{bottom:462.267000px;}
.y65{bottom:464.220000px;}
.y120{bottom:464.765040px;}
.y83{bottom:470.579760px;}
.y232{bottom:472.338000px;}
.y20{bottom:473.225040px;}
.y13c{bottom:476.647200px;}
.yf1{bottom:476.673120px;}
.y9d{bottom:477.360000px;}
.y1e6{bottom:478.642500px;}
.y1a9{bottom:482.415120px;}
.y18e{bottom:482.453280px;}
.y10c{bottom:484.410240px;}
.y231{bottom:488.713500px;}
.y15a{bottom:488.715120px;}
.yd4{bottom:488.762640px;}
.ybd{bottom:488.890800px;}
.y43{bottom:491.097600px;}
.y20f{bottom:493.398000px;}
.y64{bottom:494.460000px;}
.y177{bottom:494.476560px;}
.y1c7{bottom:494.493840px;}
.y11f{bottom:494.821440px;}
.y1e5{bottom:495.018000px;}
.y82{bottom:500.818320px;}
.y1f{bottom:503.281440px;}
.y13b{bottom:506.885760px;}
.yf0{bottom:506.911680px;}
.y20e{bottom:509.773500px;}
.y1a8{bottom:512.653680px;}
.y18d{bottom:512.691840px;}
.y10b{bottom:514.648800px;}
.y9c{bottom:518.040000px;}
.y159{bottom:518.953680px;}
.yd3{bottom:519.001200px;}
.ybc{bottom:519.129360px;}
.y42{bottom:521.154000px;}
.y63{bottom:524.700000px;}
.y176{bottom:524.715120px;}
.y1c6{bottom:524.732400px;}
.y11e{bottom:525.060000px;}
.y230{bottom:526.338000px;}
.y9b{bottom:529.201440px;}
.y81{bottom:530.874720px;}
.y1e4{bottom:532.642500px;}
.y1e{bottom:533.521440px;}
.yef{bottom:537.150240px;}
.y22f{bottom:542.713500px;}
.y1a7{bottom:542.892240px;}
.y18c{bottom:542.930400px;}
.y20d{bottom:547.398000px;}
.y1e3{bottom:549.018000px;}
.y13a{bottom:549.180000px;}
.ybb{bottom:549.185760px;}
.y158{bottom:549.192240px;}
.yd2{bottom:549.239760px;}
.y41{bottom:551.392560px;}
.y62{bottom:554.940000px;}
.y175{bottom:554.953680px;}
.y1c5{bottom:554.970960px;}
.y25f{bottom:556.029360px;}
.y10a{bottom:556.943040px;}
.y22e{bottom:559.278000px;}
.y80{bottom:561.113280px;}
.y1d{bottom:563.761440px;}
.y20c{bottom:563.773500px;}
.y1e2{bottom:565.582500px;}
.yee{bottom:567.388800px;}
.y11d{bottom:567.422640px;}
.y1a6{bottom:573.130800px;}
.y18b{bottom:573.168960px;}
.y9a{bottom:579.427920px;}
.y157{bottom:579.430800px;}
.yd1{bottom:579.478320px;}
.y20b{bottom:580.149000px;}
.y40{bottom:581.631120px;}
.y61{bottom:585.180000px;}
.y174{bottom:585.192240px;}
.y1c4{bottom:585.209520px;}
.y25e{bottom:586.267920px;}
.y109{bottom:586.999440px;}
.y139{bottom:591.301440px;}
.y7f{bottom:591.351840px;}
.yba{bottom:591.481440px;}
.y1c{bottom:594.000000px;}
.y22d{bottom:596.902500px;}
.yed{bottom:597.627360px;}
.y11c{bottom:597.661200px;}
.y1e1{bottom:603.018000px;}
.y1a5{bottom:603.369360px;}
.y18a{bottom:603.407520px;}
.y99{bottom:609.484320px;}
.y156{bottom:609.487200px;}
.yd0{bottom:609.534720px;}
.y3f{bottom:611.869680px;}
.y22c{bottom:613.278000px;}
.y60{bottom:615.420000px;}
.y173{bottom:615.430800px;}
.y1c3{bottom:615.448080px;}
.y1b6{bottom:615.463200px;}
.y25d{bottom:616.506480px;}
.y108{bottom:617.238000px;}
.y20a{bottom:617.773500px;}
.y1e0{bottom:619.393500px;}
.y138{bottom:621.544320px;}
.yb9{bottom:621.720000px;}
.y1b{bottom:624.242880px;}
.yec{bottom:627.865920px;}
.y11b{bottom:627.899760px;}
.y24c{bottom:629.842500px;}
.y1a4{bottom:633.607920px;}
.y7e{bottom:633.646080px;}
.y209{bottom:634.149000px;}
.y26b{bottom:635.404320px;}
.y98{bottom:639.722880px;}
.y155{bottom:639.725760px;}
.y3e{bottom:642.108240px;}
.y5f{bottom:645.480000px;}
.y172{bottom:645.487200px;}
.y1c2{bottom:645.504480px;}
.y1b5{bottom:645.519600px;}
.y24b{bottom:646.218000px;}
.y25c{bottom:646.745040px;}
.y107{bottom:647.476560px;}
.y22b{bottom:650.713500px;}
.y137{bottom:651.782880px;}
.ycf{bottom:651.828960px;}
.y1a{bottom:654.481440px;}
.y1df{bottom:657.018000px;}
.yeb{bottom:657.922320px;}
.yb8{bottom:658.620000px;}
.y24f{bottom:659.701440px;}
.y1a3{bottom:663.846480px;}
.y189{bottom:663.884640px;}
.y26a{bottom:665.642880px;}
.y22a{bottom:667.089000px;}
.yb7{bottom:669.787200px;}
.y97{bottom:669.961440px;}
.y11a{bottom:670.011840px;}
.y208{bottom:671.773500px;}
.y1de{bottom:673.393500px;}
.y5e{bottom:675.720000px;}
.y171{bottom:675.725760px;}
.y1c1{bottom:675.743040px;}
.y7d{bottom:675.758160px;}
.y25b{bottom:676.983600px;}
.y106{bottom:677.715120px;}
.y136{bottom:682.021440px;}
.y154{bottom:682.045920px;}
.y24a{bottom:683.653500px;}
.y3d{bottom:684.220320px;}
.y207{bottom:688.149000px;}
.yea{bottom:688.160880px;}
.y24e{bottom:689.940000px;}
.y19{bottom:693.546450px;}
.y1a2{bottom:693.902880px;}
.yce{bottom:693.941040px;}
.y269{bottom:695.881440px;}
.y249{bottom:700.029000px;}
.y96{bottom:700.200000px;}
.y229{bottom:704.713500px;}
.y5d{bottom:705.961440px;}
.y170{bottom:705.964320px;}
.y1b4{bottom:705.996720px;}
.y25a{bottom:707.222160px;}
.y105{bottom:707.953680px;}
.y1dd{bottom:711.018000px;}
.y135{bottom:712.260000px;}
.y153{bottom:712.284480px;}
.y119{bottom:712.306080px;}
.y3c{bottom:714.458880px;}
.y1c0{bottom:718.037280px;}
.y7c{bottom:718.052400px;}
.y228{bottom:721.089000px;}
.yb6{bottom:722.530800px;}
.y1a1{bottom:724.141440px;}
.ycd{bottom:724.179600px;}
.y206{bottom:725.773500px;}
.y268{bottom:726.120000px;}
.y24d{bottom:726.660000px;}
.y1dc{bottom:727.393500px;}
.ye9{bottom:730.455120px;}
.y18{bottom:732.765960px;}
.y16f{bottom:736.202880px;}
.y5c{bottom:736.235280px;}
.y259{bottom:737.278560px;}
.y227{bottom:737.653500px;}
.y205{bottom:742.149000px;}
.y134{bottom:742.321440px;}
.y152{bottom:742.340880px;}
.y95{bottom:742.362480px;}
.y3b{bottom:744.697440px;}
.y17{bottom:747.346500px;}
.y1bf{bottom:748.275840px;}
.y7b{bottom:748.290960px;}
.y104{bottom:750.065760px;}
.yb5{bottom:752.769360px;}
.y248{bottom:754.029000px;}
.y1a0{bottom:754.392240px;}
.ycc{bottom:754.418160px;}
.y267{bottom:756.180000px;}
.y204{bottom:758.524500px;}
.y16{bottom:762.107940px;}
.y1db{bottom:765.018000px;}
.y16e{bottom:766.441440px;}
.y5b{bottom:766.473840px;}
.y258{bottom:767.517120px;}
.y247{bottom:770.593500px;}
.y133{bottom:772.561440px;}
.ye8{bottom:772.567200px;}
.y151{bottom:772.579440px;}
.y94{bottom:772.601040px;}
.y3a{bottom:774.936000px;}
.y226{bottom:775.089000px;}
.y15{bottom:776.688480px;}
.y1be{bottom:778.332240px;}
.y7a{bottom:778.347360px;}
.y103{bottom:780.304320px;}
.y1da{bottom:781.393500px;}
.yb4{bottom:783.007920px;}
.ycb{bottom:784.656720px;}
.y14{bottom:791.269020px;}
.y225{bottom:791.464500px;}
.y266{bottom:793.980000px;}
.y203{bottom:796.149000px;}
.y16d{bottom:796.680000px;}
.y19f{bottom:796.686480px;}
.y5a{bottom:796.712400px;}
.y1d9{bottom:797.769000px;}
.y132{bottom:802.800000px;}
.ye7{bottom:802.805760px;}
.y93{bottom:802.839600px;}
.y39{bottom:805.174560px;}
.y257{bottom:805.323600px;}
.y13{bottom:806.030400px;}
.y224{bottom:808.029000px;}
.y246{bottom:808.218000px;}
.y1bd{bottom:808.570800px;}
.y79{bottom:808.585920px;}
.y102{bottom:810.542880px;}
.y202{bottom:812.524500px;}
.yb3{bottom:813.064320px;}
.y150{bottom:814.873680px;}
.yca{bottom:814.895280px;}
.y245{bottom:824.593500px;}
.y19e{bottom:826.742880px;}
.y59{bottom:826.768800px;}
.y201{bottom:829.089000px;}
.ye6{bottom:833.044320px;}
.y92{bottom:833.078160px;}
.y12{bottom:835.191540px;}
.y1d8{bottom:835.393500px;}
.y38{bottom:835.413120px;}
.y16c{bottom:838.804320px;}
.y1bc{bottom:838.809360px;}
.y78{bottom:838.824480px;}
.y101{bottom:840.781440px;}
.y244{bottom:840.969000px;}
.yb2{bottom:843.302880px;}
.y131{bottom:845.103600px;}
.yc9{bottom:845.133840px;}
.y223{bottom:845.653500px;}
.y11{bottom:849.952980px;}
.y1d7{bottom:851.769000px;}
.y19d{bottom:856.981440px;}
.y14f{bottom:856.985760px;}
.y58{bottom:857.007360px;}
.y222{bottom:862.029000px;}
.ye5{bottom:863.282880px;}
.y91{bottom:863.316720px;}
.y10{bottom:864.533520px;}
.y37{bottom:865.469520px;}
.y200{bottom:866.524500px;}
.y16b{bottom:869.042880px;}
.y1bb{bottom:869.047920px;}
.y77{bottom:869.063040px;}
.y100{bottom:871.020000px;}
.yb1{bottom:873.541440px;}
.y130{bottom:875.162880px;}
.y118{bottom:875.190240px;}
.y221{bottom:878.404500px;}
.y243{bottom:878.593500px;}
.yf{bottom:879.294960px;}
.y1ff{bottom:882.900000px;}
.y19c{bottom:887.222880px;}
.y14e{bottom:887.224320px;}
.y57{bottom:887.245920px;}
.y1d6{bottom:889.393500px;}
.ye4{bottom:893.521440px;}
.y90{bottom:893.555280px;}
.ye{bottom:893.875500px;}
.y242{bottom:894.969000px;}
.y36{bottom:895.708080px;}
.y16a{bottom:899.281440px;}
.y1ba{bottom:899.286480px;}
.y76{bottom:899.301600px;}
.y1fe{bottom:899.464500px;}
.yb0{bottom:903.780000px;}
.y12f{bottom:905.401440px;}
.y188{bottom:905.428800px;}
.y1d5{bottom:905.769000px;}
.yd{bottom:908.456100px;}
.yff{bottom:913.140000px;}
.y220{bottom:916.029000px;}
.y19b{bottom:917.461440px;}
.y14d{bottom:917.462880px;}
.y56{bottom:917.484480px;}
.ye3{bottom:923.773680px;}
.y35{bottom:925.946640px;}
.y169{bottom:929.520000px;}
.y1b9{bottom:929.525040px;}
.y75{bottom:929.540160px;}
.y21f{bottom:932.404500px;}
.y241{bottom:932.593500px;}
.y12e{bottom:935.640000px;}
.y8f{bottom:935.667360px;}
.y1fd{bottom:937.089000px;}
.yc{bottom:937.798050px;}
.y1d4{bottom:943.204500px;}
.yaf{bottom:946.083600px;}
.y14c{bottom:947.701440px;}
.y55{bottom:947.723040px;}
.y240{bottom:948.969000px;}
.y1fc{bottom:953.464500px;}
.yfe{bottom:953.826480px;}
.y34{bottom:956.185200px;}
.y1d3{bottom:959.580000px;}
.y1b8{bottom:959.763600px;}
.y168{bottom:959.770800px;}
.y74{bottom:959.778720px;}
.yfd{bottom:964.984320px;}
.ye2{bottom:965.885760px;}
.y187{bottom:965.905920px;}
.y1fb{bottom:969.840000px;}
.y21e{bottom:970.029000px;}
.yb{bottom:970.920000px;}
.yae{bottom:976.140000px;}
.y12d{bottom:977.940000px;}
.y54{bottom:977.961600px;}
.ya{bottom:981.718560px;}
.y1fa{bottom:986.404500px;}
.y33{bottom:986.423760px;}
.y1b7{bottom:989.820000px;}
.y167{bottom:989.827200px;}
.y73{bottom:989.835120px;}
.y186{bottom:996.144480px;}
.y9{bottom:1000.260000px;}
.y21d{bottom:1002.780000px;}
.ye1{bottom:1008.180000px;}
.y53{bottom:1008.200160px;}
.y8{bottom:1014.840000px;}
.y32{bottom:1016.662320px;}
.yad{bottom:1016.820000px;}
.y23f{bottom:1019.344500px;}
.y14b{bottom:1020.060000px;}
.yfc{bottom:1020.062880px;}
.y166{bottom:1020.065760px;}
.y72{bottom:1020.073680px;}
.y1f9{bottom:1024.029000px;}
.y185{bottom:1026.383040px;}
.yac{bottom:1027.981440px;}
.y7{bottom:1029.420000px;}
.y12c{bottom:1038.240000px;}
.y52{bottom:1038.256560px;}
.y1f8{bottom:1040.404500px;}
.y6{bottom:1044.180000px;}
.y31{bottom:1046.718720px;}
.y14a{bottom:1050.300000px;}
.yfb{bottom:1050.301440px;}
.ye0{bottom:1050.304320px;}
.y71{bottom:1050.312240px;}
.y1f7{bottom:1056.780000px;}
.y23e{bottom:1056.969000px;}
.y12b{bottom:1068.480000px;}
.y184{bottom:1068.495120px;}
.y1f6{bottom:1073.344500px;}
.y5{bottom:1075.139460px;}
.y30{bottom:1076.957280px;}
.y149{bottom:1080.540000px;}
.yab{bottom:1080.542880px;}
.y51{bottom:1080.550800px;}
.y4{bottom:1089.720000px;}
.y2f{bottom:1107.195840px;}
.y148{bottom:1110.780000px;}
.yaa{bottom:1110.781440px;}
.y50{bottom:1110.789360px;}
.y3{bottom:1119.251520px;}
.y1f5{bottom:1127.155500px;}
.y23d{bottom:1127.344500px;}
.ya9{bottom:1141.020000px;}
.y2{bottom:1141.027920px;}
.y1f4{bottom:1143.720000px;}
.y2d{bottom:1197.134850px;}
.y2c{bottom:1215.135000px;}
.y2b{bottom:1233.135000px;}
.h6{height:24.939141px;}
.h7{height:39.783867px;}
.h8{height:39.784107px;}
.h4{height:40.059141px;}
.h5{height:40.061301px;}
.hb{height:43.066406px;}
.h18{height:44.534180px;}
.h3{height:48.095156px;}
.h9{height:48.095276px;}
.h2{height:54.628594px;}
.h17{height:58.096086px;}
.h12{height:58.145046px;}
.ha{height:58.173846px;}
.h16{height:58.185366px;}
.h13{height:58.188246px;}
.h11{height:58.194006px;}
.h15{height:99.242674px;}
.hf{height:99.268594px;}
.hd{height:128.992500px;}
.h10{height:134.723700px;}
.he{height:134.761140px;}
.h14{height:136.293345px;}
.hc{height:137.609460px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:65.197500px;}
.x2{left:127.617840px;}
.x3{left:180.725760px;}
.xa{left:235.447200px;}
.x7{left:306.352080px;}
.x5{left:334.967760px;}
.x9{left:367.855920px;}
.xb{left:401.034240px;}
.xd{left:433.980000px;}
.x6{left:445.860000px;}
.x8{left:476.100000px;}
.xf{left:721.627200px;}
.xc{left:748.620000px;}
.x1{left:757.080000px;}
.xe{left:765.342000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v7{vertical-align:-12.160000pt;}
.v9{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.943040pt;}
.v1{vertical-align:13.440000pt;}
.vc{vertical-align:17.896960pt;}
.v3{vertical-align:21.096960pt;}
.vb{vertical-align:32.614400pt;}
.v6{vertical-align:35.194880pt;}
.vd{vertical-align:37.760000pt;}
.v8{vertical-align:39.680000pt;}
.va{vertical-align:44.807680pt;}
.v5{vertical-align:47.339520pt;}
.ls52{letter-spacing:-0.883200pt;}
.ls16{letter-spacing:-0.824320pt;}
.ls15{letter-spacing:-0.765440pt;}
.ls25{letter-spacing:-0.706560pt;}
.ls40{letter-spacing:-0.647680pt;}
.ls32{letter-spacing:-0.643200pt;}
.ls12{letter-spacing:-0.600320pt;}
.ls24{letter-spacing:-0.588800pt;}
.ls1b{letter-spacing:-0.529920pt;}
.ls1a{letter-spacing:-0.471040pt;}
.ls19{letter-spacing:-0.412160pt;}
.ls13{letter-spacing:-0.353280pt;}
.lsf{letter-spacing:-0.300160pt;}
.ls34{letter-spacing:-0.296960pt;}
.ls8{letter-spacing:-0.294400pt;}
.ls1d{letter-spacing:-0.293333pt;}
.ls3e{letter-spacing:-0.259840pt;}
.lse{letter-spacing:-0.257280pt;}
.ls60{letter-spacing:-0.240000pt;}
.ls9{letter-spacing:-0.235520pt;}
.lsa{letter-spacing:-0.214400pt;}
.ls62{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.188160pt;}
.ls1c{letter-spacing:-0.176640pt;}
.ls33{letter-spacing:-0.148480pt;}
.ls63{letter-spacing:-0.144000pt;}
.ls10{letter-spacing:-0.128640pt;}
.ls17{letter-spacing:-0.117760pt;}
.ls61{letter-spacing:-0.096000pt;}
.ls14{letter-spacing:-0.058880pt;}
.lsc{letter-spacing:-0.042880pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4b{letter-spacing:0.000107pt;}
.ls45{letter-spacing:0.000213pt;}
.ls5d{letter-spacing:0.005888pt;}
.ls38{letter-spacing:0.012800pt;}
.ls69{letter-spacing:0.014400pt;}
.ls6a{letter-spacing:0.016000pt;}
.ls31{letter-spacing:0.017664pt;}
.ls66{letter-spacing:0.028800pt;}
.ls5f{letter-spacing:0.033600pt;}
.ls2f{letter-spacing:0.035840pt;}
.ls11{letter-spacing:0.042880pt;}
.ls5e{letter-spacing:0.048000pt;}
.ls20{letter-spacing:0.058880pt;}
.ls49{letter-spacing:0.059093pt;}
.ls57{letter-spacing:0.064768pt;}
.ls1f{letter-spacing:0.070656pt;}
.ls4e{letter-spacing:0.079360pt;}
.ls58{letter-spacing:0.088320pt;}
.ls42{letter-spacing:0.094208pt;}
.ls5{letter-spacing:0.094720pt;}
.ls37{letter-spacing:0.099840pt;}
.ls2a{letter-spacing:0.105984pt;}
.ls3f{letter-spacing:0.111872pt;}
.ls22{letter-spacing:0.112640pt;}
.ls4a{letter-spacing:0.117547pt;}
.ls0{letter-spacing:0.117760pt;}
.ls21{letter-spacing:0.120320pt;}
.ls26{letter-spacing:0.123648pt;}
.ls5a{letter-spacing:0.128768pt;}
.ls56{letter-spacing:0.135424pt;}
.ls5c{letter-spacing:0.141312pt;}
.ls3b{letter-spacing:0.147200pt;}
.ls1e{letter-spacing:0.153088pt;}
.ls5b{letter-spacing:0.156160pt;}
.ls28{letter-spacing:0.158976pt;}
.lsd{letter-spacing:0.171520pt;}
.ls2{letter-spacing:0.176640pt;}
.ls4f{letter-spacing:0.184320pt;}
.ls64{letter-spacing:0.192000pt;}
.ls23{letter-spacing:0.194304pt;}
.ls55{letter-spacing:0.200192pt;}
.ls6{letter-spacing:0.206080pt;}
.ls3{letter-spacing:0.235520pt;}
.ls3d{letter-spacing:0.258560pt;}
.ls54{letter-spacing:0.270848pt;}
.ls51{letter-spacing:0.276736pt;}
.ls59{letter-spacing:0.282624pt;}
.ls68{letter-spacing:0.288000pt;}
.ls18{letter-spacing:0.294400pt;}
.ls1{letter-spacing:0.300160pt;}
.ls27{letter-spacing:0.306176pt;}
.ls41{letter-spacing:0.334080pt;}
.ls4{letter-spacing:0.345600pt;}
.ls29{letter-spacing:0.353280pt;}
.ls50{letter-spacing:0.376832pt;}
.ls53{letter-spacing:0.418048pt;}
.ls46{letter-spacing:0.471040pt;}
.ls65{letter-spacing:0.672000pt;}
.ls67{letter-spacing:0.681600pt;}
.ls43{letter-spacing:0.883200pt;}
.ls48{letter-spacing:2.692480pt;}
.ls47{letter-spacing:3.287040pt;}
.ls4c{letter-spacing:3.399680pt;}
.ls2d{letter-spacing:5.946880pt;}
.ls2e{letter-spacing:8.832000pt;}
.ls30{letter-spacing:9.303040pt;}
.ls4d{letter-spacing:12.044800pt;}
.ls35{letter-spacing:12.835840pt;}
.ls36{letter-spacing:12.953600pt;}
.ls3a{letter-spacing:13.012480pt;}
.ls3c{letter-spacing:14.852480pt;}
.ls2b{letter-spacing:15.897600pt;}
.ls2c{letter-spacing:16.192000pt;}
.ls44{letter-spacing:30.264320pt;}
.ls39{letter-spacing:73.732480pt;}
.ws4a{word-spacing:-58.997760pt;}
.ws4d{word-spacing:-58.880000pt;}
.ws4c{word-spacing:-58.762240pt;}
.ws4e{word-spacing:-58.703360pt;}
.ws4b{word-spacing:-58.585600pt;}
.ws3f{word-spacing:-42.880000pt;}
.ws40{word-spacing:-42.236800pt;}
.ws3c{word-spacing:-13.660160pt;}
.wse{word-spacing:-13.601280pt;}
.ws2d{word-spacing:-13.542400pt;}
.ws51{word-spacing:-13.430528pt;}
.wsc{word-spacing:-13.424640pt;}
.ws2e{word-spacing:-13.365760pt;}
.ws0{word-spacing:-13.306880pt;}
.wsd{word-spacing:-13.248000pt;}
.ws12{word-spacing:-13.189120pt;}
.ws11{word-spacing:-13.130240pt;}
.ws2{word-spacing:-13.071360pt;}
.ws1{word-spacing:-13.012480pt;}
.ws41{word-spacing:-12.971264pt;}
.wsb{word-spacing:-12.953600pt;}
.ws34{word-spacing:-12.894720pt;}
.ws4f{word-spacing:-12.835840pt;}
.ws10{word-spacing:-12.776960pt;}
.ws33{word-spacing:-12.718080pt;}
.ws32{word-spacing:-12.600320pt;}
.ws3d{word-spacing:-12.541440pt;}
.ws50{word-spacing:-12.482560pt;}
.ws13{word-spacing:-11.760000pt;}
.ws5e{word-spacing:-11.040000pt;}
.ws53{word-spacing:-10.896000pt;}
.ws52{word-spacing:-10.848000pt;}
.ws5f{word-spacing:-10.704000pt;}
.ws5a{word-spacing:-10.656000pt;}
.ws5b{word-spacing:-10.608000pt;}
.ws6{word-spacing:-9.690880pt;}
.ws8{word-spacing:-9.562240pt;}
.ws3{word-spacing:-9.476480pt;}
.ws9{word-spacing:-9.433600pt;}
.ws7{word-spacing:-9.390720pt;}
.wsa{word-spacing:-9.090560pt;}
.ws48{word-spacing:-8.723200pt;}
.wsf{word-spacing:-8.389120pt;}
.ws42{word-spacing:-8.240640pt;}
.ws47{word-spacing:-8.129280pt;}
.ws43{word-spacing:-8.092160pt;}
.ws5{word-spacing:-6.074880pt;}
.ws4{word-spacing:-5.886720pt;}
.ws39{word-spacing:-0.824320pt;}
.ws36{word-spacing:-0.765440pt;}
.ws38{word-spacing:-0.647680pt;}
.ws30{word-spacing:-0.588800pt;}
.ws1c{word-spacing:-0.514560pt;}
.ws2c{word-spacing:-0.471040pt;}
.ws31{word-spacing:-0.412160pt;}
.ws3e{word-spacing:-0.353280pt;}
.ws23{word-spacing:-0.294400pt;}
.ws5d{word-spacing:-0.240000pt;}
.ws2f{word-spacing:-0.235520pt;}
.ws2b{word-spacing:-0.176640pt;}
.ws1a{word-spacing:-0.171520pt;}
.ws59{word-spacing:-0.144000pt;}
.ws1f{word-spacing:-0.128640pt;}
.ws29{word-spacing:-0.117760pt;}
.ws3a{word-spacing:-0.058880pt;}
.ws5c{word-spacing:-0.048000pt;}
.ws19{word-spacing:-0.042880pt;}
.ws14{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.042880pt;}
.ws55{word-spacing:0.048000pt;}
.ws26{word-spacing:0.058880pt;}
.ws28{word-spacing:0.117760pt;}
.ws18{word-spacing:0.128640pt;}
.ws56{word-spacing:0.144000pt;}
.ws1b{word-spacing:0.171520pt;}
.ws21{word-spacing:0.176640pt;}
.ws58{word-spacing:0.192000pt;}
.ws17{word-spacing:0.235520pt;}
.ws57{word-spacing:0.240000pt;}
.ws20{word-spacing:0.257280pt;}
.ws45{word-spacing:0.259840pt;}
.ws54{word-spacing:0.288000pt;}
.ws49{word-spacing:0.294400pt;}
.ws1d{word-spacing:0.300160pt;}
.ws16{word-spacing:0.353280pt;}
.ws15{word-spacing:0.412160pt;}
.ws24{word-spacing:0.471040pt;}
.ws27{word-spacing:0.529920pt;}
.ws35{word-spacing:0.588800pt;}
.ws60{word-spacing:0.624000pt;}
.ws3b{word-spacing:0.647680pt;}
.ws37{word-spacing:0.706560pt;}
.ws2a{word-spacing:0.765440pt;}
.ws25{word-spacing:0.824320pt;}
.ws22{word-spacing:0.883200pt;}
.ws46{word-spacing:0.942080pt;}
.ws44{word-spacing:3.014656pt;}
._3{margin-left:-1.924736pt;}
._1{margin-left:-0.980096pt;}
._0{width:0.930304pt;}
._2{width:1.828032pt;}
._4{width:3.670656pt;}
._7{width:4.945920pt;}
._5{width:15.603200pt;}
._6{width:44.656640pt;}
._8{width:757.229696pt;}
.fs2{font-size:26.880000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:51.205760pt;}
.y1{bottom:69.120000pt;}
.y4f{bottom:103.594240pt;}
.yc8{bottom:104.007040pt;}
.y70{bottom:106.561280pt;}
.y183{bottom:106.597760pt;}
.y19a{bottom:106.626560pt;}
.y23c{bottom:106.908000pt;}
.y147{bottom:107.073920pt;}
.ya8{bottom:107.704320pt;}
.y1d2{bottom:112.221440pt;}
.y8e{bottom:112.234880pt;}
.y279{bottom:113.309440pt;}
.ydf{bottom:117.600000pt;}
.y165{bottom:117.610880pt;}
.y23b{bottom:121.464000pt;}
.y117{bottom:121.496320pt;}
.y12a{bottom:123.212160pt;}
.y4e{bottom:130.472960pt;}
.y278{bottom:132.666240pt;}
.y2a{bottom:133.283200pt;}
.y6f{bottom:133.440000pt;}
.y182{bottom:133.476480pt;}
.y199{bottom:133.505280pt;}
.y146{bottom:133.952640pt;}
.ya7{bottom:134.583040pt;}
.y23a{bottom:136.020000pt;}
.y8d{bottom:139.113600pt;}
.y256{bottom:140.320000pt;}
.yc7{bottom:141.464960pt;}
.y1f3{bottom:141.792000pt;}
.yde{bottom:144.480000pt;}
.y164{bottom:144.489600pt;}
.y116{bottom:148.213120pt;}
.y1b3{bottom:149.633920pt;}
.y1d1{bottom:149.654400pt;}
.y129{bottom:150.090880pt;}
.yfa{bottom:150.099200pt;}
.y265{bottom:151.684480pt;}
.y277{bottom:152.023040pt;}
.y21c{bottom:154.908000pt;}
.y1f2{bottom:156.348000pt;}
.y4d{bottom:157.189760pt;}
.y181{bottom:160.355200pt;}
.y198{bottom:160.384000pt;}
.y8c{bottom:165.992320pt;}
.y29{bottom:168.169600pt;}
.yc6{bottom:168.343680pt;}
.y21b{bottom:169.464000pt;}
.y6e{bottom:171.040000pt;}
.y163{bottom:171.368320pt;}
.y276{bottom:171.379840pt;}
.y145{bottom:171.385600pt;}
.ya6{bottom:172.016000pt;}
.y115{bottom:175.091840pt;}
.y1b2{bottom:176.512640pt;}
.y1d0{bottom:176.533120pt;}
.y255{bottom:177.763840pt;}
.y264{bottom:178.563200pt;}
.ydd{bottom:182.154880pt;}
.y21a{bottom:184.020000pt;}
.y4c{bottom:184.068480pt;}
.y180{bottom:187.233920pt;}
.y197{bottom:187.262720pt;}
.y128{bottom:187.523840pt;}
.yf9{bottom:187.532160pt;}
.y272{bottom:188.648320pt;}
.y1f1{bottom:189.624000pt;}
.y275{bottom:190.574720pt;}
.y8b{bottom:192.709120pt;}
.yc5{bottom:195.222400pt;}
.y6d{bottom:197.920000pt;}
.y239{bottom:198.744000pt;}
.ya5{bottom:198.894720pt;}
.y1b1{bottom:203.391360pt;}
.y1cf{bottom:203.411840pt;}
.y1f0{bottom:204.180000pt;}
.y254{bottom:204.642560pt;}
.y114{bottom:205.164800pt;}
.y263{bottom:205.441920pt;}
.y28{bottom:205.764480pt;}
.y162{bottom:208.963200pt;}
.y144{bottom:208.980480pt;}
.ydc{bottom:209.033600pt;}
.y274{bottom:209.931520pt;}
.y4b{bottom:210.947200pt;}
.y17f{bottom:214.112640pt;}
.y196{bottom:214.141440pt;}
.y127{bottom:214.402560pt;}
.yf8{bottom:214.410880pt;}
.y219{bottom:217.464000pt;}
.y8a{bottom:219.587840pt;}
.yc4{bottom:222.101120pt;}
.y6c{bottom:224.640000pt;}
.ya4{bottom:225.773440pt;}
.y271{bottom:226.243200pt;}
.y273{bottom:229.288320pt;}
.y1b0{bottom:230.270080pt;}
.y1ce{bottom:230.290560pt;}
.y253{bottom:231.521280pt;}
.y218{bottom:232.020000pt;}
.y262{bottom:232.320640pt;}
.y27{bottom:232.643200pt;}
.y161{bottom:235.682560pt;}
.y143{bottom:235.697280pt;}
.ydb{bottom:235.750400pt;}
.y1ef{bottom:237.624000pt;}
.y17e{bottom:240.991360pt;}
.y195{bottom:241.020160pt;}
.y126{bottom:241.281280pt;}
.yf7{bottom:241.289600pt;}
.y113{bottom:242.597760pt;}
.y217{bottom:246.576000pt;}
.y4a{bottom:248.542080pt;}
.yc3{bottom:248.979840pt;}
.y6b{bottom:251.520000pt;}
.y1ee{bottom:252.180000pt;}
.ya3{bottom:252.652160pt;}
.y270{bottom:252.960000pt;}
.y1af{bottom:257.148800pt;}
.y1cd{bottom:257.169280pt;}
.y89{bottom:257.182720pt;}
.y252{bottom:258.400000pt;}
.y261{bottom:259.199360pt;}
.y26{bottom:259.365120pt;}
.y238{bottom:261.300000pt;}
.y160{bottom:262.561280pt;}
.y142{bottom:262.576000pt;}
.yda{bottom:262.629120pt;}
.y17d{bottom:267.708160pt;}
.y194{bottom:267.736960pt;}
.y125{bottom:268.160000pt;}
.yf6{bottom:268.168320pt;}
.y112{bottom:269.476480pt;}
.y49{bottom:275.258880pt;}
.yc2{bottom:275.858560pt;}
.y6a{bottom:278.400000pt;}
.ya2{bottom:279.368960pt;}
.y26f{bottom:279.838720pt;}
.y216{bottom:280.020000pt;}
.y1ae{bottom:284.027520pt;}
.y1cc{bottom:284.048000pt;}
.y88{bottom:284.061440pt;}
.y251{bottom:285.280000pt;}
.y1ed{bottom:285.624000pt;}
.y25{bottom:286.243840pt;}
.y15f{bottom:289.440000pt;}
.y141{bottom:289.454720pt;}
.yd9{bottom:289.507840pt;}
.y260{bottom:292.643200pt;}
.y215{bottom:294.576000pt;}
.y17c{bottom:294.586880pt;}
.y193{bottom:294.615680pt;}
.y237{bottom:294.744000pt;}
.y111{bottom:296.355200pt;}
.y1ec{bottom:300.180000pt;}
.y48{bottom:302.137600pt;}
.yc1{bottom:302.575360pt;}
.y69{bottom:305.280000pt;}
.y124{bottom:305.600000pt;}
.yf5{bottom:305.601280pt;}
.ya1{bottom:306.247680pt;}
.y26e{bottom:306.717440pt;}
.y236{bottom:309.300000pt;}
.y1ad{bottom:310.744320pt;}
.y1cb{bottom:310.764800pt;}
.y87{bottom:310.778240pt;}
.y24{bottom:313.122560pt;}
.y1eb{bottom:314.904000pt;}
.y15e{bottom:316.320000pt;}
.y140{bottom:316.333440pt;}
.yd8{bottom:316.386560pt;}
.y250{bottom:318.718080pt;}
.y17b{bottom:321.465600pt;}
.y192{bottom:321.494400pt;}
.y110{bottom:323.233920pt;}
.y235{bottom:323.856000pt;}
.y214{bottom:328.020000pt;}
.y47{bottom:329.016320pt;}
.y1ea{bottom:329.460000pt;}
.y68{bottom:332.160000pt;}
.y123{bottom:332.480000pt;}
.yf4{bottom:332.519040pt;}
.ya0{bottom:333.126400pt;}
.y26d{bottom:333.596160pt;}
.y1ac{bottom:337.623040pt;}
.y1ca{bottom:337.643520pt;}
.y86{bottom:337.656960pt;}
.y23{bottom:340.001280pt;}
.yc0{bottom:340.170240pt;}
.y213{bottom:342.576000pt;}
.y13f{bottom:343.212160pt;}
.yd7{bottom:343.265280pt;}
.y17a{bottom:348.344320pt;}
.y191{bottom:348.373120pt;}
.y10f{bottom:350.112640pt;}
.y15d{bottom:353.777280pt;}
.y46{bottom:355.895040pt;}
.y212{bottom:357.300000pt;}
.y67{bottom:359.040000pt;}
.y122{bottom:359.360000pt;}
.yf3{bottom:359.397760pt;}
.y1e9{bottom:362.904000pt;}
.y1ab{bottom:364.501760pt;}
.y1c9{bottom:364.522240pt;}
.y85{bottom:364.535680pt;}
.y22{bottom:366.880000pt;}
.y26c{bottom:367.040000pt;}
.y13e{bottom:370.090880pt;}
.ybf{bottom:370.096000pt;}
.y9f{bottom:370.721280pt;}
.y234{bottom:371.856000pt;}
.y179{bottom:375.223040pt;}
.y190{bottom:375.251840pt;}
.y10e{bottom:376.829440pt;}
.y1e8{bottom:377.460000pt;}
.y15c{bottom:380.656000pt;}
.yd6{bottom:380.698240pt;}
.y45{bottom:382.773760pt;}
.y66{bottom:385.760000pt;}
.y121{bottom:386.240000pt;}
.y211{bottom:390.576000pt;}
.y84{bottom:391.414400pt;}
.y21{bottom:393.765760pt;}
.y13d{bottom:396.807680pt;}
.yf2{bottom:396.830720pt;}
.y9e{bottom:397.603200pt;}
.y1aa{bottom:402.096640pt;}
.y178{bottom:402.101760pt;}
.y1c8{bottom:402.117120pt;}
.y18f{bottom:402.130560pt;}
.y10d{bottom:403.708160pt;}
.y210{bottom:405.132000pt;}
.y233{bottom:405.300000pt;}
.y15b{bottom:407.534720pt;}
.yd5{bottom:407.576960pt;}
.ybe{bottom:407.690880pt;}
.y44{bottom:409.652480pt;}
.y1e7{bottom:410.904000pt;}
.y65{bottom:412.640000pt;}
.y120{bottom:413.124480pt;}
.y83{bottom:418.293120pt;}
.y232{bottom:419.856000pt;}
.y20{bottom:420.644480pt;}
.y13c{bottom:423.686400pt;}
.yf1{bottom:423.709440pt;}
.y9d{bottom:424.320000pt;}
.y1e6{bottom:425.460000pt;}
.y1a9{bottom:428.813440pt;}
.y18e{bottom:428.847360pt;}
.y10c{bottom:430.586880pt;}
.y231{bottom:434.412000pt;}
.y15a{bottom:434.413440pt;}
.yd4{bottom:434.455680pt;}
.ybd{bottom:434.569600pt;}
.y43{bottom:436.531200pt;}
.y20f{bottom:438.576000pt;}
.y64{bottom:439.520000pt;}
.y177{bottom:439.534720pt;}
.y1c7{bottom:439.550080pt;}
.y11f{bottom:439.841280pt;}
.y1e5{bottom:440.016000pt;}
.y82{bottom:445.171840pt;}
.y1f{bottom:447.361280pt;}
.y13b{bottom:450.565120pt;}
.yf0{bottom:450.588160pt;}
.y20e{bottom:453.132000pt;}
.y1a8{bottom:455.692160pt;}
.y18d{bottom:455.726080pt;}
.y10b{bottom:457.465600pt;}
.y9c{bottom:460.480000pt;}
.y159{bottom:461.292160pt;}
.yd3{bottom:461.334400pt;}
.ybc{bottom:461.448320pt;}
.y42{bottom:463.248000pt;}
.y63{bottom:466.400000pt;}
.y176{bottom:466.413440pt;}
.y1c6{bottom:466.428800pt;}
.y11e{bottom:466.720000pt;}
.y230{bottom:467.856000pt;}
.y9b{bottom:470.401280pt;}
.y81{bottom:471.888640pt;}
.y1e4{bottom:473.460000pt;}
.y1e{bottom:474.241280pt;}
.yef{bottom:477.466880pt;}
.y22f{bottom:482.412000pt;}
.y1a7{bottom:482.570880pt;}
.y18c{bottom:482.604800pt;}
.y20d{bottom:486.576000pt;}
.y1e3{bottom:488.016000pt;}
.y13a{bottom:488.160000pt;}
.ybb{bottom:488.165120pt;}
.y158{bottom:488.170880pt;}
.yd2{bottom:488.213120pt;}
.y41{bottom:490.126720pt;}
.y62{bottom:493.280000pt;}
.y175{bottom:493.292160pt;}
.y1c5{bottom:493.307520pt;}
.y25f{bottom:494.248320pt;}
.y10a{bottom:495.060480pt;}
.y22e{bottom:497.136000pt;}
.y80{bottom:498.767360pt;}
.y1d{bottom:501.121280pt;}
.y20c{bottom:501.132000pt;}
.y1e2{bottom:502.740000pt;}
.yee{bottom:504.345600pt;}
.y11d{bottom:504.375680pt;}
.y1a6{bottom:509.449600pt;}
.y18b{bottom:509.483520pt;}
.y9a{bottom:515.047040pt;}
.y157{bottom:515.049600pt;}
.yd1{bottom:515.091840pt;}
.y20b{bottom:515.688000pt;}
.y40{bottom:517.005440pt;}
.y61{bottom:520.160000pt;}
.y174{bottom:520.170880pt;}
.y1c4{bottom:520.186240pt;}
.y25e{bottom:521.127040pt;}
.y109{bottom:521.777280pt;}
.y139{bottom:525.601280pt;}
.y7f{bottom:525.646080pt;}
.yba{bottom:525.761280pt;}
.y1c{bottom:528.000000pt;}
.y22d{bottom:530.580000pt;}
.yed{bottom:531.224320pt;}
.y11c{bottom:531.254400pt;}
.y1e1{bottom:536.016000pt;}
.y1a5{bottom:536.328320pt;}
.y18a{bottom:536.362240pt;}
.y99{bottom:541.763840pt;}
.y156{bottom:541.766400pt;}
.yd0{bottom:541.808640pt;}
.y3f{bottom:543.884160pt;}
.y22c{bottom:545.136000pt;}
.y60{bottom:547.040000pt;}
.y173{bottom:547.049600pt;}
.y1c3{bottom:547.064960pt;}
.y1b6{bottom:547.078400pt;}
.y25d{bottom:548.005760pt;}
.y108{bottom:548.656000pt;}
.y20a{bottom:549.132000pt;}
.y1e0{bottom:550.572000pt;}
.y138{bottom:552.483840pt;}
.yb9{bottom:552.640000pt;}
.y1b{bottom:554.882560pt;}
.yec{bottom:558.103040pt;}
.y11b{bottom:558.133120pt;}
.y24c{bottom:559.860000pt;}
.y1a4{bottom:563.207040pt;}
.y7e{bottom:563.240960pt;}
.y209{bottom:563.688000pt;}
.y26b{bottom:564.803840pt;}
.y98{bottom:568.642560pt;}
.y155{bottom:568.645120pt;}
.y3e{bottom:570.762880pt;}
.y5f{bottom:573.760000pt;}
.y172{bottom:573.766400pt;}
.y1c2{bottom:573.781760pt;}
.y1b5{bottom:573.795200pt;}
.y24b{bottom:574.416000pt;}
.y25c{bottom:574.884480pt;}
.y107{bottom:575.534720pt;}
.y22b{bottom:578.412000pt;}
.y137{bottom:579.362560pt;}
.ycf{bottom:579.403520pt;}
.y1a{bottom:581.761280pt;}
.y1df{bottom:584.016000pt;}
.yeb{bottom:584.819840pt;}
.yb8{bottom:585.440000pt;}
.y24f{bottom:586.401280pt;}
.y1a3{bottom:590.085760pt;}
.y189{bottom:590.119680pt;}
.y26a{bottom:591.682560pt;}
.y22a{bottom:592.968000pt;}
.yb7{bottom:595.366400pt;}
.y97{bottom:595.521280pt;}
.y11a{bottom:595.566080pt;}
.y208{bottom:597.132000pt;}
.y1de{bottom:598.572000pt;}
.y5e{bottom:600.640000pt;}
.y171{bottom:600.645120pt;}
.y1c1{bottom:600.660480pt;}
.y7d{bottom:600.673920pt;}
.y25b{bottom:601.763200pt;}
.y106{bottom:602.413440pt;}
.y136{bottom:606.241280pt;}
.y154{bottom:606.263040pt;}
.y24a{bottom:607.692000pt;}
.y3d{bottom:608.195840pt;}
.y207{bottom:611.688000pt;}
.yea{bottom:611.698560pt;}
.y24e{bottom:613.280000pt;}
.y19{bottom:616.485733pt;}
.y1a2{bottom:616.802560pt;}
.yce{bottom:616.836480pt;}
.y269{bottom:618.561280pt;}
.y249{bottom:622.248000pt;}
.y96{bottom:622.400000pt;}
.y229{bottom:626.412000pt;}
.y5d{bottom:627.521280pt;}
.y170{bottom:627.523840pt;}
.y1b4{bottom:627.552640pt;}
.y25a{bottom:628.641920pt;}
.y105{bottom:629.292160pt;}
.y1dd{bottom:632.016000pt;}
.y135{bottom:633.120000pt;}
.y153{bottom:633.141760pt;}
.y119{bottom:633.160960pt;}
.y3c{bottom:635.074560pt;}
.y1c0{bottom:638.255360pt;}
.y7c{bottom:638.268800pt;}
.y228{bottom:640.968000pt;}
.yb6{bottom:642.249600pt;}
.y1a1{bottom:643.681280pt;}
.ycd{bottom:643.715200pt;}
.y206{bottom:645.132000pt;}
.y268{bottom:645.440000pt;}
.y24d{bottom:645.920000pt;}
.y1dc{bottom:646.572000pt;}
.ye9{bottom:649.293440pt;}
.y18{bottom:651.347520pt;}
.y16f{bottom:654.402560pt;}
.y5c{bottom:654.431360pt;}
.y259{bottom:655.358720pt;}
.y227{bottom:655.692000pt;}
.y205{bottom:659.688000pt;}
.y134{bottom:659.841280pt;}
.y152{bottom:659.858560pt;}
.y95{bottom:659.877760pt;}
.y3b{bottom:661.953280pt;}
.y17{bottom:664.308000pt;}
.y1bf{bottom:665.134080pt;}
.y7b{bottom:665.147520pt;}
.y104{bottom:666.725120pt;}
.yb5{bottom:669.128320pt;}
.y248{bottom:670.248000pt;}
.y1a0{bottom:670.570880pt;}
.ycc{bottom:670.593920pt;}
.y267{bottom:672.160000pt;}
.y204{bottom:674.244000pt;}
.y16{bottom:677.429280pt;}
.y1db{bottom:680.016000pt;}
.y16e{bottom:681.281280pt;}
.y5b{bottom:681.310080pt;}
.y258{bottom:682.237440pt;}
.y247{bottom:684.972000pt;}
.y133{bottom:686.721280pt;}
.ye8{bottom:686.726400pt;}
.y151{bottom:686.737280pt;}
.y94{bottom:686.756480pt;}
.y3a{bottom:688.832000pt;}
.y226{bottom:688.968000pt;}
.y15{bottom:690.389760pt;}
.y1be{bottom:691.850880pt;}
.y7a{bottom:691.864320pt;}
.y103{bottom:693.603840pt;}
.y1da{bottom:694.572000pt;}
.yb4{bottom:696.007040pt;}
.ycb{bottom:697.472640pt;}
.y14{bottom:703.350240pt;}
.y225{bottom:703.524000pt;}
.y266{bottom:705.760000pt;}
.y203{bottom:707.688000pt;}
.y16d{bottom:708.160000pt;}
.y19f{bottom:708.165760pt;}
.y5a{bottom:708.188800pt;}
.y1d9{bottom:709.128000pt;}
.y132{bottom:713.600000pt;}
.ye7{bottom:713.605120pt;}
.y93{bottom:713.635200pt;}
.y39{bottom:715.710720pt;}
.y257{bottom:715.843200pt;}
.y13{bottom:716.471467pt;}
.y224{bottom:718.248000pt;}
.y246{bottom:718.416000pt;}
.y1bd{bottom:718.729600pt;}
.y79{bottom:718.743040pt;}
.y102{bottom:720.482560pt;}
.y202{bottom:722.244000pt;}
.yb3{bottom:722.723840pt;}
.y150{bottom:724.332160pt;}
.yca{bottom:724.351360pt;}
.y245{bottom:732.972000pt;}
.y19e{bottom:734.882560pt;}
.y59{bottom:734.905600pt;}
.y201{bottom:736.968000pt;}
.ye6{bottom:740.483840pt;}
.y92{bottom:740.513920pt;}
.y12{bottom:742.392480pt;}
.y1d8{bottom:742.572000pt;}
.y38{bottom:742.589440pt;}
.y16c{bottom:745.603840pt;}
.y1bc{bottom:745.608320pt;}
.y78{bottom:745.621760pt;}
.y101{bottom:747.361280pt;}
.y244{bottom:747.528000pt;}
.yb2{bottom:749.602560pt;}
.y131{bottom:751.203200pt;}
.yc9{bottom:751.230080pt;}
.y223{bottom:751.692000pt;}
.y11{bottom:755.513760pt;}
.y1d7{bottom:757.128000pt;}
.y19d{bottom:761.761280pt;}
.y14f{bottom:761.765120pt;}
.y58{bottom:761.784320pt;}
.y222{bottom:766.248000pt;}
.ye5{bottom:767.362560pt;}
.y91{bottom:767.392640pt;}
.y10{bottom:768.474240pt;}
.y37{bottom:769.306240pt;}
.y200{bottom:770.244000pt;}
.y16b{bottom:772.482560pt;}
.y1bb{bottom:772.487040pt;}
.y77{bottom:772.500480pt;}
.y100{bottom:774.240000pt;}
.yb1{bottom:776.481280pt;}
.y130{bottom:777.922560pt;}
.y118{bottom:777.946880pt;}
.y221{bottom:780.804000pt;}
.y243{bottom:780.972000pt;}
.yf{bottom:781.595520pt;}
.y1ff{bottom:784.800000pt;}
.y19c{bottom:788.642560pt;}
.y14e{bottom:788.643840pt;}
.y57{bottom:788.663040pt;}
.y1d6{bottom:790.572000pt;}
.ye4{bottom:794.241280pt;}
.y90{bottom:794.271360pt;}
.ye{bottom:794.556000pt;}
.y242{bottom:795.528000pt;}
.y36{bottom:796.184960pt;}
.y16a{bottom:799.361280pt;}
.y1ba{bottom:799.365760pt;}
.y76{bottom:799.379200pt;}
.y1fe{bottom:799.524000pt;}
.yb0{bottom:803.360000pt;}
.y12f{bottom:804.801280pt;}
.y188{bottom:804.825600pt;}
.y1d5{bottom:805.128000pt;}
.yd{bottom:807.516533pt;}
.yff{bottom:811.680000pt;}
.y220{bottom:814.248000pt;}
.y19b{bottom:815.521280pt;}
.y14d{bottom:815.522560pt;}
.y56{bottom:815.541760pt;}
.ye3{bottom:821.132160pt;}
.y35{bottom:823.063680pt;}
.y169{bottom:826.240000pt;}
.y1b9{bottom:826.244480pt;}
.y75{bottom:826.257920pt;}
.y21f{bottom:828.804000pt;}
.y241{bottom:828.972000pt;}
.y12e{bottom:831.680000pt;}
.y8f{bottom:831.704320pt;}
.y1fd{bottom:832.968000pt;}
.yc{bottom:833.598267pt;}
.y1d4{bottom:838.404000pt;}
.yaf{bottom:840.963200pt;}
.y14c{bottom:842.401280pt;}
.y55{bottom:842.420480pt;}
.y240{bottom:843.528000pt;}
.y1fc{bottom:847.524000pt;}
.yfe{bottom:847.845760pt;}
.y34{bottom:849.942400pt;}
.y1d3{bottom:852.960000pt;}
.y1b8{bottom:853.123200pt;}
.y168{bottom:853.129600pt;}
.y74{bottom:853.136640pt;}
.yfd{bottom:857.763840pt;}
.ye2{bottom:858.565120pt;}
.y187{bottom:858.583040pt;}
.y1fb{bottom:862.080000pt;}
.y21e{bottom:862.248000pt;}
.yb{bottom:863.040000pt;}
.yae{bottom:867.680000pt;}
.y12d{bottom:869.280000pt;}
.y54{bottom:869.299200pt;}
.ya{bottom:872.638720pt;}
.y1fa{bottom:876.804000pt;}
.y33{bottom:876.821120pt;}
.y1b7{bottom:879.840000pt;}
.y167{bottom:879.846400pt;}
.y73{bottom:879.853440pt;}
.y186{bottom:885.461760pt;}
.y9{bottom:889.120000pt;}
.y21d{bottom:891.360000pt;}
.ye1{bottom:896.160000pt;}
.y53{bottom:896.177920pt;}
.y8{bottom:902.080000pt;}
.y32{bottom:903.699840pt;}
.yad{bottom:903.840000pt;}
.y23f{bottom:906.084000pt;}
.y14b{bottom:906.720000pt;}
.yfc{bottom:906.722560pt;}
.y166{bottom:906.725120pt;}
.y72{bottom:906.732160pt;}
.y1f9{bottom:910.248000pt;}
.y185{bottom:912.340480pt;}
.yac{bottom:913.761280pt;}
.y7{bottom:915.040000pt;}
.y12c{bottom:922.880000pt;}
.y52{bottom:922.894720pt;}
.y1f8{bottom:924.804000pt;}
.y6{bottom:928.160000pt;}
.y31{bottom:930.416640pt;}
.y14a{bottom:933.600000pt;}
.yfb{bottom:933.601280pt;}
.ye0{bottom:933.603840pt;}
.y71{bottom:933.610880pt;}
.y1f7{bottom:939.360000pt;}
.y23e{bottom:939.528000pt;}
.y12b{bottom:949.760000pt;}
.y184{bottom:949.773440pt;}
.y1f6{bottom:954.084000pt;}
.y5{bottom:955.679520pt;}
.y30{bottom:957.295360pt;}
.y149{bottom:960.480000pt;}
.yab{bottom:960.482560pt;}
.y51{bottom:960.489600pt;}
.y4{bottom:968.640000pt;}
.y2f{bottom:984.174080pt;}
.y148{bottom:987.360000pt;}
.yaa{bottom:987.361280pt;}
.y50{bottom:987.368320pt;}
.y3{bottom:994.890240pt;}
.y1f5{bottom:1001.916000pt;}
.y23d{bottom:1002.084000pt;}
.ya9{bottom:1014.240000pt;}
.y2{bottom:1014.247040pt;}
.y1f4{bottom:1016.640000pt;}
.y2d{bottom:1064.119867pt;}
.y2c{bottom:1080.120000pt;}
.y2b{bottom:1096.120000pt;}
.h6{height:22.168125pt;}
.h7{height:35.363437pt;}
.h8{height:35.363651pt;}
.h4{height:35.608125pt;}
.h5{height:35.610045pt;}
.hb{height:38.281250pt;}
.h18{height:39.585938pt;}
.h3{height:42.751250pt;}
.h9{height:42.751357pt;}
.h2{height:48.558750pt;}
.h17{height:51.640965pt;}
.h12{height:51.684485pt;}
.ha{height:51.710085pt;}
.h16{height:51.720325pt;}
.h13{height:51.722885pt;}
.h11{height:51.728005pt;}
.h15{height:88.215710pt;}
.hf{height:88.238750pt;}
.hd{height:114.660000pt;}
.h10{height:119.754400pt;}
.he{height:119.787680pt;}
.h14{height:121.149640pt;}
.hc{height:122.319520pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:57.953333pt;}
.x2{left:113.438080pt;}
.x3{left:160.645120pt;}
.xa{left:209.286400pt;}
.x7{left:272.312960pt;}
.x5{left:297.749120pt;}
.x9{left:326.983040pt;}
.xb{left:356.474880pt;}
.xd{left:385.760000pt;}
.x6{left:396.320000pt;}
.x8{left:423.200000pt;}
.xf{left:641.446400pt;}
.xc{left:665.440000pt;}
.x1{left:672.960000pt;}
.xe{left:680.304000pt;}
}




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