
    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_f22a7e20dfd98043840c9e63.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_ad068702b021ede325b4fdf7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e926c52fe8fd05db7f2bd255.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675781;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_f57e5b6a7c549f935e63d470.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825195;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_93d7268b532ff2325044c6db.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.862793;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_8529ce455f5d73ba836a97fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_956e9cbbf5983934c8ba2fa1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c299ee8eea75cd25eef3088e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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_a18e4e558228b42d715d4bf8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.854980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_2d15a8bb16e97758316e9b20.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.854980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d8f529026c196534a042ba94.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.096680;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4a39bf3208830f39d1f5c557.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.674316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c5ea5f9308b24c725ea46a07.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.821289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_117efc673d5904c618d9267d.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_5203465977c3d8125b961d7a.woff2')format("woff");}.fff{font-family:fff;line-height:0.821289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_49cb0546ab1de1372067f21e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.821289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_1b15f8a6f40ae00537109f53.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.821289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_13d3597670f0d99d1fe017b1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_9d15f0706ac577041b46c701.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.821289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_2e50a2241cd6ee0135267196.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.821289;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:ff15;src:url('chunks/assets/font_4950c25d84062ca4a399b6be.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.821289;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:ff16;src:url('chunks/assets/font_5d5d35b3e32cde0270eb48e2.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.821289;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:ff17;src:url('chunks/assets/font_a293ebe06dc0fb276cdbe1c4.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.919434;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:ff18;src:url('chunks/assets/font_bbe5746be74e0b406808cb60.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.821289;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);}
.v2{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.v3{vertical-align:144.000000px;}
.ls2{letter-spacing:-7.548000px;}
.lsd{letter-spacing:-6.444000px;}
.ls8{letter-spacing:-5.388000px;}
.ls13{letter-spacing:-5.370000px;}
.ls16{letter-spacing:-5.364000px;}
.ls7{letter-spacing:-5.358000px;}
.ls9{letter-spacing:-5.352000px;}
.ls15{letter-spacing:-5.346000px;}
.lsc{letter-spacing:-5.334000px;}
.ls17{letter-spacing:-5.328000px;}
.lsa{letter-spacing:-5.154000px;}
.ls10{letter-spacing:-4.692000px;}
.lsf{letter-spacing:-4.524000px;}
.lsb{letter-spacing:-4.518000px;}
.ls14{letter-spacing:-4.506000px;}
.lse{letter-spacing:-4.488000px;}
.ls3{letter-spacing:-3.240000px;}
.ls11{letter-spacing:-1.080000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.030000px;}
.ls6{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.120768px;}
.ls0{letter-spacing:0.300000px;}
.ls12{letter-spacing:9.015600px;}
.ls18{letter-spacing:9.702000px;}
.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;}
}
.ws1{word-spacing:-32.208000px;}
.ws2{word-spacing:-21.696000px;}
.wsfd{word-spacing:-17.160000px;}
.ws39{word-spacing:-14.520000px;}
.ws0{word-spacing:-13.560000px;}
.ws7{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.200000px;}
.ws8d{word-spacing:-12.120000px;}
.ws58{word-spacing:-10.002000px;}
.ws81{word-spacing:-9.996000px;}
.ws6{word-spacing:-9.960000px;}
.ws3{word-spacing:-9.234720px;}
.ws4{word-spacing:-8.465160px;}
.wsf4{word-spacing:-5.544000px;}
.wse2{word-spacing:-5.346000px;}
.wse3{word-spacing:-5.280000px;}
.ws6e{word-spacing:-5.148000px;}
.wsb5{word-spacing:-4.686000px;}
.ws2b{word-spacing:-4.554000px;}
.ws38{word-spacing:-4.290000px;}
.wsbe{word-spacing:-4.248000px;}
.wsbf{word-spacing:-4.236000px;}
.wsc0{word-spacing:-4.152000px;}
.ws29{word-spacing:-4.092000px;}
.ws4f{word-spacing:-3.894000px;}
.wsb4{word-spacing:-3.762000px;}
.wsf7{word-spacing:-3.696000px;}
.wsc5{word-spacing:-3.582000px;}
.ws70{word-spacing:-3.564000px;}
.wsca{word-spacing:-3.558000px;}
.wsc8{word-spacing:-3.552000px;}
.wsc4{word-spacing:-3.540000px;}
.wsc7{word-spacing:-3.534000px;}
.wscb{word-spacing:-3.528000px;}
.wsc6{word-spacing:-3.498000px;}
.wsc9{word-spacing:-3.444000px;}
.wsbc{word-spacing:-3.300000px;}
.wsea{word-spacing:-3.168000px;}
.ws69{word-spacing:-3.102000px;}
.wsfc{word-spacing:-2.904000px;}
.wse{word-spacing:-2.760000px;}
.wse1{word-spacing:-2.706000px;}
.wse0{word-spacing:-2.574000px;}
.wsc2{word-spacing:-2.568000px;}
.ws20{word-spacing:-2.508000px;}
.wsc3{word-spacing:-2.466000px;}
.ws1d{word-spacing:-2.442000px;}
.ws6a{word-spacing:-2.376000px;}
.ws3a{word-spacing:-2.310000px;}
.wsdc{word-spacing:-2.244000px;}
.wsbb{word-spacing:-2.178000px;}
.ws40{word-spacing:-2.112000px;}
.wsc1{word-spacing:-2.106000px;}
.ws1e{word-spacing:-2.046000px;}
.ws66{word-spacing:-1.980000px;}
.ws64{word-spacing:-1.914000px;}
.ws95{word-spacing:-1.848000px;}
.wsaa{word-spacing:-1.716000px;}
.ws42{word-spacing:-1.584000px;}
.ws1b{word-spacing:-1.518000px;}
.ws62{word-spacing:-1.452000px;}
.ws22{word-spacing:-1.386000px;}
.ws6d{word-spacing:-1.320000px;}
.wse9{word-spacing:-1.254000px;}
.ws54{word-spacing:-1.188000px;}
.wsd6{word-spacing:-1.164000px;}
.wsd3{word-spacing:-1.122000px;}
.wsd5{word-spacing:-1.080000px;}
.wsd4{word-spacing:-1.074000px;}
.wse8{word-spacing:-1.056000px;}
.wsd7{word-spacing:-1.044000px;}
.wsb0{word-spacing:-0.990000px;}
.ws99{word-spacing:-0.924000px;}
.ws92{word-spacing:-0.858000px;}
.ws18{word-spacing:-0.792000px;}
.ws72{word-spacing:-0.726000px;}
.wsd8{word-spacing:-0.714000px;}
.wsda{word-spacing:-0.702000px;}
.ws28{word-spacing:-0.660000px;}
.wsd9{word-spacing:-0.618000px;}
.ws98{word-spacing:-0.594000px;}
.wscf{word-spacing:-0.474000px;}
.wsd0{word-spacing:-0.468000px;}
.ws61{word-spacing:-0.462000px;}
.wscc{word-spacing:-0.438000px;}
.wsce{word-spacing:-0.426000px;}
.ws26{word-spacing:-0.396000px;}
.wscd{word-spacing:-0.342000px;}
.ws2a{word-spacing:-0.330000px;}
.ws1a{word-spacing:-0.264000px;}
.ws7c{word-spacing:-0.198000px;}
.ws93{word-spacing:-0.132000px;}
.wse7{word-spacing:-0.066000px;}
.ws6b{word-spacing:-0.018000px;}
.wsa{word-spacing:-0.012000px;}
.ws9{word-spacing:-0.006000px;}
.ws8{word-spacing:0.000000px;}
.ws12{word-spacing:0.066000px;}
.ws4b{word-spacing:0.132000px;}
.wsf3{word-spacing:0.198000px;}
.wsf6{word-spacing:0.264000px;}
.ws3b{word-spacing:0.330000px;}
.wsaf{word-spacing:0.396000px;}
.ws67{word-spacing:0.462000px;}
.ws11{word-spacing:0.480000px;}
.ws34{word-spacing:0.528000px;}
.ws2d{word-spacing:0.594000px;}
.wsf5{word-spacing:0.660000px;}
.ws16{word-spacing:0.726000px;}
.ws4d{word-spacing:0.858000px;}
.ws7f{word-spacing:0.924000px;}
.wsa9{word-spacing:0.990000px;}
.ws73{word-spacing:1.056000px;}
.ws21{word-spacing:1.122000px;}
.ws27{word-spacing:1.188000px;}
.wsf{word-spacing:1.200000px;}
.ws9a{word-spacing:1.236000px;}
.ws9d{word-spacing:1.248000px;}
.ws9c{word-spacing:1.260000px;}
.ws9b{word-spacing:1.266000px;}
.wsb2{word-spacing:1.320000px;}
.wsb3{word-spacing:1.350000px;}
.wsb1{word-spacing:1.386000px;}
.ws75{word-spacing:1.452000px;}
.ws10{word-spacing:1.500000px;}
.wsb9{word-spacing:1.518000px;}
.wsab{word-spacing:1.584000px;}
.wsc{word-spacing:1.620000px;}
.ws7b{word-spacing:1.716000px;}
.ws4a{word-spacing:1.782000px;}
.wsbd{word-spacing:1.848000px;}
.ws53{word-spacing:1.914000px;}
.ws15{word-spacing:1.980000px;}
.wsd1{word-spacing:2.040000px;}
.ws71{word-spacing:2.046000px;}
.wsd2{word-spacing:2.058000px;}
.ws36{word-spacing:2.112000px;}
.ws76{word-spacing:2.178000px;}
.ws65{word-spacing:2.244000px;}
.ws96{word-spacing:2.310000px;}
.ws74{word-spacing:2.376000px;}
.wsdd{word-spacing:2.442000px;}
.ws77{word-spacing:2.508000px;}
.wsf8{word-spacing:2.574000px;}
.wsed{word-spacing:2.640000px;}
.wsef{word-spacing:2.706000px;}
.wse6{word-spacing:2.772000px;}
.ws35{word-spacing:2.838000px;}
.ws97{word-spacing:2.904000px;}
.ws63{word-spacing:3.036000px;}
.ws5d{word-spacing:3.120000px;}
.ws5c{word-spacing:3.138000px;}
.ws5a{word-spacing:3.168000px;}
.ws5b{word-spacing:3.210000px;}
.ws59{word-spacing:3.216000px;}
.ws43{word-spacing:3.234000px;}
.wseb{word-spacing:3.300000px;}
.wsb7{word-spacing:3.366000px;}
.ws2c{word-spacing:3.432000px;}
.ws17{word-spacing:3.498000px;}
.ws3e{word-spacing:3.564000px;}
.ws3d{word-spacing:3.696000px;}
.ws3c{word-spacing:3.732000px;}
.wse5{word-spacing:3.762000px;}
.wsee{word-spacing:3.828000px;}
.ws24{word-spacing:3.894000px;}
.ws32{word-spacing:3.960000px;}
.ws94{word-spacing:4.026000px;}
.wsac{word-spacing:4.092000px;}
.ws4e{word-spacing:4.158000px;}
.ws9e{word-spacing:4.224000px;}
.ws7e{word-spacing:4.290000px;}
.ws3f{word-spacing:4.356000px;}
.ws2f{word-spacing:4.488000px;}
.wsf1{word-spacing:4.554000px;}
.ws44{word-spacing:4.686000px;}
.ws6c{word-spacing:4.752000px;}
.ws23{word-spacing:4.818000px;}
.wsd{word-spacing:4.860000px;}
.ws56{word-spacing:4.884000px;}
.ws78{word-spacing:4.950000px;}
.ws14{word-spacing:5.082000px;}
.ws47{word-spacing:5.280000px;}
.ws37{word-spacing:5.346000px;}
.ws50{word-spacing:5.478000px;}
.ws33{word-spacing:5.544000px;}
.wsfe{word-spacing:5.610000px;}
.wsf2{word-spacing:5.676000px;}
.ws49{word-spacing:5.742000px;}
.ws5e{word-spacing:5.808000px;}
.ws41{word-spacing:5.940000px;}
.ws48{word-spacing:6.006000px;}
.ws1c{word-spacing:6.072000px;}
.ws52{word-spacing:6.138000px;}
.ws68{word-spacing:6.204000px;}
.wsae{word-spacing:6.270000px;}
.ws80{word-spacing:6.534000px;}
.ws60{word-spacing:6.600000px;}
.ws31{word-spacing:6.732000px;}
.ws79{word-spacing:6.930000px;}
.wsba{word-spacing:6.996000px;}
.ws7d{word-spacing:7.062000px;}
.ws51{word-spacing:7.194000px;}
.wsf9{word-spacing:7.458000px;}
.ws100{word-spacing:7.656000px;}
.wsdf{word-spacing:7.854000px;}
.ws55{word-spacing:7.920000px;}
.wsb6{word-spacing:7.986000px;}
.wsf0{word-spacing:8.052000px;}
.wsad{word-spacing:8.118000px;}
.ws57{word-spacing:8.184000px;}
.ws25{word-spacing:8.316000px;}
.ws45{word-spacing:8.382000px;}
.wsb8{word-spacing:8.514000px;}
.ws1f{word-spacing:8.646000px;}
.ws19{word-spacing:8.778000px;}
.wsde{word-spacing:8.976000px;}
.ws2e{word-spacing:9.042000px;}
.ws6f{word-spacing:9.702000px;}
.wse4{word-spacing:9.834000px;}
.ws46{word-spacing:9.966000px;}
.wsfb{word-spacing:10.560000px;}
.wsec{word-spacing:11.154000px;}
.ws7a{word-spacing:11.286000px;}
.ws30{word-spacing:11.418000px;}
.ws101{word-spacing:11.484000px;}
.ws5f{word-spacing:11.550000px;}
.ws4c{word-spacing:11.946000px;}
.wsff{word-spacing:12.276000px;}
.wsb{word-spacing:13.560000px;}
.ws13{word-spacing:13.926000px;}
.wsfa{word-spacing:15.444000px;}
.wsdb{word-spacing:43.386000px;}
.ws90{word-spacing:112.842000px;}
.ws8c{word-spacing:118.128000px;}
.ws91{word-spacing:130.656000px;}
.wsa0{word-spacing:132.408000px;}
.ws8e{word-spacing:135.636000px;}
.ws8a{word-spacing:143.544000px;}
.ws85{word-spacing:153.060000px;}
.wsa3{word-spacing:156.522000px;}
.ws89{word-spacing:163.794000px;}
.ws8f{word-spacing:166.020000px;}
.wsa4{word-spacing:174.336000px;}
.ws86{word-spacing:177.120000px;}
.wsa1{word-spacing:179.316000px;}
.wsa2{word-spacing:180.300000px;}
.wsa6{word-spacing:182.658000px;}
.ws87{word-spacing:194.958000px;}
.ws84{word-spacing:197.340000px;}
.wsa7{word-spacing:205.038000px;}
.ws88{word-spacing:213.366000px;}
.ws82{word-spacing:228.738000px;}
.ws83{word-spacing:267.048000px;}
.ws8b{word-spacing:269.658000px;}
.wsa8{word-spacing:280.728000px;}
.ws9f{word-spacing:313.338000px;}
.wsa5{word-spacing:658.134000px;}
._b{margin-left:-8.148000px;}
._3{margin-left:-6.132024px;}
._29{margin-left:-5.059200px;}
._0{margin-left:-4.056000px;}
._2{margin-left:-2.772000px;}
._1{margin-left:-1.338000px;}
._5{width:1.044000px;}
._4{width:3.276000px;}
._28{width:57.906000px;}
._23{width:120.222000px;}
._f{width:133.158000px;}
._12{width:136.398000px;}
._22{width:144.552000px;}
._20{width:149.748000px;}
._e{width:150.900000px;}
._7{width:159.900000px;}
._13{width:161.760000px;}
._d{width:164.988000px;}
._9{width:170.178000px;}
._19{width:179.556000px;}
._14{width:181.872000px;}
._10{width:186.678000px;}
._17{width:194.958000px;}
._a{width:196.032000px;}
._6{width:198.768000px;}
._11{width:201.540000px;}
._18{width:206.040000px;}
._1a{width:212.700000px;}
._8{width:220.398000px;}
._26{width:223.860000px;}
._1d{width:238.638000px;}
._21{width:258.000000px;}
._c{width:270.918000px;}
._27{width:282.240000px;}
._25{width:322.140000px;}
._1e{width:335.280000px;}
._24{width:336.780000px;}
._1f{width:389.118000px;}
._15{width:410.370000px;}
._1b{width:612.870000px;}
._16{width:960.732000px;}
._1c{width:1177.512000px;}
.fc2{color:rgb(127,69,31);}
.fc4{color:rgb(51,51,51);}
.fc3{color:rgb(5,5,5);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:38.478000px;}
.fs5{font-size:41.976000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs8{font-size:282.052800px;}
.y0{bottom:0.000000px;}
.yb0{bottom:96.317250px;}
.y11f{bottom:97.918200px;}
.yd5{bottom:98.283150px;}
.y5b{bottom:98.463750px;}
.y93{bottom:107.305950px;}
.y1a7{bottom:110.265150px;}
.y140{bottom:110.314650px;}
.y17a{bottom:110.319150px;}
.yaf{bottom:114.318750px;}
.y11e{bottom:115.919700px;}
.yd4{bottom:116.284650px;}
.y5a{bottom:116.465250px;}
.y92{bottom:125.307450px;}
.y1a6{bottom:128.266650px;}
.y13f{bottom:128.316150px;}
.y179{bottom:128.320650px;}
.yae{bottom:132.320250px;}
.y11d{bottom:133.921200px;}
.yd3{bottom:134.286150px;}
.y59{bottom:134.466750px;}
.y1a5{bottom:146.268150px;}
.y13e{bottom:146.317650px;}
.y178{bottom:146.322150px;}
.yad{bottom:150.321750px;}
.y91{bottom:151.811400px;}
.y11c{bottom:151.922700px;}
.yf1{bottom:151.947450px;}
.yd2{bottom:152.287650px;}
.y58{bottom:152.468250px;}
.y1a4{bottom:164.269650px;}
.y13d{bottom:164.319150px;}
.y177{bottom:164.323650px;}
.yac{bottom:168.323250px;}
.y11b{bottom:169.924200px;}
.yd1{bottom:170.289150px;}
.y57{bottom:170.469750px;}
.y90{bottom:181.282350px;}
.y1a3{bottom:182.271150px;}
.y13c{bottom:182.320650px;}
.y176{bottom:182.325150px;}
.y4{bottom:186.138000px;}
.y11a{bottom:187.925700px;}
.yd0{bottom:188.290650px;}
.y56{bottom:188.471250px;}
.yf0{bottom:188.592450px;}
.y8f{bottom:199.283850px;}
.y1a2{bottom:200.272650px;}
.y13b{bottom:200.322150px;}
.y175{bottom:200.326650px;}
.yab{bottom:201.323250px;}
.y119{bottom:205.927200px;}
.ycf{bottom:206.292150px;}
.y55{bottom:206.472750px;}
.y3{bottom:210.726000px;}
.yef{bottom:212.217450px;}
.y8e{bottom:217.285350px;}
.y1a1{bottom:218.274150px;}
.y13a{bottom:218.323650px;}
.y174{bottom:218.328150px;}
.y118{bottom:223.928700px;}
.yce{bottom:224.293650px;}
.y54{bottom:224.474250px;}
.y8d{bottom:235.286850px;}
.yee{bottom:235.842450px;}
.y1a0{bottom:236.275650px;}
.y139{bottom:236.325150px;}
.y173{bottom:236.329650px;}
.y117{bottom:241.930200px;}
.ycd{bottom:242.295150px;}
.y53{bottom:242.475750px;}
.y8c{bottom:253.288350px;}
.y19f{bottom:254.277150px;}
.y138{bottom:254.326650px;}
.y172{bottom:254.331150px;}
.yed{bottom:259.467450px;}
.y116{bottom:259.931700px;}
.ycc{bottom:260.296650px;}
.y52{bottom:260.477250px;}
.y8b{bottom:271.289850px;}
.y19e{bottom:272.278650px;}
.y137{bottom:272.328150px;}
.y171{bottom:272.331150px;}
.y115{bottom:277.933200px;}
.ycb{bottom:278.298150px;}
.y51{bottom:278.478750px;}
.yec{bottom:283.092450px;}
.y8a{bottom:289.291350px;}
.y19d{bottom:290.280150px;}
.y136{bottom:290.329650px;}
.y170{bottom:290.331150px;}
.y114{bottom:295.934700px;}
.yca{bottom:296.299650px;}
.y50{bottom:296.480250px;}
.y89{bottom:307.292850px;}
.y19c{bottom:308.281650px;}
.y135{bottom:308.331150px;}
.y113{bottom:313.936200px;}
.yc9{bottom:314.301150px;}
.y4f{bottom:314.481750px;}
.y1d{bottom:315.710250px;}
.y88{bottom:325.294350px;}
.y19b{bottom:326.283150px;}
.y134{bottom:326.330700px;}
.y16f{bottom:326.331150px;}
.y112{bottom:331.937700px;}
.yc8{bottom:332.302650px;}
.y4e{bottom:332.483250px;}
.y1c{bottom:333.710250px;}
.yeb{bottom:342.287850px;}
.y87{bottom:343.295850px;}
.y16e{bottom:344.263650px;}
.y19a{bottom:344.284650px;}
.y133{bottom:344.330700px;}
.y111{bottom:349.939200px;}
.yc7{bottom:350.304150px;}
.y4d{bottom:350.484750px;}
.y1b{bottom:351.710250px;}
.y86{bottom:361.297350px;}
.y16d{bottom:362.265150px;}
.y199{bottom:362.286150px;}
.y132{bottom:362.330700px;}
.yea{bottom:365.788800px;}
.y110{bottom:367.940700px;}
.yc6{bottom:368.305650px;}
.y1a{bottom:369.710250px;}
.y4c{bottom:376.983750px;}
.y85{bottom:379.298850px;}
.y16c{bottom:380.266650px;}
.y198{bottom:380.287650px;}
.y131{bottom:380.330700px;}
.ye9{bottom:383.790300px;}
.y10f{bottom:385.942200px;}
.yc5{bottom:386.307150px;}
.y19{bottom:387.710250px;}
.y4b{bottom:394.985250px;}
.y1c9{bottom:396.284250px;}
.y84{bottom:397.300350px;}
.y16b{bottom:398.268150px;}
.y197{bottom:398.289150px;}
.y130{bottom:398.330700px;}
.ye8{bottom:401.791800px;}
.y10e{bottom:403.943700px;}
.yc4{bottom:404.308650px;}
.y18{bottom:405.710250px;}
.y4a{bottom:412.986750px;}
.y1c8{bottom:414.285750px;}
.y83{bottom:415.301850px;}
.y16a{bottom:416.269650px;}
.y196{bottom:416.290650px;}
.y12f{bottom:416.330700px;}
.y10d{bottom:421.945200px;}
.yc3{bottom:422.310150px;}
.y17{bottom:423.710250px;}
.ye7{bottom:428.301000px;}
.y1c7{bottom:432.287250px;}
.y82{bottom:433.303350px;}
.y169{bottom:434.271150px;}
.y195{bottom:434.292150px;}
.y12e{bottom:434.330700px;}
.y49{bottom:439.485750px;}
.y10c{bottom:439.946700px;}
.yc2{bottom:440.311650px;}
.y1ce{bottom:441.436650px;}
.y16{bottom:441.710250px;}
.y1c6{bottom:450.288750px;}
.y81{bottom:451.304850px;}
.y168{bottom:452.272650px;}
.y194{bottom:452.293650px;}
.y12d{bottom:452.330700px;}
.ye6{bottom:457.866000px;}
.y10b{bottom:457.948200px;}
.yc1{bottom:458.313150px;}
.y1cd{bottom:459.438150px;}
.y48{bottom:465.989700px;}
.y1c5{bottom:468.290250px;}
.y80{bottom:469.306350px;}
.y167{bottom:470.274150px;}
.y193{bottom:470.295150px;}
.y12c{bottom:470.330700px;}
.y2{bottom:471.935700px;}
.y10a{bottom:475.949700px;}
.yc0{bottom:476.314650px;}
.y1cc{bottom:477.439650px;}
.ye5{bottom:481.491000px;}
.y1c4{bottom:486.291750px;}
.y7f{bottom:487.307850px;}
.y166{bottom:488.275650px;}
.y192{bottom:488.296650px;}
.y12b{bottom:488.330700px;}
.y109{bottom:493.951200px;}
.ybf{bottom:494.316150px;}
.y47{bottom:495.441150px;}
.y1c3{bottom:504.293250px;}
.ye4{bottom:505.116000px;}
.y7e{bottom:505.309350px;}
.y165{bottom:506.277150px;}
.y191{bottom:506.298150px;}
.y12a{bottom:506.330700px;}
.ybe{bottom:512.317650px;}
.y46{bottom:513.442650px;}
.y108{bottom:520.456800px;}
.y1c2{bottom:522.294750px;}
.y7d{bottom:523.310850px;}
.y164{bottom:524.278650px;}
.y190{bottom:524.299650px;}
.y129{bottom:524.330700px;}
.ye3{bottom:528.741000px;}
.ybd{bottom:530.319150px;}
.y45{bottom:531.444150px;}
.y1c1{bottom:540.296250px;}
.y7c{bottom:541.312350px;}
.y163{bottom:542.280150px;}
.y18f{bottom:542.301150px;}
.y128{bottom:542.330700px;}
.ybc{bottom:548.320650px;}
.y44{bottom:549.445650px;}
.ye2{bottom:552.366000px;}
.y107{bottom:557.101800px;}
.y1c0{bottom:558.297750px;}
.y7b{bottom:559.313850px;}
.y162{bottom:560.281650px;}
.y18e{bottom:560.302650px;}
.y127{bottom:560.330700px;}
.yaa{bottom:561.323250px;}
.ybb{bottom:566.322150px;}
.y43{bottom:567.447150px;}
.y1bf{bottom:576.299250px;}
.y7a{bottom:577.315350px;}
.y161{bottom:578.283150px;}
.y18d{bottom:578.304150px;}
.y126{bottom:578.330700px;}
.y15{bottom:578.675250px;}
.y106{bottom:580.726800px;}
.yba{bottom:584.323650px;}
.y42{bottom:585.448650px;}
.y1be{bottom:594.300750px;}
.ya9{bottom:594.323700px;}
.y160{bottom:596.284650px;}
.y18c{bottom:596.305650px;}
.y125{bottom:596.330700px;}
.y14{bottom:596.675250px;}
.yb9{bottom:602.325150px;}
.y41{bottom:603.450150px;}
.y79{bottom:603.819300px;}
.y105{bottom:604.351800px;}
.ye1{bottom:611.559300px;}
.y1bd{bottom:612.302250px;}
.ya8{bottom:612.323700px;}
.y15f{bottom:614.286150px;}
.y18b{bottom:614.307150px;}
.y124{bottom:614.330700px;}
.y13{bottom:614.675250px;}
.yb8{bottom:620.326650px;}
.y40{bottom:621.451650px;}
.y104{bottom:627.976800px;}
.y1bc{bottom:630.303750px;}
.ya7{bottom:630.323700px;}
.y15e{bottom:632.287650px;}
.y18a{bottom:632.308650px;}
.y123{bottom:632.330700px;}
.y12{bottom:632.675250px;}
.y78{bottom:633.316200px;}
.yb7{bottom:638.328150px;}
.y3f{bottom:639.453150px;}
.ye0{bottom:643.569300px;}
.y1bb{bottom:648.305250px;}
.ya6{bottom:648.323700px;}
.y15d{bottom:650.289150px;}
.y189{bottom:650.310150px;}
.y122{bottom:650.330700px;}
.y11{bottom:650.675250px;}
.y77{bottom:651.317700px;}
.y103{bottom:651.601800px;}
.yb6{bottom:656.329650px;}
.y3e{bottom:657.454650px;}
.y1ba{bottom:666.306750px;}
.y15c{bottom:668.290650px;}
.y188{bottom:668.311650px;}
.y121{bottom:668.330700px;}
.y10{bottom:668.675250px;}
.y76{bottom:669.319200px;}
.ydf{bottom:671.131800px;}
.yb5{bottom:674.331150px;}
.ya5{bottom:674.827200px;}
.y3d{bottom:675.456150px;}
.y1b9{bottom:684.308250px;}
.y15b{bottom:686.292150px;}
.y187{bottom:686.313150px;}
.y120{bottom:686.330700px;}
.yf{bottom:686.675250px;}
.y75{bottom:687.320700px;}
.y3c{bottom:693.457650px;}
.yde{bottom:694.756800px;}
.y1b8{bottom:702.309750px;}
.y15a{bottom:704.293650px;}
.y186{bottom:704.314650px;}
.ya4{bottom:704.330700px;}
.y74{bottom:705.322200px;}
.yb4{bottom:707.331150px;}
.y102{bottom:710.794200px;}
.y3b{bottom:711.459150px;}
.y1{bottom:716.900700px;}
.ydd{bottom:718.381800px;}
.y1b7{bottom:720.311250px;}
.y159{bottom:722.295150px;}
.y185{bottom:722.316150px;}
.ya3{bottom:722.330700px;}
.y73{bottom:723.323700px;}
.y3a{bottom:729.460650px;}
.y1b6{bottom:738.312750px;}
.y158{bottom:740.296650px;}
.y184{bottom:740.317650px;}
.ya2{bottom:740.330700px;}
.ydc{bottom:742.006800px;}
.y101{bottom:742.804200px;}
.y39{bottom:747.462150px;}
.y72{bottom:749.822700px;}
.y1b5{bottom:756.314250px;}
.y157{bottom:758.298150px;}
.y183{bottom:758.319150px;}
.ya1{bottom:758.330700px;}
.y38{bottom:765.463650px;}
.ydb{bottom:765.631800px;}
.y71{bottom:767.824200px;}
.y1b4{bottom:774.315750px;}
.ye{bottom:775.881000px;}
.y156{bottom:776.299650px;}
.y182{bottom:776.320650px;}
.ya0{bottom:776.330700px;}
.y100{bottom:779.449200px;}
.y37{bottom:783.465150px;}
.y70{bottom:785.825700px;}
.yd{bottom:791.838000px;}
.y1b3{bottom:792.317250px;}
.y155{bottom:794.301150px;}
.y181{bottom:794.322150px;}
.y9f{bottom:794.330700px;}
.y36{bottom:801.466650px;}
.yff{bottom:803.074200px;}
.y6f{bottom:803.827200px;}
.yc{bottom:807.795000px;}
.y1b2{bottom:810.318750px;}
.y154{bottom:812.302650px;}
.y180{bottom:812.323650px;}
.y9e{bottom:812.330700px;}
.y35{bottom:819.468150px;}
.yb{bottom:824.035500px;}
.yda{bottom:824.827200px;}
.yfd{bottom:826.699200px;}
.y1b1{bottom:828.320250px;}
.y153{bottom:830.304150px;}
.y17f{bottom:830.325150px;}
.y6e{bottom:830.330700px;}
.y34{bottom:837.469650px;}
.yfe{bottom:844.699200px;}
.y1b0{bottom:846.321750px;}
.y152{bottom:848.305650px;}
.y17e{bottom:848.326650px;}
.y6d{bottom:848.330700px;}
.y33{bottom:855.471150px;}
.yfc{bottom:862.369200px;}
.y1af{bottom:864.323250px;}
.y151{bottom:866.307150px;}
.y17d{bottom:866.328150px;}
.y6c{bottom:866.330700px;}
.yd9{bottom:866.331000px;}
.y32{bottom:873.472650px;}
.y150{bottom:884.308650px;}
.y17c{bottom:884.329650px;}
.y6b{bottom:884.330700px;}
.yd8{bottom:884.331000px;}
.yfb{bottom:885.994200px;}
.ya{bottom:887.235000px;}
.y1ae{bottom:890.827200px;}
.y31{bottom:891.474150px;}
.y14f{bottom:902.310150px;}
.y6a{bottom:902.330700px;}
.yd7{bottom:902.331000px;}
.y17b{bottom:902.331150px;}
.y9{bottom:907.035000px;}
.y30{bottom:909.475650px;}
.y14e{bottom:920.311650px;}
.y1ad{bottom:920.323650px;}
.y69{bottom:920.330700px;}
.yd6{bottom:920.331000px;}
.y2f{bottom:927.477150px;}
.y14d{bottom:938.313150px;}
.y1ac{bottom:938.325150px;}
.y68{bottom:938.330700px;}
.y9d{bottom:938.331000px;}
.yfa{bottom:945.192450px;}
.y2e{bottom:945.478650px;}
.y8{bottom:952.494000px;}
.y14c{bottom:956.314650px;}
.y1ab{bottom:956.326650px;}
.y67{bottom:956.330700px;}
.y9c{bottom:956.331000px;}
.y2d{bottom:963.480150px;}
.y14b{bottom:974.316150px;}
.y1aa{bottom:974.328150px;}
.y66{bottom:974.330700px;}
.y9b{bottom:974.331000px;}
.y7{bottom:976.497000px;}
.yf9{bottom:977.202450px;}
.y2c{bottom:981.481650px;}
.yf7{bottom:989.757450px;}
.y14a{bottom:992.317650px;}
.y1a9{bottom:992.329650px;}
.y65{bottom:992.330700px;}
.y9a{bottom:992.331000px;}
.y2b{bottom:999.483150px;}
.y6{bottom:1007.362500px;}
.yf8{bottom:1007.757450px;}
.y149{bottom:1010.319150px;}
.y64{bottom:1010.330700px;}
.y99{bottom:1010.331000px;}
.y1a8{bottom:1010.331150px;}
.y2a{bottom:1017.484650px;}
.yf6{bottom:1025.427450px;}
.y148{bottom:1028.320650px;}
.y63{bottom:1028.330700px;}
.y98{bottom:1028.331000px;}
.y5{bottom:1034.362500px;}
.y29{bottom:1035.486150px;}
.y147{bottom:1046.322150px;}
.y62{bottom:1046.330700px;}
.y97{bottom:1046.331000px;}
.yf5{bottom:1049.052450px;}
.yb3{bottom:1049.331150px;}
.y28{bottom:1053.487650px;}
.y146{bottom:1064.323650px;}
.y61{bottom:1064.330700px;}
.y96{bottom:1064.331000px;}
.y27{bottom:1071.489150px;}
.yf4{bottom:1072.677450px;}
.y145{bottom:1082.325150px;}
.y60{bottom:1082.330700px;}
.y95{bottom:1082.331000px;}
.y26{bottom:1089.490650px;}
.y24{bottom:1089.493650px;}
.yf3{bottom:1096.302450px;}
.y144{bottom:1100.326650px;}
.y5f{bottom:1100.330700px;}
.y94{bottom:1100.331000px;}
.y25{bottom:1107.492150px;}
.y143{bottom:1118.328150px;}
.yb2{bottom:1118.330700px;}
.y5e{bottom:1118.331000px;}
.y1cb{bottom:1125.493650px;}
.y21{bottom:1134.828000px;}
.y142{bottom:1136.329650px;}
.yb1{bottom:1136.330700px;}
.y5d{bottom:1136.331000px;}
.y23{bottom:1151.997600px;}
.y20{bottom:1152.828000px;}
.y5c{bottom:1154.331000px;}
.y141{bottom:1154.331150px;}
.yf2{bottom:1155.497850px;}
.y1f{bottom:1170.828000px;}
.y1e{bottom:1188.828000px;}
.y1ca{bottom:1205.671200px;}
.y22{bottom:1205.671500px;}
.h8{height:35.449734px;}
.hb{height:41.015625px;}
.ha{height:43.066406px;}
.h6{height:45.181641px;}
.h11{height:46.277344px;}
.h3{height:47.373047px;}
.h2{height:49.482422px;}
.h9{height:52.207031px;}
.hc{height:52.675781px;}
.hf{height:57.427734px;}
.h10{height:57.943359px;}
.h7{height:62.648438px;}
.hd{height:68.478516px;}
.h5{height:69.275391px;}
.h4{height:79.171875px;}
.he{height:245.418989px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:49.121250px;}
.x12{left:51.024000px;}
.x1{left:53.149650px;}
.x10{left:74.395200px;}
.xa{left:78.252000px;}
.x28{left:80.149650px;}
.x9{left:92.932500px;}
.x11{left:95.670000px;}
.xf{left:106.619700px;}
.x2a{left:116.922150px;}
.x5{left:130.308000px;}
.x7{left:143.130000px;}
.xc{left:150.450000px;}
.x15{left:161.178750px;}
.x1b{left:178.868850px;}
.x22{left:211.107750px;}
.x1f{left:242.820600px;}
.x1d{left:245.685600px;}
.x1e{left:251.565600px;}
.xd{left:258.450000px;}
.x1c{left:262.170600px;}
.x21{left:265.662000px;}
.x20{left:273.118050px;}
.x19{left:281.648100px;}
.x17{left:284.513100px;}
.x18{left:290.393100px;}
.x16{left:300.983100px;}
.x29{left:304.802850px;}
.x2{left:318.904650px;}
.x27{left:327.947850px;}
.x13{left:332.897100px;}
.xb{left:336.682500px;}
.x1a{left:338.453850px;}
.x14{left:349.083750px;}
.x8{left:369.837000px;}
.x6{left:377.052000px;}
.x24{left:410.277750px;}
.x26{left:429.782850px;}
.x23{left:431.532750px;}
.x25{left:451.037850px;}
.x4{left:680.269500px;}
.x3{left:686.715000px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.v3{vertical-align:128.000000pt;}
.ls2{letter-spacing:-6.709333pt;}
.lsd{letter-spacing:-5.728000pt;}
.ls8{letter-spacing:-4.789333pt;}
.ls13{letter-spacing:-4.773333pt;}
.ls16{letter-spacing:-4.768000pt;}
.ls7{letter-spacing:-4.762667pt;}
.ls9{letter-spacing:-4.757333pt;}
.ls15{letter-spacing:-4.752000pt;}
.lsc{letter-spacing:-4.741333pt;}
.ls17{letter-spacing:-4.736000pt;}
.lsa{letter-spacing:-4.581333pt;}
.ls10{letter-spacing:-4.170667pt;}
.lsf{letter-spacing:-4.021333pt;}
.lsb{letter-spacing:-4.016000pt;}
.ls14{letter-spacing:-4.005333pt;}
.lse{letter-spacing:-3.989333pt;}
.ls3{letter-spacing:-2.880000pt;}
.ls11{letter-spacing:-0.960000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.026667pt;}
.ls6{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.107349pt;}
.ls0{letter-spacing:0.266667pt;}
.ls12{letter-spacing:8.013867pt;}
.ls18{letter-spacing:8.624000pt;}
.ws1{word-spacing:-28.629333pt;}
.ws2{word-spacing:-19.285333pt;}
.wsfd{word-spacing:-15.253333pt;}
.ws39{word-spacing:-12.906667pt;}
.ws0{word-spacing:-12.053333pt;}
.ws7{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.733333pt;}
.ws8d{word-spacing:-10.773333pt;}
.ws58{word-spacing:-8.890667pt;}
.ws81{word-spacing:-8.885333pt;}
.ws6{word-spacing:-8.853333pt;}
.ws3{word-spacing:-8.208640pt;}
.ws4{word-spacing:-7.524587pt;}
.wsf4{word-spacing:-4.928000pt;}
.wse2{word-spacing:-4.752000pt;}
.wse3{word-spacing:-4.693333pt;}
.ws6e{word-spacing:-4.576000pt;}
.wsb5{word-spacing:-4.165333pt;}
.ws2b{word-spacing:-4.048000pt;}
.ws38{word-spacing:-3.813333pt;}
.wsbe{word-spacing:-3.776000pt;}
.wsbf{word-spacing:-3.765333pt;}
.wsc0{word-spacing:-3.690667pt;}
.ws29{word-spacing:-3.637333pt;}
.ws4f{word-spacing:-3.461333pt;}
.wsb4{word-spacing:-3.344000pt;}
.wsf7{word-spacing:-3.285333pt;}
.wsc5{word-spacing:-3.184000pt;}
.ws70{word-spacing:-3.168000pt;}
.wsca{word-spacing:-3.162667pt;}
.wsc8{word-spacing:-3.157333pt;}
.wsc4{word-spacing:-3.146667pt;}
.wsc7{word-spacing:-3.141333pt;}
.wscb{word-spacing:-3.136000pt;}
.wsc6{word-spacing:-3.109333pt;}
.wsc9{word-spacing:-3.061333pt;}
.wsbc{word-spacing:-2.933333pt;}
.wsea{word-spacing:-2.816000pt;}
.ws69{word-spacing:-2.757333pt;}
.wsfc{word-spacing:-2.581333pt;}
.wse{word-spacing:-2.453333pt;}
.wse1{word-spacing:-2.405333pt;}
.wse0{word-spacing:-2.288000pt;}
.wsc2{word-spacing:-2.282667pt;}
.ws20{word-spacing:-2.229333pt;}
.wsc3{word-spacing:-2.192000pt;}
.ws1d{word-spacing:-2.170667pt;}
.ws6a{word-spacing:-2.112000pt;}
.ws3a{word-spacing:-2.053333pt;}
.wsdc{word-spacing:-1.994667pt;}
.wsbb{word-spacing:-1.936000pt;}
.ws40{word-spacing:-1.877333pt;}
.wsc1{word-spacing:-1.872000pt;}
.ws1e{word-spacing:-1.818667pt;}
.ws66{word-spacing:-1.760000pt;}
.ws64{word-spacing:-1.701333pt;}
.ws95{word-spacing:-1.642667pt;}
.wsaa{word-spacing:-1.525333pt;}
.ws42{word-spacing:-1.408000pt;}
.ws1b{word-spacing:-1.349333pt;}
.ws62{word-spacing:-1.290667pt;}
.ws22{word-spacing:-1.232000pt;}
.ws6d{word-spacing:-1.173333pt;}
.wse9{word-spacing:-1.114667pt;}
.ws54{word-spacing:-1.056000pt;}
.wsd6{word-spacing:-1.034667pt;}
.wsd3{word-spacing:-0.997333pt;}
.wsd5{word-spacing:-0.960000pt;}
.wsd4{word-spacing:-0.954667pt;}
.wse8{word-spacing:-0.938667pt;}
.wsd7{word-spacing:-0.928000pt;}
.wsb0{word-spacing:-0.880000pt;}
.ws99{word-spacing:-0.821333pt;}
.ws92{word-spacing:-0.762667pt;}
.ws18{word-spacing:-0.704000pt;}
.ws72{word-spacing:-0.645333pt;}
.wsd8{word-spacing:-0.634667pt;}
.wsda{word-spacing:-0.624000pt;}
.ws28{word-spacing:-0.586667pt;}
.wsd9{word-spacing:-0.549333pt;}
.ws98{word-spacing:-0.528000pt;}
.wscf{word-spacing:-0.421333pt;}
.wsd0{word-spacing:-0.416000pt;}
.ws61{word-spacing:-0.410667pt;}
.wscc{word-spacing:-0.389333pt;}
.wsce{word-spacing:-0.378667pt;}
.ws26{word-spacing:-0.352000pt;}
.wscd{word-spacing:-0.304000pt;}
.ws2a{word-spacing:-0.293333pt;}
.ws1a{word-spacing:-0.234667pt;}
.ws7c{word-spacing:-0.176000pt;}
.ws93{word-spacing:-0.117333pt;}
.wse7{word-spacing:-0.058667pt;}
.ws6b{word-spacing:-0.016000pt;}
.wsa{word-spacing:-0.010667pt;}
.ws9{word-spacing:-0.005333pt;}
.ws8{word-spacing:0.000000pt;}
.ws12{word-spacing:0.058667pt;}
.ws4b{word-spacing:0.117333pt;}
.wsf3{word-spacing:0.176000pt;}
.wsf6{word-spacing:0.234667pt;}
.ws3b{word-spacing:0.293333pt;}
.wsaf{word-spacing:0.352000pt;}
.ws67{word-spacing:0.410667pt;}
.ws11{word-spacing:0.426667pt;}
.ws34{word-spacing:0.469333pt;}
.ws2d{word-spacing:0.528000pt;}
.wsf5{word-spacing:0.586667pt;}
.ws16{word-spacing:0.645333pt;}
.ws4d{word-spacing:0.762667pt;}
.ws7f{word-spacing:0.821333pt;}
.wsa9{word-spacing:0.880000pt;}
.ws73{word-spacing:0.938667pt;}
.ws21{word-spacing:0.997333pt;}
.ws27{word-spacing:1.056000pt;}
.wsf{word-spacing:1.066667pt;}
.ws9a{word-spacing:1.098667pt;}
.ws9d{word-spacing:1.109333pt;}
.ws9c{word-spacing:1.120000pt;}
.ws9b{word-spacing:1.125333pt;}
.wsb2{word-spacing:1.173333pt;}
.wsb3{word-spacing:1.200000pt;}
.wsb1{word-spacing:1.232000pt;}
.ws75{word-spacing:1.290667pt;}
.ws10{word-spacing:1.333333pt;}
.wsb9{word-spacing:1.349333pt;}
.wsab{word-spacing:1.408000pt;}
.wsc{word-spacing:1.440000pt;}
.ws7b{word-spacing:1.525333pt;}
.ws4a{word-spacing:1.584000pt;}
.wsbd{word-spacing:1.642667pt;}
.ws53{word-spacing:1.701333pt;}
.ws15{word-spacing:1.760000pt;}
.wsd1{word-spacing:1.813333pt;}
.ws71{word-spacing:1.818667pt;}
.wsd2{word-spacing:1.829333pt;}
.ws36{word-spacing:1.877333pt;}
.ws76{word-spacing:1.936000pt;}
.ws65{word-spacing:1.994667pt;}
.ws96{word-spacing:2.053333pt;}
.ws74{word-spacing:2.112000pt;}
.wsdd{word-spacing:2.170667pt;}
.ws77{word-spacing:2.229333pt;}
.wsf8{word-spacing:2.288000pt;}
.wsed{word-spacing:2.346667pt;}
.wsef{word-spacing:2.405333pt;}
.wse6{word-spacing:2.464000pt;}
.ws35{word-spacing:2.522667pt;}
.ws97{word-spacing:2.581333pt;}
.ws63{word-spacing:2.698667pt;}
.ws5d{word-spacing:2.773333pt;}
.ws5c{word-spacing:2.789333pt;}
.ws5a{word-spacing:2.816000pt;}
.ws5b{word-spacing:2.853333pt;}
.ws59{word-spacing:2.858667pt;}
.ws43{word-spacing:2.874667pt;}
.wseb{word-spacing:2.933333pt;}
.wsb7{word-spacing:2.992000pt;}
.ws2c{word-spacing:3.050667pt;}
.ws17{word-spacing:3.109333pt;}
.ws3e{word-spacing:3.168000pt;}
.ws3d{word-spacing:3.285333pt;}
.ws3c{word-spacing:3.317333pt;}
.wse5{word-spacing:3.344000pt;}
.wsee{word-spacing:3.402667pt;}
.ws24{word-spacing:3.461333pt;}
.ws32{word-spacing:3.520000pt;}
.ws94{word-spacing:3.578667pt;}
.wsac{word-spacing:3.637333pt;}
.ws4e{word-spacing:3.696000pt;}
.ws9e{word-spacing:3.754667pt;}
.ws7e{word-spacing:3.813333pt;}
.ws3f{word-spacing:3.872000pt;}
.ws2f{word-spacing:3.989333pt;}
.wsf1{word-spacing:4.048000pt;}
.ws44{word-spacing:4.165333pt;}
.ws6c{word-spacing:4.224000pt;}
.ws23{word-spacing:4.282667pt;}
.wsd{word-spacing:4.320000pt;}
.ws56{word-spacing:4.341333pt;}
.ws78{word-spacing:4.400000pt;}
.ws14{word-spacing:4.517333pt;}
.ws47{word-spacing:4.693333pt;}
.ws37{word-spacing:4.752000pt;}
.ws50{word-spacing:4.869333pt;}
.ws33{word-spacing:4.928000pt;}
.wsfe{word-spacing:4.986667pt;}
.wsf2{word-spacing:5.045333pt;}
.ws49{word-spacing:5.104000pt;}
.ws5e{word-spacing:5.162667pt;}
.ws41{word-spacing:5.280000pt;}
.ws48{word-spacing:5.338667pt;}
.ws1c{word-spacing:5.397333pt;}
.ws52{word-spacing:5.456000pt;}
.ws68{word-spacing:5.514667pt;}
.wsae{word-spacing:5.573333pt;}
.ws80{word-spacing:5.808000pt;}
.ws60{word-spacing:5.866667pt;}
.ws31{word-spacing:5.984000pt;}
.ws79{word-spacing:6.160000pt;}
.wsba{word-spacing:6.218667pt;}
.ws7d{word-spacing:6.277333pt;}
.ws51{word-spacing:6.394667pt;}
.wsf9{word-spacing:6.629333pt;}
.ws100{word-spacing:6.805333pt;}
.wsdf{word-spacing:6.981333pt;}
.ws55{word-spacing:7.040000pt;}
.wsb6{word-spacing:7.098667pt;}
.wsf0{word-spacing:7.157333pt;}
.wsad{word-spacing:7.216000pt;}
.ws57{word-spacing:7.274667pt;}
.ws25{word-spacing:7.392000pt;}
.ws45{word-spacing:7.450667pt;}
.wsb8{word-spacing:7.568000pt;}
.ws1f{word-spacing:7.685333pt;}
.ws19{word-spacing:7.802667pt;}
.wsde{word-spacing:7.978667pt;}
.ws2e{word-spacing:8.037333pt;}
.ws6f{word-spacing:8.624000pt;}
.wse4{word-spacing:8.741333pt;}
.ws46{word-spacing:8.858667pt;}
.wsfb{word-spacing:9.386667pt;}
.wsec{word-spacing:9.914667pt;}
.ws7a{word-spacing:10.032000pt;}
.ws30{word-spacing:10.149333pt;}
.ws101{word-spacing:10.208000pt;}
.ws5f{word-spacing:10.266667pt;}
.ws4c{word-spacing:10.618667pt;}
.wsff{word-spacing:10.912000pt;}
.wsb{word-spacing:12.053333pt;}
.ws13{word-spacing:12.378667pt;}
.wsfa{word-spacing:13.728000pt;}
.wsdb{word-spacing:38.565333pt;}
.ws90{word-spacing:100.304000pt;}
.ws8c{word-spacing:105.002667pt;}
.ws91{word-spacing:116.138667pt;}
.wsa0{word-spacing:117.696000pt;}
.ws8e{word-spacing:120.565333pt;}
.ws8a{word-spacing:127.594667pt;}
.ws85{word-spacing:136.053333pt;}
.wsa3{word-spacing:139.130667pt;}
.ws89{word-spacing:145.594667pt;}
.ws8f{word-spacing:147.573333pt;}
.wsa4{word-spacing:154.965333pt;}
.ws86{word-spacing:157.440000pt;}
.wsa1{word-spacing:159.392000pt;}
.wsa2{word-spacing:160.266667pt;}
.wsa6{word-spacing:162.362667pt;}
.ws87{word-spacing:173.296000pt;}
.ws84{word-spacing:175.413333pt;}
.wsa7{word-spacing:182.256000pt;}
.ws88{word-spacing:189.658667pt;}
.ws82{word-spacing:203.322667pt;}
.ws83{word-spacing:237.376000pt;}
.ws8b{word-spacing:239.696000pt;}
.wsa8{word-spacing:249.536000pt;}
.ws9f{word-spacing:278.522667pt;}
.wsa5{word-spacing:585.008000pt;}
._b{margin-left:-7.242667pt;}
._3{margin-left:-5.450688pt;}
._29{margin-left:-4.497067pt;}
._0{margin-left:-3.605333pt;}
._2{margin-left:-2.464000pt;}
._1{margin-left:-1.189333pt;}
._5{width:0.928000pt;}
._4{width:2.912000pt;}
._28{width:51.472000pt;}
._23{width:106.864000pt;}
._f{width:118.362667pt;}
._12{width:121.242667pt;}
._22{width:128.490667pt;}
._20{width:133.109333pt;}
._e{width:134.133333pt;}
._7{width:142.133333pt;}
._13{width:143.786667pt;}
._d{width:146.656000pt;}
._9{width:151.269333pt;}
._19{width:159.605333pt;}
._14{width:161.664000pt;}
._10{width:165.936000pt;}
._17{width:173.296000pt;}
._a{width:174.250667pt;}
._6{width:176.682667pt;}
._11{width:179.146667pt;}
._18{width:183.146667pt;}
._1a{width:189.066667pt;}
._8{width:195.909333pt;}
._26{width:198.986667pt;}
._1d{width:212.122667pt;}
._21{width:229.333333pt;}
._c{width:240.816000pt;}
._27{width:250.880000pt;}
._25{width:286.346667pt;}
._1e{width:298.026667pt;}
._24{width:299.360000pt;}
._1f{width:345.882667pt;}
._15{width:364.773333pt;}
._1b{width:544.773333pt;}
._16{width:853.984000pt;}
._1c{width:1046.677333pt;}
.fs6{font-size:34.202667pt;}
.fs5{font-size:37.312000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs8{font-size:250.713600pt;}
.y0{bottom:0.000000pt;}
.yb0{bottom:85.615333pt;}
.y11f{bottom:87.038400pt;}
.yd5{bottom:87.362800pt;}
.y5b{bottom:87.523333pt;}
.y93{bottom:95.383067pt;}
.y1a7{bottom:98.013467pt;}
.y140{bottom:98.057467pt;}
.y17a{bottom:98.061467pt;}
.yaf{bottom:101.616667pt;}
.y11e{bottom:103.039733pt;}
.yd4{bottom:103.364133pt;}
.y5a{bottom:103.524667pt;}
.y92{bottom:111.384400pt;}
.y1a6{bottom:114.014800pt;}
.y13f{bottom:114.058800pt;}
.y179{bottom:114.062800pt;}
.yae{bottom:117.618000pt;}
.y11d{bottom:119.041067pt;}
.yd3{bottom:119.365467pt;}
.y59{bottom:119.526000pt;}
.y1a5{bottom:130.016133pt;}
.y13e{bottom:130.060133pt;}
.y178{bottom:130.064133pt;}
.yad{bottom:133.619333pt;}
.y91{bottom:134.943467pt;}
.y11c{bottom:135.042400pt;}
.yf1{bottom:135.064400pt;}
.yd2{bottom:135.366800pt;}
.y58{bottom:135.527333pt;}
.y1a4{bottom:146.017467pt;}
.y13d{bottom:146.061467pt;}
.y177{bottom:146.065467pt;}
.yac{bottom:149.620667pt;}
.y11b{bottom:151.043733pt;}
.yd1{bottom:151.368133pt;}
.y57{bottom:151.528667pt;}
.y90{bottom:161.139867pt;}
.y1a3{bottom:162.018800pt;}
.y13c{bottom:162.062800pt;}
.y176{bottom:162.066800pt;}
.y4{bottom:165.456000pt;}
.y11a{bottom:167.045067pt;}
.yd0{bottom:167.369467pt;}
.y56{bottom:167.530000pt;}
.yf0{bottom:167.637733pt;}
.y8f{bottom:177.141200pt;}
.y1a2{bottom:178.020133pt;}
.y13b{bottom:178.064133pt;}
.y175{bottom:178.068133pt;}
.yab{bottom:178.954000pt;}
.y119{bottom:183.046400pt;}
.ycf{bottom:183.370800pt;}
.y55{bottom:183.531333pt;}
.y3{bottom:187.312000pt;}
.yef{bottom:188.637733pt;}
.y8e{bottom:193.142533pt;}
.y1a1{bottom:194.021467pt;}
.y13a{bottom:194.065467pt;}
.y174{bottom:194.069467pt;}
.y118{bottom:199.047733pt;}
.yce{bottom:199.372133pt;}
.y54{bottom:199.532667pt;}
.y8d{bottom:209.143867pt;}
.yee{bottom:209.637733pt;}
.y1a0{bottom:210.022800pt;}
.y139{bottom:210.066800pt;}
.y173{bottom:210.070800pt;}
.y117{bottom:215.049067pt;}
.ycd{bottom:215.373467pt;}
.y53{bottom:215.534000pt;}
.y8c{bottom:225.145200pt;}
.y19f{bottom:226.024133pt;}
.y138{bottom:226.068133pt;}
.y172{bottom:226.072133pt;}
.yed{bottom:230.637733pt;}
.y116{bottom:231.050400pt;}
.ycc{bottom:231.374800pt;}
.y52{bottom:231.535333pt;}
.y8b{bottom:241.146533pt;}
.y19e{bottom:242.025467pt;}
.y137{bottom:242.069467pt;}
.y171{bottom:242.072133pt;}
.y115{bottom:247.051733pt;}
.ycb{bottom:247.376133pt;}
.y51{bottom:247.536667pt;}
.yec{bottom:251.637733pt;}
.y8a{bottom:257.147867pt;}
.y19d{bottom:258.026800pt;}
.y136{bottom:258.070800pt;}
.y170{bottom:258.072133pt;}
.y114{bottom:263.053067pt;}
.yca{bottom:263.377467pt;}
.y50{bottom:263.538000pt;}
.y89{bottom:273.149200pt;}
.y19c{bottom:274.028133pt;}
.y135{bottom:274.072133pt;}
.y113{bottom:279.054400pt;}
.yc9{bottom:279.378800pt;}
.y4f{bottom:279.539333pt;}
.y1d{bottom:280.631333pt;}
.y88{bottom:289.150533pt;}
.y19b{bottom:290.029467pt;}
.y134{bottom:290.071733pt;}
.y16f{bottom:290.072133pt;}
.y112{bottom:295.055733pt;}
.yc8{bottom:295.380133pt;}
.y4e{bottom:295.540667pt;}
.y1c{bottom:296.631333pt;}
.yeb{bottom:304.255867pt;}
.y87{bottom:305.151867pt;}
.y16e{bottom:306.012133pt;}
.y19a{bottom:306.030800pt;}
.y133{bottom:306.071733pt;}
.y111{bottom:311.057067pt;}
.yc7{bottom:311.381467pt;}
.y4d{bottom:311.542000pt;}
.y1b{bottom:312.631333pt;}
.y86{bottom:321.153200pt;}
.y16d{bottom:322.013467pt;}
.y199{bottom:322.032133pt;}
.y132{bottom:322.071733pt;}
.yea{bottom:325.145600pt;}
.y110{bottom:327.058400pt;}
.yc6{bottom:327.382800pt;}
.y1a{bottom:328.631333pt;}
.y4c{bottom:335.096667pt;}
.y85{bottom:337.154533pt;}
.y16c{bottom:338.014800pt;}
.y198{bottom:338.033467pt;}
.y131{bottom:338.071733pt;}
.ye9{bottom:341.146933pt;}
.y10f{bottom:343.059733pt;}
.yc5{bottom:343.384133pt;}
.y19{bottom:344.631333pt;}
.y4b{bottom:351.098000pt;}
.y1c9{bottom:352.252667pt;}
.y84{bottom:353.155867pt;}
.y16b{bottom:354.016133pt;}
.y197{bottom:354.034800pt;}
.y130{bottom:354.071733pt;}
.ye8{bottom:357.148267pt;}
.y10e{bottom:359.061067pt;}
.yc4{bottom:359.385467pt;}
.y18{bottom:360.631333pt;}
.y4a{bottom:367.099333pt;}
.y1c8{bottom:368.254000pt;}
.y83{bottom:369.157200pt;}
.y16a{bottom:370.017467pt;}
.y196{bottom:370.036133pt;}
.y12f{bottom:370.071733pt;}
.y10d{bottom:375.062400pt;}
.yc3{bottom:375.386800pt;}
.y17{bottom:376.631333pt;}
.ye7{bottom:380.712000pt;}
.y1c7{bottom:384.255333pt;}
.y82{bottom:385.158533pt;}
.y169{bottom:386.018800pt;}
.y195{bottom:386.037467pt;}
.y12e{bottom:386.071733pt;}
.y49{bottom:390.654000pt;}
.y10c{bottom:391.063733pt;}
.yc2{bottom:391.388133pt;}
.y1ce{bottom:392.388133pt;}
.y16{bottom:392.631333pt;}
.y1c6{bottom:400.256667pt;}
.y81{bottom:401.159867pt;}
.y168{bottom:402.020133pt;}
.y194{bottom:402.038800pt;}
.y12d{bottom:402.071733pt;}
.ye6{bottom:406.992000pt;}
.y10b{bottom:407.065067pt;}
.yc1{bottom:407.389467pt;}
.y1cd{bottom:408.389467pt;}
.y48{bottom:414.213067pt;}
.y1c5{bottom:416.258000pt;}
.y80{bottom:417.161200pt;}
.y167{bottom:418.021467pt;}
.y193{bottom:418.040133pt;}
.y12c{bottom:418.071733pt;}
.y2{bottom:419.498400pt;}
.y10a{bottom:423.066400pt;}
.yc0{bottom:423.390800pt;}
.y1cc{bottom:424.390800pt;}
.ye5{bottom:427.992000pt;}
.y1c4{bottom:432.259333pt;}
.y7f{bottom:433.162533pt;}
.y166{bottom:434.022800pt;}
.y192{bottom:434.041467pt;}
.y12b{bottom:434.071733pt;}
.y109{bottom:439.067733pt;}
.ybf{bottom:439.392133pt;}
.y47{bottom:440.392133pt;}
.y1c3{bottom:448.260667pt;}
.ye4{bottom:448.992000pt;}
.y7e{bottom:449.163867pt;}
.y165{bottom:450.024133pt;}
.y191{bottom:450.042800pt;}
.y12a{bottom:450.071733pt;}
.ybe{bottom:455.393467pt;}
.y46{bottom:456.393467pt;}
.y108{bottom:462.628267pt;}
.y1c2{bottom:464.262000pt;}
.y7d{bottom:465.165200pt;}
.y164{bottom:466.025467pt;}
.y190{bottom:466.044133pt;}
.y129{bottom:466.071733pt;}
.ye3{bottom:469.992000pt;}
.ybd{bottom:471.394800pt;}
.y45{bottom:472.394800pt;}
.y1c1{bottom:480.263333pt;}
.y7c{bottom:481.166533pt;}
.y163{bottom:482.026800pt;}
.y18f{bottom:482.045467pt;}
.y128{bottom:482.071733pt;}
.ybc{bottom:487.396133pt;}
.y44{bottom:488.396133pt;}
.ye2{bottom:490.992000pt;}
.y107{bottom:495.201600pt;}
.y1c0{bottom:496.264667pt;}
.y7b{bottom:497.167867pt;}
.y162{bottom:498.028133pt;}
.y18e{bottom:498.046800pt;}
.y127{bottom:498.071733pt;}
.yaa{bottom:498.954000pt;}
.ybb{bottom:503.397467pt;}
.y43{bottom:504.397467pt;}
.y1bf{bottom:512.266000pt;}
.y7a{bottom:513.169200pt;}
.y161{bottom:514.029467pt;}
.y18d{bottom:514.048133pt;}
.y126{bottom:514.071733pt;}
.y15{bottom:514.378000pt;}
.y106{bottom:516.201600pt;}
.yba{bottom:519.398800pt;}
.y42{bottom:520.398800pt;}
.y1be{bottom:528.267333pt;}
.ya9{bottom:528.287733pt;}
.y160{bottom:530.030800pt;}
.y18c{bottom:530.049467pt;}
.y125{bottom:530.071733pt;}
.y14{bottom:530.378000pt;}
.yb9{bottom:535.400133pt;}
.y41{bottom:536.400133pt;}
.y79{bottom:536.728267pt;}
.y105{bottom:537.201600pt;}
.ye1{bottom:543.608267pt;}
.y1bd{bottom:544.268667pt;}
.ya8{bottom:544.287733pt;}
.y15f{bottom:546.032133pt;}
.y18b{bottom:546.050800pt;}
.y124{bottom:546.071733pt;}
.y13{bottom:546.378000pt;}
.yb8{bottom:551.401467pt;}
.y40{bottom:552.401467pt;}
.y104{bottom:558.201600pt;}
.y1bc{bottom:560.270000pt;}
.ya7{bottom:560.287733pt;}
.y15e{bottom:562.033467pt;}
.y18a{bottom:562.052133pt;}
.y123{bottom:562.071733pt;}
.y12{bottom:562.378000pt;}
.y78{bottom:562.947733pt;}
.yb7{bottom:567.402800pt;}
.y3f{bottom:568.402800pt;}
.ye0{bottom:572.061600pt;}
.y1bb{bottom:576.271333pt;}
.ya6{bottom:576.287733pt;}
.y15d{bottom:578.034800pt;}
.y189{bottom:578.053467pt;}
.y122{bottom:578.071733pt;}
.y11{bottom:578.378000pt;}
.y77{bottom:578.949067pt;}
.y103{bottom:579.201600pt;}
.yb6{bottom:583.404133pt;}
.y3e{bottom:584.404133pt;}
.y1ba{bottom:592.272667pt;}
.y15c{bottom:594.036133pt;}
.y188{bottom:594.054800pt;}
.y121{bottom:594.071733pt;}
.y10{bottom:594.378000pt;}
.y76{bottom:594.950400pt;}
.ydf{bottom:596.561600pt;}
.yb5{bottom:599.405467pt;}
.ya5{bottom:599.846400pt;}
.y3d{bottom:600.405467pt;}
.y1b9{bottom:608.274000pt;}
.y15b{bottom:610.037467pt;}
.y187{bottom:610.056133pt;}
.y120{bottom:610.071733pt;}
.yf{bottom:610.378000pt;}
.y75{bottom:610.951733pt;}
.y3c{bottom:616.406800pt;}
.yde{bottom:617.561600pt;}
.y1b8{bottom:624.275333pt;}
.y15a{bottom:626.038800pt;}
.y186{bottom:626.057467pt;}
.ya4{bottom:626.071733pt;}
.y74{bottom:626.953067pt;}
.yb4{bottom:628.738800pt;}
.y102{bottom:631.817067pt;}
.y3b{bottom:632.408133pt;}
.y1{bottom:637.245067pt;}
.ydd{bottom:638.561600pt;}
.y1b7{bottom:640.276667pt;}
.y159{bottom:642.040133pt;}
.y185{bottom:642.058800pt;}
.ya3{bottom:642.071733pt;}
.y73{bottom:642.954400pt;}
.y3a{bottom:648.409467pt;}
.y1b6{bottom:656.278000pt;}
.y158{bottom:658.041467pt;}
.y184{bottom:658.060133pt;}
.ya2{bottom:658.071733pt;}
.ydc{bottom:659.561600pt;}
.y101{bottom:660.270400pt;}
.y39{bottom:664.410800pt;}
.y72{bottom:666.509067pt;}
.y1b5{bottom:672.279333pt;}
.y157{bottom:674.042800pt;}
.y183{bottom:674.061467pt;}
.ya1{bottom:674.071733pt;}
.y38{bottom:680.412133pt;}
.ydb{bottom:680.561600pt;}
.y71{bottom:682.510400pt;}
.y1b4{bottom:688.280667pt;}
.ye{bottom:689.672000pt;}
.y156{bottom:690.044133pt;}
.y182{bottom:690.062800pt;}
.ya0{bottom:690.071733pt;}
.y100{bottom:692.843733pt;}
.y37{bottom:696.413467pt;}
.y70{bottom:698.511733pt;}
.yd{bottom:703.856000pt;}
.y1b3{bottom:704.282000pt;}
.y155{bottom:706.045467pt;}
.y181{bottom:706.064133pt;}
.y9f{bottom:706.071733pt;}
.y36{bottom:712.414800pt;}
.yff{bottom:713.843733pt;}
.y6f{bottom:714.513067pt;}
.yc{bottom:718.040000pt;}
.y1b2{bottom:720.283333pt;}
.y154{bottom:722.046800pt;}
.y180{bottom:722.065467pt;}
.y9e{bottom:722.071733pt;}
.y35{bottom:728.416133pt;}
.yb{bottom:732.476000pt;}
.yda{bottom:733.179733pt;}
.yfd{bottom:734.843733pt;}
.y1b1{bottom:736.284667pt;}
.y153{bottom:738.048133pt;}
.y17f{bottom:738.066800pt;}
.y6e{bottom:738.071733pt;}
.y34{bottom:744.417467pt;}
.yfe{bottom:750.843733pt;}
.y1b0{bottom:752.286000pt;}
.y152{bottom:754.049467pt;}
.y17e{bottom:754.068133pt;}
.y6d{bottom:754.071733pt;}
.y33{bottom:760.418800pt;}
.yfc{bottom:766.550400pt;}
.y1af{bottom:768.287333pt;}
.y151{bottom:770.050800pt;}
.y17d{bottom:770.069467pt;}
.y6c{bottom:770.071733pt;}
.yd9{bottom:770.072000pt;}
.y32{bottom:776.420133pt;}
.y150{bottom:786.052133pt;}
.y17c{bottom:786.070800pt;}
.y6b{bottom:786.071733pt;}
.yd8{bottom:786.072000pt;}
.yfb{bottom:787.550400pt;}
.ya{bottom:788.653333pt;}
.y1ae{bottom:791.846400pt;}
.y31{bottom:792.421467pt;}
.y14f{bottom:802.053467pt;}
.y6a{bottom:802.071733pt;}
.yd7{bottom:802.072000pt;}
.y17b{bottom:802.072133pt;}
.y9{bottom:806.253333pt;}
.y30{bottom:808.422800pt;}
.y14e{bottom:818.054800pt;}
.y1ad{bottom:818.065467pt;}
.y69{bottom:818.071733pt;}
.yd6{bottom:818.072000pt;}
.y2f{bottom:824.424133pt;}
.y14d{bottom:834.056133pt;}
.y1ac{bottom:834.066800pt;}
.y68{bottom:834.071733pt;}
.y9d{bottom:834.072000pt;}
.yfa{bottom:840.171067pt;}
.y2e{bottom:840.425467pt;}
.y8{bottom:846.661333pt;}
.y14c{bottom:850.057467pt;}
.y1ab{bottom:850.068133pt;}
.y67{bottom:850.071733pt;}
.y9c{bottom:850.072000pt;}
.y2d{bottom:856.426800pt;}
.y14b{bottom:866.058800pt;}
.y1aa{bottom:866.069467pt;}
.y66{bottom:866.071733pt;}
.y9b{bottom:866.072000pt;}
.y7{bottom:867.997333pt;}
.yf9{bottom:868.624400pt;}
.y2c{bottom:872.428133pt;}
.yf7{bottom:879.784400pt;}
.y14a{bottom:882.060133pt;}
.y1a9{bottom:882.070800pt;}
.y65{bottom:882.071733pt;}
.y9a{bottom:882.072000pt;}
.y2b{bottom:888.429467pt;}
.y6{bottom:895.433333pt;}
.yf8{bottom:895.784400pt;}
.y149{bottom:898.061467pt;}
.y64{bottom:898.071733pt;}
.y99{bottom:898.072000pt;}
.y1a8{bottom:898.072133pt;}
.y2a{bottom:904.430800pt;}
.yf6{bottom:911.491067pt;}
.y148{bottom:914.062800pt;}
.y63{bottom:914.071733pt;}
.y98{bottom:914.072000pt;}
.y5{bottom:919.433333pt;}
.y29{bottom:920.432133pt;}
.y147{bottom:930.064133pt;}
.y62{bottom:930.071733pt;}
.y97{bottom:930.072000pt;}
.yf5{bottom:932.491067pt;}
.yb3{bottom:932.738800pt;}
.y28{bottom:936.433467pt;}
.y146{bottom:946.065467pt;}
.y61{bottom:946.071733pt;}
.y96{bottom:946.072000pt;}
.y27{bottom:952.434800pt;}
.yf4{bottom:953.491067pt;}
.y145{bottom:962.066800pt;}
.y60{bottom:962.071733pt;}
.y95{bottom:962.072000pt;}
.y26{bottom:968.436133pt;}
.y24{bottom:968.438800pt;}
.yf3{bottom:974.491067pt;}
.y144{bottom:978.068133pt;}
.y5f{bottom:978.071733pt;}
.y94{bottom:978.072000pt;}
.y25{bottom:984.437467pt;}
.y143{bottom:994.069467pt;}
.yb2{bottom:994.071733pt;}
.y5e{bottom:994.072000pt;}
.y1cb{bottom:1000.438800pt;}
.y21{bottom:1008.736000pt;}
.y142{bottom:1010.070800pt;}
.yb1{bottom:1010.071733pt;}
.y5d{bottom:1010.072000pt;}
.y23{bottom:1023.997867pt;}
.y20{bottom:1024.736000pt;}
.y5c{bottom:1026.072000pt;}
.y141{bottom:1026.072133pt;}
.yf2{bottom:1027.109200pt;}
.y1f{bottom:1040.736000pt;}
.y1e{bottom:1056.736000pt;}
.y1ca{bottom:1071.707733pt;}
.y22{bottom:1071.708000pt;}
.h8{height:31.510875pt;}
.hb{height:36.458333pt;}
.ha{height:38.281250pt;}
.h6{height:40.161458pt;}
.h11{height:41.135417pt;}
.h3{height:42.109375pt;}
.h2{height:43.984375pt;}
.h9{height:46.406250pt;}
.hc{height:46.822917pt;}
.hf{height:51.046875pt;}
.h10{height:51.505208pt;}
.h7{height:55.687500pt;}
.hd{height:60.869792pt;}
.h5{height:61.578125pt;}
.h4{height:70.375000pt;}
.he{height:218.150212pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:43.663333pt;}
.x12{left:45.354667pt;}
.x1{left:47.244133pt;}
.x10{left:66.129067pt;}
.xa{left:69.557333pt;}
.x28{left:71.244133pt;}
.x9{left:82.606667pt;}
.x11{left:85.040000pt;}
.xf{left:94.773067pt;}
.x2a{left:103.930800pt;}
.x5{left:115.829333pt;}
.x7{left:127.226667pt;}
.xc{left:133.733333pt;}
.x15{left:143.270000pt;}
.x1b{left:158.994533pt;}
.x22{left:187.651333pt;}
.x1f{left:215.840533pt;}
.x1d{left:218.387200pt;}
.x1e{left:223.613867pt;}
.xd{left:229.733333pt;}
.x1c{left:233.040533pt;}
.x21{left:236.144000pt;}
.x20{left:242.771600pt;}
.x19{left:250.353867pt;}
.x17{left:252.900533pt;}
.x18{left:258.127200pt;}
.x16{left:267.540533pt;}
.x29{left:270.935867pt;}
.x2{left:283.470800pt;}
.x27{left:291.509200pt;}
.x13{left:295.908533pt;}
.xb{left:299.273333pt;}
.x1a{left:300.847867pt;}
.x14{left:310.296667pt;}
.x8{left:328.744000pt;}
.x6{left:335.157333pt;}
.x24{left:364.691333pt;}
.x26{left:382.029200pt;}
.x23{left:383.584667pt;}
.x25{left:400.922533pt;}
.x4{left:604.684000pt;}
.x3{left:610.413333pt;}
}




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