
    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_540f43170f9fdee52a070143.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5cc2f5deefc3be745c6d4901.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_b5d7753e6c8d1e0df2ed9cce.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.709961;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_28825b69829952bacbd276e5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.692871;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_b0365261d23e082afc2f119a.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_985431a463ca96d627251257.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861328;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_5ce9dffec9aa3564d19a2087.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_e4569e0c0c95f68a3029e52a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_14c509474fbb09d05b9e0945.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.817871;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(0.250098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.000000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v5{vertical-align:24.120000px;}
.v1{vertical-align:27.000000px;}
.v8{vertical-align:36.000000px;}
.v6{vertical-align:61.920000px;}
.v7{vertical-align:124.200000px;}
.ls16{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.273600px;}
.ls40{letter-spacing:-0.208800px;}
.ls41{letter-spacing:-0.194400px;}
.ls4c{letter-spacing:-0.191520px;}
.ls4d{letter-spacing:-0.186732px;}
.ls2c{letter-spacing:-0.181944px;}
.ls30{letter-spacing:-0.180000px;}
.ls46{letter-spacing:-0.172800px;}
.ls44{letter-spacing:-0.165600px;}
.ls2a{letter-spacing:-0.158400px;}
.ls2d{letter-spacing:-0.151200px;}
.ls35{letter-spacing:-0.144000px;}
.ls43{letter-spacing:-0.129600px;}
.ls10{letter-spacing:-0.122400px;}
.ls42{letter-spacing:-0.115200px;}
.ls18{letter-spacing:-0.108000px;}
.ls20{letter-spacing:-0.100800px;}
.ls49{letter-spacing:-0.100548px;}
.lsf{letter-spacing:-0.093600px;}
.ls2f{letter-spacing:-0.086400px;}
.ls3a{letter-spacing:-0.079200px;}
.ls1f{letter-spacing:-0.072000px;}
.ls39{letter-spacing:-0.064800px;}
.ls25{letter-spacing:-0.057600px;}
.ls27{letter-spacing:-0.050400px;}
.ls19{letter-spacing:-0.043200px;}
.ls17{letter-spacing:-0.036000px;}
.ls15{letter-spacing:-0.028800px;}
.ls28{letter-spacing:-0.021600px;}
.ls12{letter-spacing:-0.019152px;}
.ls13{letter-spacing:-0.014400px;}
.ls48{letter-spacing:-0.009576px;}
.ls11{letter-spacing:-0.007200px;}
.lse{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.007200px;}
.ls1{letter-spacing:0.014400px;}
.ls1a{letter-spacing:0.021600px;}
.ls8{letter-spacing:0.028800px;}
.lsa{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.043200px;}
.ls3{letter-spacing:0.050400px;}
.ls7{letter-spacing:0.057600px;}
.ls1b{letter-spacing:0.064800px;}
.ls6{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.079200px;}
.ls29{letter-spacing:0.086400px;}
.ls5{letter-spacing:0.093600px;}
.ls3e{letter-spacing:0.100800px;}
.ls2e{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.122400px;}
.ls4e{letter-spacing:0.136800px;}
.ls23{letter-spacing:0.144000px;}
.ls4a{letter-spacing:0.170634px;}
.ls4b{letter-spacing:0.172368px;}
.lsd{letter-spacing:0.179400px;}
.ls2{letter-spacing:0.180000px;}
.ls2b{letter-spacing:0.181944px;}
.ls26{letter-spacing:0.259200px;}
.ls4{letter-spacing:0.540000px;}
.ls45{letter-spacing:48.355200px;}
.ls31{letter-spacing:155.070000px;}
.ls3b{letter-spacing:162.990000px;}
.ls22{letter-spacing:183.960000px;}
.ls21{letter-spacing:184.320000px;}
.ls3d{letter-spacing:191.070000px;}
.ls24{letter-spacing:209.520000px;}
.ls1e{letter-spacing:357.840000px;}
.ls1d{letter-spacing:383.400000px;}
.ls36{letter-spacing:449.280000px;}
.ls3f{letter-spacing:451.080000px;}
.ls33{letter-spacing:556.560000px;}
.ls47{letter-spacing:845.661600px;}
.ls1c{letter-spacing:846.000000px;}
.ls37{letter-spacing:1364.040000px;}
.ls38{letter-spacing:1391.040000px;}
.ls34{letter-spacing:1418.040000px;}
.ls3c{letter-spacing:1473.120000px;}
.ls32{letter-spacing:1575.000000px;}
.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;}
}
.wsc5{word-spacing:-72.000000px;}
.ws2{word-spacing:-18.122400px;}
.ws5a{word-spacing:-18.108000px;}
.ws8{word-spacing:-18.093600px;}
.ws6c{word-spacing:-18.079200px;}
.ws7{word-spacing:-18.072000px;}
.wsa{word-spacing:-18.057600px;}
.ws4{word-spacing:-18.050400px;}
.ws6{word-spacing:-18.043200px;}
.wsb0{word-spacing:-18.036000px;}
.wsac{word-spacing:-18.007200px;}
.ws58{word-spacing:-18.000000px;}
.ws75{word-spacing:-17.985600px;}
.ws5{word-spacing:-17.971200px;}
.ws95{word-spacing:-17.964000px;}
.ws76{word-spacing:-17.949600px;}
.ws6b{word-spacing:-17.942400px;}
.ws6a{word-spacing:-17.928000px;}
.ws69{word-spacing:-17.913600px;}
.wsb{word-spacing:-17.892000px;}
.wsaf{word-spacing:-17.884800px;}
.wsb1{word-spacing:-17.870400px;}
.ws74{word-spacing:-17.856000px;}
.ws4f{word-spacing:-17.848800px;}
.ws4e{word-spacing:-17.841600px;}
.wsb2{word-spacing:-17.834400px;}
.wsbb{word-spacing:-17.827200px;}
.wsae{word-spacing:-17.805600px;}
.wsad{word-spacing:-17.791200px;}
.ws3{word-spacing:-17.726400px;}
.ws9{word-spacing:-17.640000px;}
.ws59{word-spacing:-12.151944px;}
.wsc4{word-spacing:-12.142368px;}
.ws0{word-spacing:-11.970000px;}
.ws1{word-spacing:-11.950848px;}
.wsc7{word-spacing:-11.783268px;}
.wsc6{word-spacing:-11.778480px;}
.ws52{word-spacing:-0.403200px;}
.wsc1{word-spacing:-0.396000px;}
.ws73{word-spacing:-0.367200px;}
.wsc0{word-spacing:-0.352800px;}
.wsb7{word-spacing:-0.259200px;}
.ws71{word-spacing:-0.252000px;}
.wsc9{word-spacing:-0.237600px;}
.ws5e{word-spacing:-0.230400px;}
.wsb9{word-spacing:-0.216000px;}
.ws26{word-spacing:-0.208800px;}
.ws2a{word-spacing:-0.201600px;}
.ws5c{word-spacing:-0.194400px;}
.ws1d{word-spacing:-0.187200px;}
.wsbc{word-spacing:-0.180000px;}
.wsb8{word-spacing:-0.172800px;}
.wsba{word-spacing:-0.165600px;}
.wsb6{word-spacing:-0.158400px;}
.ws4b{word-spacing:-0.151200px;}
.ws29{word-spacing:-0.144000px;}
.wsbd{word-spacing:-0.136800px;}
.ws54{word-spacing:-0.129600px;}
.ws5f{word-spacing:-0.122400px;}
.ws4c{word-spacing:-0.115200px;}
.ws47{word-spacing:-0.108000px;}
.ws2c{word-spacing:-0.100800px;}
.ws45{word-spacing:-0.093600px;}
.ws2b{word-spacing:-0.086400px;}
.ws1f{word-spacing:-0.079200px;}
.ws1b{word-spacing:-0.072000px;}
.ws20{word-spacing:-0.064800px;}
.ws1e{word-spacing:-0.057600px;}
.ws46{word-spacing:-0.050400px;}
.ws23{word-spacing:-0.043200px;}
.ws4d{word-spacing:-0.036000px;}
.ws21{word-spacing:-0.028800px;}
.ws4a{word-spacing:-0.021600px;}
.wsbf{word-spacing:-0.019152px;}
.wsf{word-spacing:-0.014400px;}
.wse{word-spacing:-0.007200px;}
.wsc{word-spacing:0.000000px;}
.ws27{word-spacing:0.007200px;}
.ws1c{word-spacing:0.014400px;}
.ws48{word-spacing:0.021600px;}
.ws22{word-spacing:0.028800px;}
.ws24{word-spacing:0.036000px;}
.ws25{word-spacing:0.043200px;}
.ws44{word-spacing:0.050400px;}
.wsc2{word-spacing:0.057600px;}
.wsc3{word-spacing:0.071820px;}
.ws5b{word-spacing:0.079200px;}
.ws49{word-spacing:0.086400px;}
.wsc8{word-spacing:0.115200px;}
.wsbe{word-spacing:0.122400px;}
.ws72{word-spacing:0.180000px;}
.ws28{word-spacing:0.187200px;}
.ws5d{word-spacing:0.201600px;}
.ws83{word-spacing:0.223200px;}
.ws82{word-spacing:0.396000px;}
.wsd{word-spacing:0.453600px;}
.ws77{word-spacing:68.392800px;}
.ws31{word-spacing:82.116000px;}
.ws19{word-spacing:83.887200px;}
.ws16{word-spacing:84.247200px;}
.ws15{word-spacing:103.305600px;}
.ws30{word-spacing:120.254400px;}
.ws17{word-spacing:123.026400px;}
.ws1a{word-spacing:124.826400px;}
.ws2e{word-spacing:125.712000px;}
.wsaa{word-spacing:135.360000px;}
.ws18{word-spacing:150.825600px;}
.wsa7{word-spacing:154.051200px;}
.ws88{word-spacing:154.065600px;}
.wsb4{word-spacing:154.072800px;}
.ws9b{word-spacing:154.087200px;}
.ws8d{word-spacing:154.094400px;}
.ws7f{word-spacing:154.101600px;}
.ws85{word-spacing:154.108800px;}
.ws90{word-spacing:154.116000px;}
.ws9d{word-spacing:154.123200px;}
.ws79{word-spacing:154.130400px;}
.wsa5{word-spacing:154.137600px;}
.ws94{word-spacing:154.152000px;}
.ws99{word-spacing:160.171200px;}
.wsa8{word-spacing:160.192800px;}
.ws8e{word-spacing:160.207200px;}
.ws9f{word-spacing:160.214400px;}
.ws93{word-spacing:160.221600px;}
.ws96{word-spacing:160.236000px;}
.ws91{word-spacing:160.243200px;}
.wsa0{word-spacing:160.250400px;}
.ws7a{word-spacing:160.257600px;}
.ws89{word-spacing:160.264800px;}
.ws80{word-spacing:160.272000px;}
.wsa3{word-spacing:160.286400px;}
.ws7d{word-spacing:160.293600px;}
.ws86{word-spacing:160.300800px;}
.ws8b{word-spacing:164.923200px;}
.ws8c{word-spacing:171.079200px;}
.ws3e{word-spacing:183.938400px;}
.ws37{word-spacing:183.960000px;}
.ws41{word-spacing:184.320000px;}
.ws92{word-spacing:195.120000px;}
.wsa6{word-spacing:203.040000px;}
.ws39{word-spacing:209.520000px;}
.wsab{word-spacing:223.207200px;}
.ws87{word-spacing:237.600000px;}
.ws7e{word-spacing:250.920000px;}
.ws9a{word-spacing:259.200000px;}
.wsa9{word-spacing:263.160000px;}
.ws8f{word-spacing:264.600000px;}
.wsa4{word-spacing:282.960000px;}
.wsa1{word-spacing:282.967200px;}
.ws8a{word-spacing:291.600000px;}
.wsb3{word-spacing:295.200000px;}
.ws84{word-spacing:309.600000px;}
.ws3a{word-spacing:315.000000px;}
.ws98{word-spacing:326.880000px;}
.ws42{word-spacing:340.912800px;}
.ws3d{word-spacing:340.920000px;}
.ws9e{word-spacing:346.312800px;}
.ws51{word-spacing:357.451200px;}
.ws60{word-spacing:357.804000px;}
.ws14{word-spacing:379.447200px;}
.ws12{word-spacing:523.432800px;}
.ws7b{word-spacing:534.938400px;}
.ws97{word-spacing:535.341600px;}
.ws68{word-spacing:536.760000px;}
.ws11{word-spacing:540.482400px;}
.ws53{word-spacing:554.760000px;}
.ws2f{word-spacing:566.740800px;}
.ws55{word-spacing:572.760000px;}
.wsa2{word-spacing:586.713600px;}
.ws66{word-spacing:673.603200px;}
.ws13{word-spacing:691.516800px;}
.ws65{word-spacing:849.614400px;}
.ws40{word-spacing:889.574400px;}
.ws70{word-spacing:913.680000px;}
.ws67{word-spacing:1025.683200px;}
.ws64{word-spacing:1061.683200px;}
.ws3c{word-spacing:1101.607200px;}
.ws3b{word-spacing:1197.360000px;}
.ws43{word-spacing:1206.352800px;}
.ws3f{word-spacing:1221.487200px;}
.ws63{word-spacing:1237.723200px;}
.ws32{word-spacing:1239.120000px;}
.ws35{word-spacing:1243.065600px;}
.ws36{word-spacing:1243.072800px;}
.ws62{word-spacing:1273.701600px;}
.ws34{word-spacing:1277.265600px;}
.ws38{word-spacing:1277.272800px;}
.ws33{word-spacing:1313.265600px;}
.ws6f{word-spacing:1333.440000px;}
.ws78{word-spacing:1337.040000px;}
.ws6e{word-spacing:1345.320000px;}
.ws81{word-spacing:1364.040000px;}
.ws2d{word-spacing:1364.522400px;}
.ws7c{word-spacing:1391.047200px;}
.wsb5{word-spacing:1418.040000px;}
.ws6d{word-spacing:1421.280000px;}
.ws61{word-spacing:1449.352800px;}
.ws9c{word-spacing:1473.120000px;}
.ws57{word-spacing:1536.487200px;}
.ws56{word-spacing:1540.425600px;}
.ws10{word-spacing:1912.629600px;}
.ws50{word-spacing:1929.268800px;}
._89{margin-left:-4431.866400px;}
._8b{margin-left:-4410.957600px;}
._8d{margin-left:-4405.500000px;}
._8f{margin-left:-4390.833600px;}
._8c{margin-left:-4319.353080px;}
._90{margin-left:-4281.494400px;}
._1a{margin-left:-3600.324000px;}
._3{margin-left:-2971.440000px;}
._91{margin-left:-2918.794680px;}
._b5{margin-left:-2914.696800px;}
._ab{margin-left:-2906.337600px;}
._ae{margin-left:-2899.692000px;}
._d0{margin-left:-2890.440000px;}
._ad{margin-left:-2859.890400px;}
._b7{margin-left:-2855.764800px;}
._b4{margin-left:-2838.484800px;}
._b3{margin-left:-2821.788000px;}
._88{margin-left:-2815.027200px;}
._b0{margin-left:-2806.639200px;}
._92{margin-left:-2776.284000px;}
._b9{margin-left:-2751.192000px;}
._1{margin-left:-2740.104000px;}
._b6{margin-left:-2701.911888px;}
._cf{margin-left:-2566.490400px;}
._ce{margin-left:-2505.434400px;}
._b2{margin-left:-2398.802400px;}
._ba{margin-left:-2368.137600px;}
._d3{margin-left:-2212.754400px;}
._d2{margin-left:-2186.402400px;}
._8a{margin-left:-2147.811480px;}
._b1{margin-left:-2052.418680px;}
._af{margin-left:-2025.784800px;}
._cd{margin-left:-1927.728000px;}
._bd{margin-left:-1908.000000px;}
._19{margin-left:-1872.000000px;}
._bb{margin-left:-1542.254400px;}
._b8{margin-left:-1417.924800px;}
._8e{margin-left:-1409.494680px;}
._7b{margin-left:-1206.360000px;}
._12a{margin-left:-1182.960000px;}
._bc{margin-left:-1166.695200px;}
._12b{margin-left:-1164.240000px;}
._129{margin-left:-1159.156800px;}
._d1{margin-left:-1156.816800px;}
._2e{margin-left:-1146.600000px;}
._ac{margin-left:-1143.936000px;}
._3c{margin-left:-1136.520000px;}
._3b{margin-left:-1135.440000px;}
._2b{margin-left:-1131.840000px;}
._152{margin-left:-1128.297600px;}
._eb{margin-left:-1126.065600px;}
._3d{margin-left:-1114.560000px;}
._30{margin-left:-1110.600000px;}
._153{margin-left:-1109.160000px;}
._27{margin-left:-1105.920000px;}
._2f{margin-left:-1103.356800px;}
._36{margin-left:-1101.240000px;}
._81{margin-left:-1099.080000px;}
._2c{margin-left:-1097.640000px;}
._63{margin-left:-1092.240000px;}
._4c{margin-left:-1090.080000px;}
._5d{margin-left:-1088.640000px;}
._e0{margin-left:-1082.138400px;}
._62{margin-left:-1080.360000px;}
._2d{margin-left:-1076.400000px;}
._ed{margin-left:-1073.880000px;}
._d7{margin-left:-1072.440000px;}
._31{margin-left:-1067.371200px;}
._80{margin-left:-1064.520000px;}
._2a{margin-left:-1063.440000px;}
._37{margin-left:-1059.120000px;}
._4d{margin-left:-1055.880000px;}
._5e{margin-left:-1054.440000px;}
._ec{margin-left:-1049.760000px;}
._d9{margin-left:-1046.880000px;}
._61{margin-left:-1045.800000px;}
._7c{margin-left:-1043.280000px;}
._32{margin-left:-1042.200000px;}
._7d{margin-left:-1039.320000px;}
._26{margin-left:-1038.240000px;}
._4e{margin-left:-1034.640000px;}
._33{margin-left:-1033.171200px;}
._48{margin-left:-1030.680000px;}
._da{margin-left:-1028.160000px;}
._d8{margin-left:-1022.760000px;}
._4b{margin-left:-1021.680000px;}
._3a{margin-left:-1005.120000px;}
._55{margin-left:-994.320000px;}
._a8{margin-left:-985.680000px;}
._a9{margin-left:-981.720000px;}
._39{margin-left:-978.480000px;}
._35{margin-left:-970.920000px;}
._51{margin-left:-968.400000px;}
._29{margin-left:-966.600000px;}
._56{margin-left:-960.120000px;}
._60{margin-left:-948.960000px;}
._34{margin-left:-944.280000px;}
._28{margin-left:-941.040000px;}
._57{margin-left:-938.880000px;}
._50{margin-left:-935.388000px;}
._7f{margin-left:-934.200000px;}
._54{margin-left:-925.920000px;}
._4a{margin-left:-924.840000px;}
._5f{margin-left:-923.400000px;}
._bf{margin-left:-912.600000px;}
._7e{margin-left:-907.920000px;}
._49{margin-left:-900.000000px;}
._c7{margin-left:-884.548800px;}
._c9{margin-left:-832.680000px;}
._53{margin-left:-829.080000px;}
._c8{margin-left:-808.560000px;}
._52{margin-left:-803.520000px;}
._6a{margin-left:-760.320000px;}
._64{margin-left:-757.627200px;}
._69{margin-left:-748.440000px;}
._c0{margin-left:-737.388000px;}
._65{margin-left:-722.520000px;}
._68{margin-left:-713.880000px;}
._c1{margin-left:-701.388000px;}
._67{margin-left:-617.040000px;}
._66{margin-left:-591.480000px;}
._c2{margin-left:-525.787200px;}
._c5{margin-left:-489.355200px;}
._1c{margin-left:-446.472000px;}
._93{margin-left:-384.148800px;}
._5{margin-left:-379.440000px;}
._ca{margin-left:-377.474400px;}
._95{margin-left:-357.897600px;}
._6f{margin-left:-340.920000px;}
._c3{margin-left:-312.998400px;}
._83{margin-left:-233.640000px;}
._70{margin-left:-203.040000px;}
._71{margin-left:-199.800000px;}
._59{margin-left:-198.720000px;}
._5c{margin-left:-183.960000px;}
._138{margin-left:-179.704800px;}
._72{margin-left:-177.840000px;}
._41{margin-left:-173.160000px;}
._84{margin-left:-165.600000px;}
._fe{margin-left:-159.105600px;}
._5a{margin-left:-156.960000px;}
._8{margin-left:-151.255296px;}
._116{margin-left:-149.400000px;}
._c4{margin-left:-137.455200px;}
._42{margin-left:-131.040000px;}
._de{margin-left:-128.188800px;}
._df{margin-left:-127.080000px;}
._6e{margin-left:-123.120000px;}
._115{margin-left:-107.280000px;}
._6{margin-left:-103.536000px;}
._86{margin-left:-102.240000px;}
._118{margin-left:-86.868000px;}
._7{margin-left:-84.348000px;}
._5b{margin-left:-75.960000px;}
._46{margin-left:-68.760000px;}
._45{margin-left:-67.680000px;}
._1d{margin-left:-66.657600px;}
._130{margin-left:-56.160000px;}
._78{margin-left:-55.080000px;}
._47{margin-left:-46.800000px;}
._156{margin-left:-44.848800px;}
._3f{margin-left:-42.480000px;}
._f3{margin-left:-41.040000px;}
._11c{margin-left:-36.720000px;}
._76{margin-left:-33.840000px;}
._12f{margin-left:-32.040000px;}
._137{margin-left:-30.420000px;}
._77{margin-left:-25.560000px;}
._6c{margin-left:-22.320000px;}
._38{margin-left:-21.240000px;}
._f6{margin-left:-19.440000px;}
._11d{margin-left:-18.000000px;}
._11b{margin-left:-12.600000px;}
._151{margin-left:-5.040000px;}
._126{margin-left:-3.600000px;}
._2{margin-left:-1.231200px;}
._0{width:1.159200px;}
._136{width:7.560000px;}
._e6{width:13.680000px;}
._100{width:17.071200px;}
._11a{width:19.440000px;}
._4{width:20.577600px;}
._f5{width:22.680000px;}
._10b{width:25.560000px;}
._143{width:27.468000px;}
._75{width:28.800000px;}
._122{width:30.960000px;}
._120{width:32.400000px;}
._135{width:35.640000px;}
._150{width:37.821600px;}
._e7{width:39.960000px;}
._110{width:42.480000px;}
._10c{width:44.280000px;}
._144{width:45.720000px;}
._10a{width:49.932000px;}
._fb{width:52.560000px;}
._121{width:55.080000px;}
._e8{width:57.960000px;}
._1f{width:60.840000px;}
._44{width:62.640000px;}
._25{width:67.507200px;}
._20{width:69.120000px;}
._fc{width:71.280000px;}
._21{width:74.520000px;}
._fa{width:76.680000px;}
._24{width:82.080000px;}
._14e{width:85.132800px;}
._13f{width:87.120000px;}
._43{width:88.920000px;}
._14d{width:91.080000px;}
._112{width:95.040000px;}
._140{width:105.840000px;}
._13e{width:111.240000px;}
._113{width:113.760000px;}
._111{width:119.160000px;}
._74{width:122.400000px;}
._23{width:128.880000px;}
._40{width:131.400000px;}
._22{width:133.200000px;}
._13d{width:143.280000px;}
._ee{width:153.784800px;}
._149{width:154.800000px;}
._12e{width:156.931200px;}
._f2{width:160.084800px;}
._14c{width:163.440000px;}
._f4{width:168.840000px;}
._14a{width:173.520000px;}
._148{width:178.920000px;}
._ff{width:185.457600px;}
._158{width:193.384800px;}
._157{width:194.637600px;}
._147{width:210.960000px;}
._f9{width:224.748000px;}
._107{width:236.160000px;}
._104{width:242.280000px;}
._e4{width:246.700800px;}
._12d{width:247.946400px;}
._dd{width:253.080000px;}
._114{width:254.138400px;}
._ea{width:255.333600px;}
._d6{width:259.214400px;}
._f{width:274.939200px;}
._106{width:277.920000px;}
._103{width:284.400000px;}
._db{width:289.339200px;}
._16{width:295.200000px;}
._12{width:296.280000px;}
._13{width:298.440000px;}
._13a{width:329.061600px;}
._10{width:331.200000px;}
._11{width:332.280000px;}
._17{width:334.440000px;}
._13b{width:340.113600px;}
._145{width:349.488000px;}
._132{width:370.108800px;}
._101{width:371.757600px;}
._f7{width:373.852800px;}
._18{width:382.327200px;}
._d{width:385.920000px;}
._b{width:387.000000px;}
._102{width:391.680000px;}
._e3{width:396.360000px;}
._dc{width:402.480000px;}
._e1{width:405.072000px;}
._f1{width:406.864800px;}
._105{width:409.744800px;}
._fd{width:412.920000px;}
._11e{width:414.057600px;}
._a{width:415.080000px;}
._15{width:418.744800px;}
._c{width:421.200000px;}
._e{width:423.000000px;}
._127{width:424.591200px;}
._14f{width:427.017600px;}
._12c{width:428.940000px;}
._109{width:430.920000px;}
._123{width:433.188000px;}
._f8{width:434.635200px;}
._133{width:435.765600px;}
._108{width:437.630400px;}
._1b{width:441.417600px;}
._154{width:443.491200px;}
._f0{width:448.984800px;}
._124{width:451.418400px;}
._131{width:453.348000px;}
._10e{width:455.630400px;}
._d5{width:458.971200px;}
._e9{width:461.390400px;}
._9{width:470.880000px;}
._10d{width:473.954400px;}
._14{width:487.389600px;}
._141{width:492.480000px;}
._128{width:502.920000px;}
._97{width:525.240000px;}
._cc{width:536.997600px;}
._e2{width:543.528000px;}
._99{width:554.760000px;}
._ef{width:557.136000px;}
._d4{width:581.508000px;}
._a5{width:590.400000px;}
._9d{width:622.454400px;}
._a3{width:662.760000px;}
._85{width:666.057600px;}
._7a{width:684.288000px;}
._9b{width:685.699200px;}
._82{width:701.690400px;}
._73{width:719.337600px;}
._6d{width:755.337600px;}
._87{width:769.219200px;}
._be{width:789.840000px;}
._6b{width:863.100000px;}
._1e{width:887.400000px;}
._79{width:895.060800px;}
._94{width:943.920000px;}
._9e{width:992.880000px;}
._a0{width:1012.161600px;}
._9c{width:1058.515200px;}
._125{width:1068.876000px;}
._e5{width:1086.336000px;}
._119{width:1092.600000px;}
._11f{width:1104.876000px;}
._58{width:1107.108000px;}
._134{width:1108.584000px;}
._10f{width:1115.366400px;}
._cb{width:1119.837600px;}
._155{width:1123.920000px;}
._117{width:1133.366400px;}
._139{width:1136.664000px;}
._a2{width:1138.874400px;}
._4f{width:1142.964000px;}
._142{width:1154.304000px;}
._a7{width:1155.888288px;}
._13c{width:1216.454400px;}
._a4{width:1222.177032px;}
._14b{width:1236.096000px;}
._a6{width:1282.680000px;}
._146{width:1283.774400px;}
._3e{width:1319.760000px;}
._c6{width:1322.028000px;}
._98{width:1350.720000px;}
._9f{width:1398.600000px;}
._96{width:1446.840000px;}
._9a{width:1512.360000px;}
._a1{width:1516.471200px;}
._aa{width:1559.625768px;}
.fc5{color:transparent;}
.fc4{color:rgb(154,0,154);}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(51,51,255);}
.fc2{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.880000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y82{bottom:56.820000px;}
.y2{bottom:56.910000px;}
.y3e{bottom:57.180450px;}
.y81{bottom:77.520000px;}
.y1{bottom:77.610000px;}
.y3d{bottom:77.880450px;}
.yed{bottom:110.460000px;}
.yeb{bottom:117.750000px;}
.y94{bottom:121.800000px;}
.y11{bottom:128.190000px;}
.yc5{bottom:139.800000px;}
.ya7{bottom:143.850000px;}
.yd0{bottom:144.480000px;}
.yec{bottom:147.990000px;}
.y32{bottom:148.710000px;}
.yea{bottom:148.800000px;}
.y77{bottom:150.600450px;}
.y25{bottom:152.940000px;}
.y93{bottom:161.850000px;}
.yc4{bottom:170.850000px;}
.ya6{bottom:174.900000px;}
.y10{bottom:176.340000px;}
.ye9{bottom:179.850000px;}
.y55{bottom:183.000450px;}
.y31{bottom:190.110000px;}
.ycf{bottom:191.280000px;}
.y76{bottom:192.000450px;}
.y92{bottom:192.900000px;}
.y24{bottom:194.340000px;}
.yc3{bottom:201.900000px;}
.ya5{bottom:205.950000px;}
.ydf{bottom:209.190000px;}
.ye8{bottom:210.900000px;}
.yb6{bottom:214.950000px;}
.yf{bottom:223.410000px;}
.y91{bottom:223.950000px;}
.y54{bottom:224.400450px;}
.y6c{bottom:229.080450px;}
.yce{bottom:231.330000px;}
.y30{bottom:231.510000px;}
.yc2{bottom:232.950000px;}
.y75{bottom:233.400450px;}
.y23{bottom:235.740000px;}
.ya4{bottom:237.000000px;}
.yde{bottom:240.240000px;}
.ye7{bottom:241.950000px;}
.yb5{bottom:246.000000px;}
.y90{bottom:255.000000px;}
.y3c{bottom:260.490000px;}
.yc1{bottom:264.000000px;}
.ycd{bottom:264.630000px;}
.ye{bottom:264.810000px;}
.y53{bottom:265.800450px;}
.ya3{bottom:268.050000px;}
.y6b{bottom:270.480450px;}
.ydd{bottom:271.290000px;}
.y2f{bottom:272.910000px;}
.ye6{bottom:273.000000px;}
.y74{bottom:274.800450px;}
.yb4{bottom:277.050000px;}
.y22{bottom:277.140000px;}
.y8f{bottom:295.050000px;}
.ycc{bottom:295.680000px;}
.ya2{bottom:299.100000px;}
.y3b{bottom:301.890000px;}
.ydc{bottom:302.340000px;}
.ye5{bottom:304.050000px;}
.yd{bottom:306.210000px;}
.y52{bottom:307.200450px;}
.yb3{bottom:308.100000px;}
.y2e{bottom:314.310000px;}
.y73{bottom:316.200450px;}
.y21{bottom:318.540000px;}
.y6a{bottom:318.630450px;}
.yd8{bottom:323.040000px;}
.yc0{bottom:326.100000px;}
.ycb{bottom:326.730000px;}
.ya1{bottom:330.150000px;}
.ydb{bottom:333.390000px;}
.y8e{bottom:335.100000px;}
.yc{bottom:347.610000px;}
.yb2{bottom:348.150000px;}
.y51{bottom:348.600600px;}
.y3a{bottom:350.040000px;}
.y69{bottom:353.280600px;}
.yd7{bottom:354.090000px;}
.y2d{bottom:355.710000px;}
.ybf{bottom:357.150000px;}
.y72{bottom:357.600450px;}
.yca{bottom:357.780000px;}
.y20{bottom:359.940000px;}
.ya0{bottom:361.200000px;}
.yda{bottom:364.440000px;}
.y8d{bottom:366.060000px;}
.ye4{bottom:366.150000px;}
.yb1{bottom:379.200000px;}
.y39{bottom:384.690000px;}
.yd6{bottom:385.140000px;}
.ybe{bottom:388.200000px;}
.yc9{bottom:388.830000px;}
.yb{bottom:389.010000px;}
.y50{bottom:389.910600px;}
.y9f{bottom:392.160000px;}
.y2c{bottom:397.110000px;}
.ye3{bottom:397.200000px;}
.y71{bottom:398.910450px;}
.y1f{bottom:401.340000px;}
.y68{bottom:401.430600px;}
.yb0{bottom:410.160000px;}
.yd5{bottom:416.190000px;}
.ybd{bottom:419.160000px;}
.yc8{bottom:419.880000px;}
.ye2{bottom:428.160000px;}
.ya{bottom:430.410000px;}
.y4f{bottom:431.310600px;}
.y9e{bottom:432.210000px;}
.y38{bottom:432.840000px;}
.y67{bottom:436.080450px;}
.y8c{bottom:437.160000px;}
.y2b{bottom:438.510000px;}
.y70{bottom:440.310450px;}
.y1e{bottom:442.740000px;}
.ye0{bottom:446.340000px;}
.yd4{bottom:447.240000px;}
.yaf{bottom:450.210000px;}
.yc7{bottom:457.680000px;}
.ye1{bottom:459.210000px;}
.yd9{bottom:461.730000px;}
.y9d{bottom:463.260000px;}
.y37{bottom:467.490000px;}
.y8b{bottom:468.210000px;}
.y9{bottom:471.810000px;}
.y4e{bottom:472.710600px;}
.yd3{bottom:478.290000px;}
.y18{bottom:479.910000px;}
.ybc{bottom:481.260000px;}
.y6f{bottom:481.710450px;}
.y1d{bottom:484.140000px;}
.y66{bottom:484.230450px;}
.yae{bottom:490.260000px;}
.y9c{bottom:494.310000px;}
.y8a{bottom:499.260000px;}
.yc6{bottom:503.310000px;}
.yd2{bottom:509.340000px;}
.ybb{bottom:512.310000px;}
.y8{bottom:513.210000px;}
.y80{bottom:513.210600px;}
.y4d{bottom:514.110450px;}
.y36{bottom:515.640000px;}
.y65{bottom:518.880450px;}
.y2a{bottom:521.310000px;}
.y6e{bottom:523.110450px;}
.y1c{bottom:525.540000px;}
.y17{bottom:528.060000px;}
.y9b{bottom:534.360000px;}
.y89{bottom:539.310000px;}
.yd1{bottom:540.390000px;}
.yba{bottom:543.360000px;}
.y35{bottom:550.290000px;}
.yad{bottom:552.360000px;}
.y7f{bottom:554.610450px;}
.y4c{bottom:555.510450px;}
.y64{bottom:560.280450px;}
.y29{bottom:562.710000px;}
.y6d{bottom:564.510450px;}
.y9a{bottom:565.410000px;}
.y7{bottom:566.940000px;}
.y16{bottom:569.460000px;}
.y88{bottom:570.360000px;}
.yb9{bottom:574.410000px;}
.yac{bottom:583.410000px;}
.y7e{bottom:589.260450px;}
.y99{bottom:596.460000px;}
.y34{bottom:598.440000px;}
.y87{bottom:601.410000px;}
.y63{bottom:601.680450px;}
.y28{bottom:604.020000px;}
.yb8{bottom:605.460000px;}
.y4b{bottom:605.910450px;}
.y1b{bottom:608.340000px;}
.y15{bottom:610.770000px;}
.yab{bottom:614.460000px;}
.y6{bottom:620.670000px;}
.y98{bottom:636.510000px;}
.y7d{bottom:637.410450px;}
.y33{bottom:639.840000px;}
.y86{bottom:641.460000px;}
.y62{bottom:643.080450px;}
.y27{bottom:645.420000px;}
.yaa{bottom:645.510000px;}
.y4a{bottom:647.310450px;}
.y14{bottom:652.170000px;}
.y1a{bottom:662.070000px;}
.y97{bottom:667.560000px;}
.y5{bottom:674.490000px;}
.ya9{bottom:676.560000px;}
.y7c{bottom:678.810450px;}
.y61{bottom:684.480450px;}
.y85{bottom:684.930000px;}
.y26{bottom:686.820000px;}
.y49{bottom:688.710450px;}
.y13{bottom:693.570000px;}
.y96{bottom:698.610000px;}
.ya8{bottom:707.610000px;}
.y19{bottom:715.890000px;}
.y84{bottom:715.980000px;}
.y7b{bottom:720.210450px;}
.y60{bottom:725.880450px;}
.y4{bottom:728.220000px;}
.yb7{bottom:729.660000px;}
.y48{bottom:730.110450px;}
.y95{bottom:738.660000px;}
.y7a{bottom:761.610450px;}
.y5f{bottom:767.280450px;}
.y3{bottom:769.620000px;}
.y83{bottom:769.710000px;}
.y47{bottom:771.510450px;}
.y12{bottom:776.370000px;}
.y79{bottom:808.680450px;}
.y46{bottom:812.910450px;}
.y5e{bottom:815.430600px;}
.y5d{bottom:850.080450px;}
.y45{bottom:854.310450px;}
.y5c{bottom:891.480450px;}
.y44{bottom:895.710450px;}
.y5b{bottom:932.880450px;}
.y43{bottom:937.110450px;}
.y5a{bottom:974.190450px;}
.y42{bottom:990.840450px;}
.y59{bottom:1015.590450px;}
.y41{bottom:1044.660450px;}
.y78{bottom:1056.990450px;}
.y58{bottom:1063.740450px;}
.y40{bottom:1098.390450px;}
.y57{bottom:1098.390600px;}
.y3f{bottom:1139.790450px;}
.y56{bottom:1146.540600px;}
.hd{height:33.174668px;}
.h4{height:33.268184px;}
.hc{height:48.796875px;}
.h2{height:50.027344px;}
.he{height:52.031250px;}
.hf{height:55.476562px;}
.h8{height:57.364805px;}
.h7{height:60.267584px;}
.h3{height:60.268184px;}
.h6{height:60.268784px;}
.ha{height:86.027344px;}
.hb{height:111.947344px;}
.h9{height:174.227344px;}
.h1{height:892.500000px;}
.h0{height:892.830000px;}
.h5{height:1263.000000px;}
.w2{width:892.500000px;}
.w1{width:892.830000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x2{left:85.035750px;}
.x5{left:90.255750px;}
.xb{left:93.135750px;}
.x7{left:101.235750px;}
.x6{left:106.365900px;}
.x12{left:107.895750px;}
.x9{left:114.480000px;}
.x4{left:191.145750px;}
.x13{left:210.405750px;}
.x3{left:511.995750px;}
.xc{left:743.295750px;}
.x8{left:777.600000px;}
.x14{left:832.034535px;}
.xd{left:848.685750px;}
.xe{left:855.615750px;}
.x17{left:876.405762px;}
.xf{left:937.965750px;}
.x10{left:965.865750px;}
.x11{left:1044.435750px;}
.x15{left:1127.235750px;}
.x16{left:1133.715750px;}
.xa{left:1138.575750px;}
.x1{left:1147.485750px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v5{vertical-align:21.440000pt;}
.v1{vertical-align:24.000000pt;}
.v8{vertical-align:32.000000pt;}
.v6{vertical-align:55.040000pt;}
.v7{vertical-align:110.400000pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.243200pt;}
.ls40{letter-spacing:-0.185600pt;}
.ls41{letter-spacing:-0.172800pt;}
.ls4c{letter-spacing:-0.170240pt;}
.ls4d{letter-spacing:-0.165984pt;}
.ls2c{letter-spacing:-0.161728pt;}
.ls30{letter-spacing:-0.160000pt;}
.ls46{letter-spacing:-0.153600pt;}
.ls44{letter-spacing:-0.147200pt;}
.ls2a{letter-spacing:-0.140800pt;}
.ls2d{letter-spacing:-0.134400pt;}
.ls35{letter-spacing:-0.128000pt;}
.ls43{letter-spacing:-0.115200pt;}
.ls10{letter-spacing:-0.108800pt;}
.ls42{letter-spacing:-0.102400pt;}
.ls18{letter-spacing:-0.096000pt;}
.ls20{letter-spacing:-0.089600pt;}
.ls49{letter-spacing:-0.089376pt;}
.lsf{letter-spacing:-0.083200pt;}
.ls2f{letter-spacing:-0.076800pt;}
.ls3a{letter-spacing:-0.070400pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls39{letter-spacing:-0.057600pt;}
.ls25{letter-spacing:-0.051200pt;}
.ls27{letter-spacing:-0.044800pt;}
.ls19{letter-spacing:-0.038400pt;}
.ls17{letter-spacing:-0.032000pt;}
.ls15{letter-spacing:-0.025600pt;}
.ls28{letter-spacing:-0.019200pt;}
.ls12{letter-spacing:-0.017024pt;}
.ls13{letter-spacing:-0.012800pt;}
.ls48{letter-spacing:-0.008512pt;}
.ls11{letter-spacing:-0.006400pt;}
.lse{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.006400pt;}
.ls1{letter-spacing:0.012800pt;}
.ls1a{letter-spacing:0.019200pt;}
.ls8{letter-spacing:0.025600pt;}
.lsa{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.038400pt;}
.ls3{letter-spacing:0.044800pt;}
.ls7{letter-spacing:0.051200pt;}
.ls1b{letter-spacing:0.057600pt;}
.ls6{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.070400pt;}
.ls29{letter-spacing:0.076800pt;}
.ls5{letter-spacing:0.083200pt;}
.ls3e{letter-spacing:0.089600pt;}
.ls2e{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.108800pt;}
.ls4e{letter-spacing:0.121600pt;}
.ls23{letter-spacing:0.128000pt;}
.ls4a{letter-spacing:0.151674pt;}
.ls4b{letter-spacing:0.153216pt;}
.lsd{letter-spacing:0.159467pt;}
.ls2{letter-spacing:0.160000pt;}
.ls2b{letter-spacing:0.161728pt;}
.ls26{letter-spacing:0.230400pt;}
.ls4{letter-spacing:0.480000pt;}
.ls45{letter-spacing:42.982400pt;}
.ls31{letter-spacing:137.840000pt;}
.ls3b{letter-spacing:144.880000pt;}
.ls22{letter-spacing:163.520000pt;}
.ls21{letter-spacing:163.840000pt;}
.ls3d{letter-spacing:169.840000pt;}
.ls24{letter-spacing:186.240000pt;}
.ls1e{letter-spacing:318.080000pt;}
.ls1d{letter-spacing:340.800000pt;}
.ls36{letter-spacing:399.360000pt;}
.ls3f{letter-spacing:400.960000pt;}
.ls33{letter-spacing:494.720000pt;}
.ls47{letter-spacing:751.699200pt;}
.ls1c{letter-spacing:752.000000pt;}
.ls37{letter-spacing:1212.480000pt;}
.ls38{letter-spacing:1236.480000pt;}
.ls34{letter-spacing:1260.480000pt;}
.ls3c{letter-spacing:1309.440000pt;}
.ls32{letter-spacing:1400.000000pt;}
.wsc5{word-spacing:-64.000000pt;}
.ws2{word-spacing:-16.108800pt;}
.ws5a{word-spacing:-16.096000pt;}
.ws8{word-spacing:-16.083200pt;}
.ws6c{word-spacing:-16.070400pt;}
.ws7{word-spacing:-16.064000pt;}
.wsa{word-spacing:-16.051200pt;}
.ws4{word-spacing:-16.044800pt;}
.ws6{word-spacing:-16.038400pt;}
.wsb0{word-spacing:-16.032000pt;}
.wsac{word-spacing:-16.006400pt;}
.ws58{word-spacing:-16.000000pt;}
.ws75{word-spacing:-15.987200pt;}
.ws5{word-spacing:-15.974400pt;}
.ws95{word-spacing:-15.968000pt;}
.ws76{word-spacing:-15.955200pt;}
.ws6b{word-spacing:-15.948800pt;}
.ws6a{word-spacing:-15.936000pt;}
.ws69{word-spacing:-15.923200pt;}
.wsb{word-spacing:-15.904000pt;}
.wsaf{word-spacing:-15.897600pt;}
.wsb1{word-spacing:-15.884800pt;}
.ws74{word-spacing:-15.872000pt;}
.ws4f{word-spacing:-15.865600pt;}
.ws4e{word-spacing:-15.859200pt;}
.wsb2{word-spacing:-15.852800pt;}
.wsbb{word-spacing:-15.846400pt;}
.wsae{word-spacing:-15.827200pt;}
.wsad{word-spacing:-15.814400pt;}
.ws3{word-spacing:-15.756800pt;}
.ws9{word-spacing:-15.680000pt;}
.ws59{word-spacing:-10.801728pt;}
.wsc4{word-spacing:-10.793216pt;}
.ws0{word-spacing:-10.640000pt;}
.ws1{word-spacing:-10.622976pt;}
.wsc7{word-spacing:-10.474016pt;}
.wsc6{word-spacing:-10.469760pt;}
.ws52{word-spacing:-0.358400pt;}
.wsc1{word-spacing:-0.352000pt;}
.ws73{word-spacing:-0.326400pt;}
.wsc0{word-spacing:-0.313600pt;}
.wsb7{word-spacing:-0.230400pt;}
.ws71{word-spacing:-0.224000pt;}
.wsc9{word-spacing:-0.211200pt;}
.ws5e{word-spacing:-0.204800pt;}
.wsb9{word-spacing:-0.192000pt;}
.ws26{word-spacing:-0.185600pt;}
.ws2a{word-spacing:-0.179200pt;}
.ws5c{word-spacing:-0.172800pt;}
.ws1d{word-spacing:-0.166400pt;}
.wsbc{word-spacing:-0.160000pt;}
.wsb8{word-spacing:-0.153600pt;}
.wsba{word-spacing:-0.147200pt;}
.wsb6{word-spacing:-0.140800pt;}
.ws4b{word-spacing:-0.134400pt;}
.ws29{word-spacing:-0.128000pt;}
.wsbd{word-spacing:-0.121600pt;}
.ws54{word-spacing:-0.115200pt;}
.ws5f{word-spacing:-0.108800pt;}
.ws4c{word-spacing:-0.102400pt;}
.ws47{word-spacing:-0.096000pt;}
.ws2c{word-spacing:-0.089600pt;}
.ws45{word-spacing:-0.083200pt;}
.ws2b{word-spacing:-0.076800pt;}
.ws1f{word-spacing:-0.070400pt;}
.ws1b{word-spacing:-0.064000pt;}
.ws20{word-spacing:-0.057600pt;}
.ws1e{word-spacing:-0.051200pt;}
.ws46{word-spacing:-0.044800pt;}
.ws23{word-spacing:-0.038400pt;}
.ws4d{word-spacing:-0.032000pt;}
.ws21{word-spacing:-0.025600pt;}
.ws4a{word-spacing:-0.019200pt;}
.wsbf{word-spacing:-0.017024pt;}
.wsf{word-spacing:-0.012800pt;}
.wse{word-spacing:-0.006400pt;}
.wsc{word-spacing:0.000000pt;}
.ws27{word-spacing:0.006400pt;}
.ws1c{word-spacing:0.012800pt;}
.ws48{word-spacing:0.019200pt;}
.ws22{word-spacing:0.025600pt;}
.ws24{word-spacing:0.032000pt;}
.ws25{word-spacing:0.038400pt;}
.ws44{word-spacing:0.044800pt;}
.wsc2{word-spacing:0.051200pt;}
.wsc3{word-spacing:0.063840pt;}
.ws5b{word-spacing:0.070400pt;}
.ws49{word-spacing:0.076800pt;}
.wsc8{word-spacing:0.102400pt;}
.wsbe{word-spacing:0.108800pt;}
.ws72{word-spacing:0.160000pt;}
.ws28{word-spacing:0.166400pt;}
.ws5d{word-spacing:0.179200pt;}
.ws83{word-spacing:0.198400pt;}
.ws82{word-spacing:0.352000pt;}
.wsd{word-spacing:0.403200pt;}
.ws77{word-spacing:60.793600pt;}
.ws31{word-spacing:72.992000pt;}
.ws19{word-spacing:74.566400pt;}
.ws16{word-spacing:74.886400pt;}
.ws15{word-spacing:91.827200pt;}
.ws30{word-spacing:106.892800pt;}
.ws17{word-spacing:109.356800pt;}
.ws1a{word-spacing:110.956800pt;}
.ws2e{word-spacing:111.744000pt;}
.wsaa{word-spacing:120.320000pt;}
.ws18{word-spacing:134.067200pt;}
.wsa7{word-spacing:136.934400pt;}
.ws88{word-spacing:136.947200pt;}
.wsb4{word-spacing:136.953600pt;}
.ws9b{word-spacing:136.966400pt;}
.ws8d{word-spacing:136.972800pt;}
.ws7f{word-spacing:136.979200pt;}
.ws85{word-spacing:136.985600pt;}
.ws90{word-spacing:136.992000pt;}
.ws9d{word-spacing:136.998400pt;}
.ws79{word-spacing:137.004800pt;}
.wsa5{word-spacing:137.011200pt;}
.ws94{word-spacing:137.024000pt;}
.ws99{word-spacing:142.374400pt;}
.wsa8{word-spacing:142.393600pt;}
.ws8e{word-spacing:142.406400pt;}
.ws9f{word-spacing:142.412800pt;}
.ws93{word-spacing:142.419200pt;}
.ws96{word-spacing:142.432000pt;}
.ws91{word-spacing:142.438400pt;}
.wsa0{word-spacing:142.444800pt;}
.ws7a{word-spacing:142.451200pt;}
.ws89{word-spacing:142.457600pt;}
.ws80{word-spacing:142.464000pt;}
.wsa3{word-spacing:142.476800pt;}
.ws7d{word-spacing:142.483200pt;}
.ws86{word-spacing:142.489600pt;}
.ws8b{word-spacing:146.598400pt;}
.ws8c{word-spacing:152.070400pt;}
.ws3e{word-spacing:163.500800pt;}
.ws37{word-spacing:163.520000pt;}
.ws41{word-spacing:163.840000pt;}
.ws92{word-spacing:173.440000pt;}
.wsa6{word-spacing:180.480000pt;}
.ws39{word-spacing:186.240000pt;}
.wsab{word-spacing:198.406400pt;}
.ws87{word-spacing:211.200000pt;}
.ws7e{word-spacing:223.040000pt;}
.ws9a{word-spacing:230.400000pt;}
.wsa9{word-spacing:233.920000pt;}
.ws8f{word-spacing:235.200000pt;}
.wsa4{word-spacing:251.520000pt;}
.wsa1{word-spacing:251.526400pt;}
.ws8a{word-spacing:259.200000pt;}
.wsb3{word-spacing:262.400000pt;}
.ws84{word-spacing:275.200000pt;}
.ws3a{word-spacing:280.000000pt;}
.ws98{word-spacing:290.560000pt;}
.ws42{word-spacing:303.033600pt;}
.ws3d{word-spacing:303.040000pt;}
.ws9e{word-spacing:307.833600pt;}
.ws51{word-spacing:317.734400pt;}
.ws60{word-spacing:318.048000pt;}
.ws14{word-spacing:337.286400pt;}
.ws12{word-spacing:465.273600pt;}
.ws7b{word-spacing:475.500800pt;}
.ws97{word-spacing:475.859200pt;}
.ws68{word-spacing:477.120000pt;}
.ws11{word-spacing:480.428800pt;}
.ws53{word-spacing:493.120000pt;}
.ws2f{word-spacing:503.769600pt;}
.ws55{word-spacing:509.120000pt;}
.wsa2{word-spacing:521.523200pt;}
.ws66{word-spacing:598.758400pt;}
.ws13{word-spacing:614.681600pt;}
.ws65{word-spacing:755.212800pt;}
.ws40{word-spacing:790.732800pt;}
.ws70{word-spacing:812.160000pt;}
.ws67{word-spacing:911.718400pt;}
.ws64{word-spacing:943.718400pt;}
.ws3c{word-spacing:979.206400pt;}
.ws3b{word-spacing:1064.320000pt;}
.ws43{word-spacing:1072.313600pt;}
.ws3f{word-spacing:1085.766400pt;}
.ws63{word-spacing:1100.198400pt;}
.ws32{word-spacing:1101.440000pt;}
.ws35{word-spacing:1104.947200pt;}
.ws36{word-spacing:1104.953600pt;}
.ws62{word-spacing:1132.179200pt;}
.ws34{word-spacing:1135.347200pt;}
.ws38{word-spacing:1135.353600pt;}
.ws33{word-spacing:1167.347200pt;}
.ws6f{word-spacing:1185.280000pt;}
.ws78{word-spacing:1188.480000pt;}
.ws6e{word-spacing:1195.840000pt;}
.ws81{word-spacing:1212.480000pt;}
.ws2d{word-spacing:1212.908800pt;}
.ws7c{word-spacing:1236.486400pt;}
.wsb5{word-spacing:1260.480000pt;}
.ws6d{word-spacing:1263.360000pt;}
.ws61{word-spacing:1288.313600pt;}
.ws9c{word-spacing:1309.440000pt;}
.ws57{word-spacing:1365.766400pt;}
.ws56{word-spacing:1369.267200pt;}
.ws10{word-spacing:1700.115200pt;}
.ws50{word-spacing:1714.905600pt;}
._89{margin-left:-3939.436800pt;}
._8b{margin-left:-3920.851200pt;}
._8d{margin-left:-3916.000000pt;}
._8f{margin-left:-3902.963200pt;}
._8c{margin-left:-3839.424960pt;}
._90{margin-left:-3805.772800pt;}
._1a{margin-left:-3200.288000pt;}
._3{margin-left:-2641.280000pt;}
._91{margin-left:-2594.484160pt;}
._b5{margin-left:-2590.841600pt;}
._ab{margin-left:-2583.411200pt;}
._ae{margin-left:-2577.504000pt;}
._d0{margin-left:-2569.280000pt;}
._ad{margin-left:-2542.124800pt;}
._b7{margin-left:-2538.457600pt;}
._b4{margin-left:-2523.097600pt;}
._b3{margin-left:-2508.256000pt;}
._88{margin-left:-2502.246400pt;}
._b0{margin-left:-2494.790400pt;}
._92{margin-left:-2467.808000pt;}
._b9{margin-left:-2445.504000pt;}
._1{margin-left:-2435.648000pt;}
._b6{margin-left:-2401.699456pt;}
._cf{margin-left:-2281.324800pt;}
._ce{margin-left:-2227.052800pt;}
._b2{margin-left:-2132.268800pt;}
._ba{margin-left:-2105.011200pt;}
._d3{margin-left:-1966.892800pt;}
._d2{margin-left:-1943.468800pt;}
._8a{margin-left:-1909.165760pt;}
._b1{margin-left:-1824.372160pt;}
._af{margin-left:-1800.697600pt;}
._cd{margin-left:-1713.536000pt;}
._bd{margin-left:-1696.000000pt;}
._19{margin-left:-1664.000000pt;}
._bb{margin-left:-1370.892800pt;}
._b8{margin-left:-1260.377600pt;}
._8e{margin-left:-1252.884160pt;}
._7b{margin-left:-1072.320000pt;}
._12a{margin-left:-1051.520000pt;}
._bc{margin-left:-1037.062400pt;}
._12b{margin-left:-1034.880000pt;}
._129{margin-left:-1030.361600pt;}
._d1{margin-left:-1028.281600pt;}
._2e{margin-left:-1019.200000pt;}
._ac{margin-left:-1016.832000pt;}
._3c{margin-left:-1010.240000pt;}
._3b{margin-left:-1009.280000pt;}
._2b{margin-left:-1006.080000pt;}
._152{margin-left:-1002.931200pt;}
._eb{margin-left:-1000.947200pt;}
._3d{margin-left:-990.720000pt;}
._30{margin-left:-987.200000pt;}
._153{margin-left:-985.920000pt;}
._27{margin-left:-983.040000pt;}
._2f{margin-left:-980.761600pt;}
._36{margin-left:-978.880000pt;}
._81{margin-left:-976.960000pt;}
._2c{margin-left:-975.680000pt;}
._63{margin-left:-970.880000pt;}
._4c{margin-left:-968.960000pt;}
._5d{margin-left:-967.680000pt;}
._e0{margin-left:-961.900800pt;}
._62{margin-left:-960.320000pt;}
._2d{margin-left:-956.800000pt;}
._ed{margin-left:-954.560000pt;}
._d7{margin-left:-953.280000pt;}
._31{margin-left:-948.774400pt;}
._80{margin-left:-946.240000pt;}
._2a{margin-left:-945.280000pt;}
._37{margin-left:-941.440000pt;}
._4d{margin-left:-938.560000pt;}
._5e{margin-left:-937.280000pt;}
._ec{margin-left:-933.120000pt;}
._d9{margin-left:-930.560000pt;}
._61{margin-left:-929.600000pt;}
._7c{margin-left:-927.360000pt;}
._32{margin-left:-926.400000pt;}
._7d{margin-left:-923.840000pt;}
._26{margin-left:-922.880000pt;}
._4e{margin-left:-919.680000pt;}
._33{margin-left:-918.374400pt;}
._48{margin-left:-916.160000pt;}
._da{margin-left:-913.920000pt;}
._d8{margin-left:-909.120000pt;}
._4b{margin-left:-908.160000pt;}
._3a{margin-left:-893.440000pt;}
._55{margin-left:-883.840000pt;}
._a8{margin-left:-876.160000pt;}
._a9{margin-left:-872.640000pt;}
._39{margin-left:-869.760000pt;}
._35{margin-left:-863.040000pt;}
._51{margin-left:-860.800000pt;}
._29{margin-left:-859.200000pt;}
._56{margin-left:-853.440000pt;}
._60{margin-left:-843.520000pt;}
._34{margin-left:-839.360000pt;}
._28{margin-left:-836.480000pt;}
._57{margin-left:-834.560000pt;}
._50{margin-left:-831.456000pt;}
._7f{margin-left:-830.400000pt;}
._54{margin-left:-823.040000pt;}
._4a{margin-left:-822.080000pt;}
._5f{margin-left:-820.800000pt;}
._bf{margin-left:-811.200000pt;}
._7e{margin-left:-807.040000pt;}
._49{margin-left:-800.000000pt;}
._c7{margin-left:-786.265600pt;}
._c9{margin-left:-740.160000pt;}
._53{margin-left:-736.960000pt;}
._c8{margin-left:-718.720000pt;}
._52{margin-left:-714.240000pt;}
._6a{margin-left:-675.840000pt;}
._64{margin-left:-673.446400pt;}
._69{margin-left:-665.280000pt;}
._c0{margin-left:-655.456000pt;}
._65{margin-left:-642.240000pt;}
._68{margin-left:-634.560000pt;}
._c1{margin-left:-623.456000pt;}
._67{margin-left:-548.480000pt;}
._66{margin-left:-525.760000pt;}
._c2{margin-left:-467.366400pt;}
._c5{margin-left:-434.982400pt;}
._1c{margin-left:-396.864000pt;}
._93{margin-left:-341.465600pt;}
._5{margin-left:-337.280000pt;}
._ca{margin-left:-335.532800pt;}
._95{margin-left:-318.131200pt;}
._6f{margin-left:-303.040000pt;}
._c3{margin-left:-278.220800pt;}
._83{margin-left:-207.680000pt;}
._70{margin-left:-180.480000pt;}
._71{margin-left:-177.600000pt;}
._59{margin-left:-176.640000pt;}
._5c{margin-left:-163.520000pt;}
._138{margin-left:-159.737600pt;}
._72{margin-left:-158.080000pt;}
._41{margin-left:-153.920000pt;}
._84{margin-left:-147.200000pt;}
._fe{margin-left:-141.427200pt;}
._5a{margin-left:-139.520000pt;}
._8{margin-left:-134.449152pt;}
._116{margin-left:-132.800000pt;}
._c4{margin-left:-122.182400pt;}
._42{margin-left:-116.480000pt;}
._de{margin-left:-113.945600pt;}
._df{margin-left:-112.960000pt;}
._6e{margin-left:-109.440000pt;}
._115{margin-left:-95.360000pt;}
._6{margin-left:-92.032000pt;}
._86{margin-left:-90.880000pt;}
._118{margin-left:-77.216000pt;}
._7{margin-left:-74.976000pt;}
._5b{margin-left:-67.520000pt;}
._46{margin-left:-61.120000pt;}
._45{margin-left:-60.160000pt;}
._1d{margin-left:-59.251200pt;}
._130{margin-left:-49.920000pt;}
._78{margin-left:-48.960000pt;}
._47{margin-left:-41.600000pt;}
._156{margin-left:-39.865600pt;}
._3f{margin-left:-37.760000pt;}
._f3{margin-left:-36.480000pt;}
._11c{margin-left:-32.640000pt;}
._76{margin-left:-30.080000pt;}
._12f{margin-left:-28.480000pt;}
._137{margin-left:-27.040000pt;}
._77{margin-left:-22.720000pt;}
._6c{margin-left:-19.840000pt;}
._38{margin-left:-18.880000pt;}
._f6{margin-left:-17.280000pt;}
._11d{margin-left:-16.000000pt;}
._11b{margin-left:-11.200000pt;}
._151{margin-left:-4.480000pt;}
._126{margin-left:-3.200000pt;}
._2{margin-left:-1.094400pt;}
._0{width:1.030400pt;}
._136{width:6.720000pt;}
._e6{width:12.160000pt;}
._100{width:15.174400pt;}
._11a{width:17.280000pt;}
._4{width:18.291200pt;}
._f5{width:20.160000pt;}
._10b{width:22.720000pt;}
._143{width:24.416000pt;}
._75{width:25.600000pt;}
._122{width:27.520000pt;}
._120{width:28.800000pt;}
._135{width:31.680000pt;}
._150{width:33.619200pt;}
._e7{width:35.520000pt;}
._110{width:37.760000pt;}
._10c{width:39.360000pt;}
._144{width:40.640000pt;}
._10a{width:44.384000pt;}
._fb{width:46.720000pt;}
._121{width:48.960000pt;}
._e8{width:51.520000pt;}
._1f{width:54.080000pt;}
._44{width:55.680000pt;}
._25{width:60.006400pt;}
._20{width:61.440000pt;}
._fc{width:63.360000pt;}
._21{width:66.240000pt;}
._fa{width:68.160000pt;}
._24{width:72.960000pt;}
._14e{width:75.673600pt;}
._13f{width:77.440000pt;}
._43{width:79.040000pt;}
._14d{width:80.960000pt;}
._112{width:84.480000pt;}
._140{width:94.080000pt;}
._13e{width:98.880000pt;}
._113{width:101.120000pt;}
._111{width:105.920000pt;}
._74{width:108.800000pt;}
._23{width:114.560000pt;}
._40{width:116.800000pt;}
._22{width:118.400000pt;}
._13d{width:127.360000pt;}
._ee{width:136.697600pt;}
._149{width:137.600000pt;}
._12e{width:139.494400pt;}
._f2{width:142.297600pt;}
._14c{width:145.280000pt;}
._f4{width:150.080000pt;}
._14a{width:154.240000pt;}
._148{width:159.040000pt;}
._ff{width:164.851200pt;}
._158{width:171.897600pt;}
._157{width:173.011200pt;}
._147{width:187.520000pt;}
._f9{width:199.776000pt;}
._107{width:209.920000pt;}
._104{width:215.360000pt;}
._e4{width:219.289600pt;}
._12d{width:220.396800pt;}
._dd{width:224.960000pt;}
._114{width:225.900800pt;}
._ea{width:226.963200pt;}
._d6{width:230.412800pt;}
._f{width:244.390400pt;}
._106{width:247.040000pt;}
._103{width:252.800000pt;}
._db{width:257.190400pt;}
._16{width:262.400000pt;}
._12{width:263.360000pt;}
._13{width:265.280000pt;}
._13a{width:292.499200pt;}
._10{width:294.400000pt;}
._11{width:295.360000pt;}
._17{width:297.280000pt;}
._13b{width:302.323200pt;}
._145{width:310.656000pt;}
._132{width:328.985600pt;}
._101{width:330.451200pt;}
._f7{width:332.313600pt;}
._18{width:339.846400pt;}
._d{width:343.040000pt;}
._b{width:344.000000pt;}
._102{width:348.160000pt;}
._e3{width:352.320000pt;}
._dc{width:357.760000pt;}
._e1{width:360.064000pt;}
._f1{width:361.657600pt;}
._105{width:364.217600pt;}
._fd{width:367.040000pt;}
._11e{width:368.051200pt;}
._a{width:368.960000pt;}
._15{width:372.217600pt;}
._c{width:374.400000pt;}
._e{width:376.000000pt;}
._127{width:377.414400pt;}
._14f{width:379.571200pt;}
._12c{width:381.280000pt;}
._109{width:383.040000pt;}
._123{width:385.056000pt;}
._f8{width:386.342400pt;}
._133{width:387.347200pt;}
._108{width:389.004800pt;}
._1b{width:392.371200pt;}
._154{width:394.214400pt;}
._f0{width:399.097600pt;}
._124{width:401.260800pt;}
._131{width:402.976000pt;}
._10e{width:405.004800pt;}
._d5{width:407.974400pt;}
._e9{width:410.124800pt;}
._9{width:418.560000pt;}
._10d{width:421.292800pt;}
._14{width:433.235200pt;}
._141{width:437.760000pt;}
._128{width:447.040000pt;}
._97{width:466.880000pt;}
._cc{width:477.331200pt;}
._e2{width:483.136000pt;}
._99{width:493.120000pt;}
._ef{width:495.232000pt;}
._d4{width:516.896000pt;}
._a5{width:524.800000pt;}
._9d{width:553.292800pt;}
._a3{width:589.120000pt;}
._85{width:592.051200pt;}
._7a{width:608.256000pt;}
._9b{width:609.510400pt;}
._82{width:623.724800pt;}
._73{width:639.411200pt;}
._6d{width:671.411200pt;}
._87{width:683.750400pt;}
._be{width:702.080000pt;}
._6b{width:767.200000pt;}
._1e{width:788.800000pt;}
._79{width:795.609600pt;}
._94{width:839.040000pt;}
._9e{width:882.560000pt;}
._a0{width:899.699200pt;}
._9c{width:940.902400pt;}
._125{width:950.112000pt;}
._e5{width:965.632000pt;}
._119{width:971.200000pt;}
._11f{width:982.112000pt;}
._58{width:984.096000pt;}
._134{width:985.408000pt;}
._10f{width:991.436800pt;}
._cb{width:995.411200pt;}
._155{width:999.040000pt;}
._117{width:1007.436800pt;}
._139{width:1010.368000pt;}
._a2{width:1012.332800pt;}
._4f{width:1015.968000pt;}
._142{width:1026.048000pt;}
._a7{width:1027.456256pt;}
._13c{width:1081.292800pt;}
._a4{width:1086.379584pt;}
._14b{width:1098.752000pt;}
._a6{width:1140.160000pt;}
._146{width:1141.132800pt;}
._3e{width:1173.120000pt;}
._c6{width:1175.136000pt;}
._98{width:1200.640000pt;}
._9f{width:1243.200000pt;}
._96{width:1286.080000pt;}
._9a{width:1344.320000pt;}
._a1{width:1347.974400pt;}
._aa{width:1386.334016pt;}
.fs1{font-size:42.560000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:50.506667pt;}
.y2{bottom:50.586667pt;}
.y3e{bottom:50.827067pt;}
.y81{bottom:68.906667pt;}
.y1{bottom:68.986667pt;}
.y3d{bottom:69.227067pt;}
.yed{bottom:98.186667pt;}
.yeb{bottom:104.666667pt;}
.y94{bottom:108.266667pt;}
.y11{bottom:113.946667pt;}
.yc5{bottom:124.266667pt;}
.ya7{bottom:127.866667pt;}
.yd0{bottom:128.426667pt;}
.yec{bottom:131.546667pt;}
.y32{bottom:132.186667pt;}
.yea{bottom:132.266667pt;}
.y77{bottom:133.867067pt;}
.y25{bottom:135.946667pt;}
.y93{bottom:143.866667pt;}
.yc4{bottom:151.866667pt;}
.ya6{bottom:155.466667pt;}
.y10{bottom:156.746667pt;}
.ye9{bottom:159.866667pt;}
.y55{bottom:162.667067pt;}
.y31{bottom:168.986667pt;}
.ycf{bottom:170.026667pt;}
.y76{bottom:170.667067pt;}
.y92{bottom:171.466667pt;}
.y24{bottom:172.746667pt;}
.yc3{bottom:179.466667pt;}
.ya5{bottom:183.066667pt;}
.ydf{bottom:185.946667pt;}
.ye8{bottom:187.466667pt;}
.yb6{bottom:191.066667pt;}
.yf{bottom:198.586667pt;}
.y91{bottom:199.066667pt;}
.y54{bottom:199.467067pt;}
.y6c{bottom:203.627067pt;}
.yce{bottom:205.626667pt;}
.y30{bottom:205.786667pt;}
.yc2{bottom:207.066667pt;}
.y75{bottom:207.467067pt;}
.y23{bottom:209.546667pt;}
.ya4{bottom:210.666667pt;}
.yde{bottom:213.546667pt;}
.ye7{bottom:215.066667pt;}
.yb5{bottom:218.666667pt;}
.y90{bottom:226.666667pt;}
.y3c{bottom:231.546667pt;}
.yc1{bottom:234.666667pt;}
.ycd{bottom:235.226667pt;}
.ye{bottom:235.386667pt;}
.y53{bottom:236.267067pt;}
.ya3{bottom:238.266667pt;}
.y6b{bottom:240.427067pt;}
.ydd{bottom:241.146667pt;}
.y2f{bottom:242.586667pt;}
.ye6{bottom:242.666667pt;}
.y74{bottom:244.267067pt;}
.yb4{bottom:246.266667pt;}
.y22{bottom:246.346667pt;}
.y8f{bottom:262.266667pt;}
.ycc{bottom:262.826667pt;}
.ya2{bottom:265.866667pt;}
.y3b{bottom:268.346667pt;}
.ydc{bottom:268.746667pt;}
.ye5{bottom:270.266667pt;}
.yd{bottom:272.186667pt;}
.y52{bottom:273.067067pt;}
.yb3{bottom:273.866667pt;}
.y2e{bottom:279.386667pt;}
.y73{bottom:281.067067pt;}
.y21{bottom:283.146667pt;}
.y6a{bottom:283.227067pt;}
.yd8{bottom:287.146667pt;}
.yc0{bottom:289.866667pt;}
.ycb{bottom:290.426667pt;}
.ya1{bottom:293.466667pt;}
.ydb{bottom:296.346667pt;}
.y8e{bottom:297.866667pt;}
.yc{bottom:308.986667pt;}
.yb2{bottom:309.466667pt;}
.y51{bottom:309.867200pt;}
.y3a{bottom:311.146667pt;}
.y69{bottom:314.027200pt;}
.yd7{bottom:314.746667pt;}
.y2d{bottom:316.186667pt;}
.ybf{bottom:317.466667pt;}
.y72{bottom:317.867067pt;}
.yca{bottom:318.026667pt;}
.y20{bottom:319.946667pt;}
.ya0{bottom:321.066667pt;}
.yda{bottom:323.946667pt;}
.y8d{bottom:325.386667pt;}
.ye4{bottom:325.466667pt;}
.yb1{bottom:337.066667pt;}
.y39{bottom:341.946667pt;}
.yd6{bottom:342.346667pt;}
.ybe{bottom:345.066667pt;}
.yc9{bottom:345.626667pt;}
.yb{bottom:345.786667pt;}
.y50{bottom:346.587200pt;}
.y9f{bottom:348.586667pt;}
.y2c{bottom:352.986667pt;}
.ye3{bottom:353.066667pt;}
.y71{bottom:354.587067pt;}
.y1f{bottom:356.746667pt;}
.y68{bottom:356.827200pt;}
.yb0{bottom:364.586667pt;}
.yd5{bottom:369.946667pt;}
.ybd{bottom:372.586667pt;}
.yc8{bottom:373.226667pt;}
.ye2{bottom:380.586667pt;}
.ya{bottom:382.586667pt;}
.y4f{bottom:383.387200pt;}
.y9e{bottom:384.186667pt;}
.y38{bottom:384.746667pt;}
.y67{bottom:387.627067pt;}
.y8c{bottom:388.586667pt;}
.y2b{bottom:389.786667pt;}
.y70{bottom:391.387067pt;}
.y1e{bottom:393.546667pt;}
.ye0{bottom:396.746667pt;}
.yd4{bottom:397.546667pt;}
.yaf{bottom:400.186667pt;}
.yc7{bottom:406.826667pt;}
.ye1{bottom:408.186667pt;}
.yd9{bottom:410.426667pt;}
.y9d{bottom:411.786667pt;}
.y37{bottom:415.546667pt;}
.y8b{bottom:416.186667pt;}
.y9{bottom:419.386667pt;}
.y4e{bottom:420.187200pt;}
.yd3{bottom:425.146667pt;}
.y18{bottom:426.586667pt;}
.ybc{bottom:427.786667pt;}
.y6f{bottom:428.187067pt;}
.y1d{bottom:430.346667pt;}
.y66{bottom:430.427067pt;}
.yae{bottom:435.786667pt;}
.y9c{bottom:439.386667pt;}
.y8a{bottom:443.786667pt;}
.yc6{bottom:447.386667pt;}
.yd2{bottom:452.746667pt;}
.ybb{bottom:455.386667pt;}
.y8{bottom:456.186667pt;}
.y80{bottom:456.187200pt;}
.y4d{bottom:456.987067pt;}
.y36{bottom:458.346667pt;}
.y65{bottom:461.227067pt;}
.y2a{bottom:463.386667pt;}
.y6e{bottom:464.987067pt;}
.y1c{bottom:467.146667pt;}
.y17{bottom:469.386667pt;}
.y9b{bottom:474.986667pt;}
.y89{bottom:479.386667pt;}
.yd1{bottom:480.346667pt;}
.yba{bottom:482.986667pt;}
.y35{bottom:489.146667pt;}
.yad{bottom:490.986667pt;}
.y7f{bottom:492.987067pt;}
.y4c{bottom:493.787067pt;}
.y64{bottom:498.027067pt;}
.y29{bottom:500.186667pt;}
.y6d{bottom:501.787067pt;}
.y9a{bottom:502.586667pt;}
.y7{bottom:503.946667pt;}
.y16{bottom:506.186667pt;}
.y88{bottom:506.986667pt;}
.yb9{bottom:510.586667pt;}
.yac{bottom:518.586667pt;}
.y7e{bottom:523.787067pt;}
.y99{bottom:530.186667pt;}
.y34{bottom:531.946667pt;}
.y87{bottom:534.586667pt;}
.y63{bottom:534.827067pt;}
.y28{bottom:536.906667pt;}
.yb8{bottom:538.186667pt;}
.y4b{bottom:538.587067pt;}
.y1b{bottom:540.746667pt;}
.y15{bottom:542.906667pt;}
.yab{bottom:546.186667pt;}
.y6{bottom:551.706667pt;}
.y98{bottom:565.786667pt;}
.y7d{bottom:566.587067pt;}
.y33{bottom:568.746667pt;}
.y86{bottom:570.186667pt;}
.y62{bottom:571.627067pt;}
.y27{bottom:573.706667pt;}
.yaa{bottom:573.786667pt;}
.y4a{bottom:575.387067pt;}
.y14{bottom:579.706667pt;}
.y1a{bottom:588.506667pt;}
.y97{bottom:593.386667pt;}
.y5{bottom:599.546667pt;}
.ya9{bottom:601.386667pt;}
.y7c{bottom:603.387067pt;}
.y61{bottom:608.427067pt;}
.y85{bottom:608.826667pt;}
.y26{bottom:610.506667pt;}
.y49{bottom:612.187067pt;}
.y13{bottom:616.506667pt;}
.y96{bottom:620.986667pt;}
.ya8{bottom:628.986667pt;}
.y19{bottom:636.346667pt;}
.y84{bottom:636.426667pt;}
.y7b{bottom:640.187067pt;}
.y60{bottom:645.227067pt;}
.y4{bottom:647.306667pt;}
.yb7{bottom:648.586667pt;}
.y48{bottom:648.987067pt;}
.y95{bottom:656.586667pt;}
.y7a{bottom:676.987067pt;}
.y5f{bottom:682.027067pt;}
.y3{bottom:684.106667pt;}
.y83{bottom:684.186667pt;}
.y47{bottom:685.787067pt;}
.y12{bottom:690.106667pt;}
.y79{bottom:718.827067pt;}
.y46{bottom:722.587067pt;}
.y5e{bottom:724.827200pt;}
.y5d{bottom:755.627067pt;}
.y45{bottom:759.387067pt;}
.y5c{bottom:792.427067pt;}
.y44{bottom:796.187067pt;}
.y5b{bottom:829.227067pt;}
.y43{bottom:832.987067pt;}
.y5a{bottom:865.947067pt;}
.y42{bottom:880.747067pt;}
.y59{bottom:902.747067pt;}
.y41{bottom:928.587067pt;}
.y78{bottom:939.547067pt;}
.y58{bottom:945.547067pt;}
.y40{bottom:976.347067pt;}
.y57{bottom:976.347200pt;}
.y3f{bottom:1013.147067pt;}
.y56{bottom:1019.147200pt;}
.hd{height:29.488594pt;}
.h4{height:29.571719pt;}
.hc{height:43.375000pt;}
.h2{height:44.468750pt;}
.he{height:46.250000pt;}
.hf{height:49.312500pt;}
.h8{height:50.990937pt;}
.h7{height:53.571185pt;}
.h3{height:53.571719pt;}
.h6{height:53.572252pt;}
.ha{height:76.468750pt;}
.hb{height:99.508750pt;}
.h9{height:154.868750pt;}
.h1{height:793.333333pt;}
.h0{height:793.626667pt;}
.h5{height:1122.666667pt;}
.w2{width:793.333333pt;}
.w1{width:793.626667pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2{left:75.587333pt;}
.x5{left:80.227333pt;}
.xb{left:82.787333pt;}
.x7{left:89.987333pt;}
.x6{left:94.547467pt;}
.x12{left:95.907333pt;}
.x9{left:101.760000pt;}
.x4{left:169.907333pt;}
.x13{left:187.027333pt;}
.x3{left:455.107333pt;}
.xc{left:660.707333pt;}
.x8{left:691.200000pt;}
.x14{left:739.586253pt;}
.xd{left:754.387333pt;}
.xe{left:760.547333pt;}
.x17{left:779.027344pt;}
.xf{left:833.747333pt;}
.x10{left:858.547333pt;}
.x11{left:928.387333pt;}
.x15{left:1001.987333pt;}
.x16{left:1007.747333pt;}
.xa{left:1012.067333pt;}
.x1{left:1019.987333pt;}
}




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