
    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_f07ff8e1766a3e98948274a5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_392ae091915523780c0a740a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_e346b3a43eacbd21c582cbb3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_01c209e840a8e3e845bdced7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_a27bbefd0b9654f383993afb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.934082;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_3ddfb3e53a19307c92cf0d6b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.752441;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_e9947667c15121fe44cbdca0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.983398;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_decfdfa4dd911071e380edd2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.983398;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_31cee929f15e28adc0087f9d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_2e80adbe8fdd40e673901030.woff')format("woff");}.ffb{font-family:ffb;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_039b8962cb475b35988975bb.woff')format("woff");}.ffd{font-family:ffd;line-height:0.914062;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_908b742515dc0caacc70f85a.woff')format("woff");}.ffe{font-family:ffe;line-height:0.934082;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);}
.m3{transform:matrix(0.275142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275142,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.346779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346779,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-23.760000px;}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls5a{letter-spacing:-0.660000px;}
.ls50{letter-spacing:-0.654000px;}
.ls6{letter-spacing:-0.463800px;}
.ls7{letter-spacing:-0.310800px;}
.ls3f{letter-spacing:-0.302400px;}
.ls35{letter-spacing:-0.272400px;}
.ls57{letter-spacing:-0.246000px;}
.ls24{letter-spacing:-0.240600px;}
.ls25{letter-spacing:-0.226800px;}
.ls2d{letter-spacing:-0.175800px;}
.ls55{letter-spacing:-0.164400px;}
.ls5{letter-spacing:-0.132600px;}
.ls4d{letter-spacing:-0.115800px;}
.ls31{letter-spacing:-0.115200px;}
.ls41{letter-spacing:-0.112200px;}
.ls2c{letter-spacing:-0.107400px;}
.ls23{letter-spacing:-0.078600px;}
.lsf{letter-spacing:-0.067200px;}
.ls15{letter-spacing:-0.061485px;}
.lse{letter-spacing:-0.058320px;}
.ls40{letter-spacing:-0.049680px;}
.ls16{letter-spacing:-0.048490px;}
.ls58{letter-spacing:-0.041040px;}
.ls17{letter-spacing:-0.024245px;}
.ls2b{letter-spacing:-0.001440px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.038880px;}
.ls3b{letter-spacing:0.044640px;}
.ls36{letter-spacing:0.060480px;}
.ls14{letter-spacing:0.060600px;}
.ls4f{letter-spacing:0.064200px;}
.lsc{letter-spacing:0.066000px;}
.ls3c{letter-spacing:0.075000px;}
.ls22{letter-spacing:0.096600px;}
.ls34{letter-spacing:0.101400px;}
.ls10{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.ls8{letter-spacing:0.150000px;}
.ls11{letter-spacing:0.174000px;}
.ls38{letter-spacing:0.174240px;}
.ls21{letter-spacing:0.175200px;}
.ls26{letter-spacing:0.179280px;}
.lsd{letter-spacing:0.180000px;}
.ls54{letter-spacing:0.180600px;}
.ls4e{letter-spacing:0.186600px;}
.lsb{letter-spacing:0.190200px;}
.ls3d{letter-spacing:0.195000px;}
.ls42{letter-spacing:0.209400px;}
.ls39{letter-spacing:0.218400px;}
.ls32{letter-spacing:0.220200px;}
.ls53{letter-spacing:0.249000px;}
.ls27{letter-spacing:0.249600px;}
.lsa{letter-spacing:0.265200px;}
.ls2{letter-spacing:0.306000px;}
.ls30{letter-spacing:0.309000px;}
.ls3a{letter-spacing:0.360000px;}
.ls3e{letter-spacing:0.447600px;}
.ls33{letter-spacing:0.459600px;}
.ls18{letter-spacing:0.479400px;}
.ls4a{letter-spacing:0.612000px;}
.ls28{letter-spacing:0.612720px;}
.ls9{letter-spacing:0.672000px;}
.ls51{letter-spacing:0.780480px;}
.ls37{letter-spacing:0.794880px;}
.ls20{letter-spacing:1.116000px;}
.ls29{letter-spacing:4.494240px;}
.ls46{letter-spacing:5.934240px;}
.ls59{letter-spacing:12.186720px;}
.ls2e{letter-spacing:20.106720px;}
.ls4c{letter-spacing:21.546720px;}
.ls44{letter-spacing:22.266720px;}
.ls2a{letter-spacing:22.986720px;}
.ls47{letter-spacing:23.706720px;}
.ls4b{letter-spacing:24.426720px;}
.ls43{letter-spacing:25.146720px;}
.ls49{letter-spacing:25.866720px;}
.ls2f{letter-spacing:27.306720px;}
.ls45{letter-spacing:28.746720px;}
.ls52{letter-spacing:33.066720px;}
.ls48{letter-spacing:35.946720px;}
.ls56{letter-spacing:42.426720px;}
.ls19{letter-spacing:106.650720px;}
.ls1b{letter-spacing:146.250720px;}
.ls1d{letter-spacing:147.690720px;}
.ls1a{letter-spacing:149.130720px;}
.ls1f{letter-spacing:149.850720px;}
.ls1c{letter-spacing:152.010720px;}
.ls1{letter-spacing:153.450720px;}
.ls1e{letter-spacing:159.210720px;}
.ls12{letter-spacing:267.952618px;}
.ls13{letter-spacing:272.607688px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-66.240000px;}
.ws0{word-spacing:-19.077120px;}
.ws1e{word-spacing:-16.560000px;}
.ws1c{word-spacing:-14.976000px;}
.ws3{word-spacing:-14.970240px;}
.ws1b{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.837640px;}
.wsc{word-spacing:-14.725603px;}
.ws4{word-spacing:-14.659440px;}
.ws2{word-spacing:-14.506440px;}
.ws20{word-spacing:-13.814760px;}
.ws17{word-spacing:-13.811760px;}
.ws21{word-spacing:-13.725960px;}
.ws24{word-spacing:-13.724160px;}
.ws25{word-spacing:-13.692360px;}
.ws26{word-spacing:-13.686360px;}
.ws16{word-spacing:-13.680960px;}
.ws23{word-spacing:-13.580760px;}
.ws8{word-spacing:-13.505760px;}
.ws1f{word-spacing:-13.504320px;}
.ws1d{word-spacing:-13.500000px;}
.ws29{word-spacing:-13.464720px;}
.ws9{word-spacing:-13.447440px;}
.wsa{word-spacing:-13.438560px;}
.ws18{word-spacing:-13.427160px;}
.ws22{word-spacing:-13.398360px;}
.ws27{word-spacing:-13.341360px;}
.ws1a{word-spacing:-13.278960px;}
.ws19{word-spacing:-13.265160px;}
.ws28{word-spacing:-13.259760px;}
.wsf{word-spacing:-11.661920px;}
.ws12{word-spacing:-11.613430px;}
.ws5{word-spacing:-9.437760px;}
.ws7{word-spacing:-8.786880px;}
.wsb{word-spacing:0.000000px;}
.ws13{word-spacing:35.034251px;}
.wsd{word-spacing:44.422748px;}
.wse{word-spacing:158.393606px;}
.ws15{word-spacing:188.850371px;}
.ws14{word-spacing:195.808731px;}
.ws10{word-spacing:237.743153px;}
.ws11{word-spacing:382.205492px;}
._1f{margin-left:-532.558560px;}
._21{margin-left:-525.220560px;}
._1{margin-left:-485.718240px;}
._3b{margin-left:-484.241770px;}
._3d{margin-left:-436.972277px;}
._7{margin-left:-407.814240px;}
._54{margin-left:-335.218379px;}
._a{margin-left:-307.041120px;}
._5{margin-left:-289.238160px;}
._6{margin-left:-287.782560px;}
._53{margin-left:-277.146381px;}
._0{margin-left:-274.978080px;}
._9{margin-left:-273.882720px;}
._d{margin-left:-240.510240px;}
._14{margin-left:-232.410240px;}
._19{margin-left:-226.537200px;}
._18{margin-left:-219.434640px;}
._55{margin-left:-211.703855px;}
._61{margin-left:-209.531489px;}
._11{margin-left:-202.146240px;}
._1a{margin-left:-199.946880px;}
._23{margin-left:-196.208640px;}
._22{margin-left:-188.893440px;}
._29{margin-left:-178.662240px;}
._10{margin-left:-171.054720px;}
._f{margin-left:-165.490560px;}
._26{margin-left:-154.885440px;}
._b{margin-left:-153.774720px;}
._4{margin-left:-150.068400px;}
._c{margin-left:-148.690080px;}
._28{margin-left:-142.858800px;}
._12{margin-left:-141.587040px;}
._e{margin-left:-134.192160px;}
._13{margin-left:-116.242560px;}
._27{margin-left:-110.054880px;}
._1e{margin-left:-102.349440px;}
._24{margin-left:-100.543680px;}
._8{margin-left:-91.638240px;}
._1d{margin-left:-86.399760px;}
._1c{margin-left:-83.520000px;}
._15{margin-left:-82.131840px;}
._17{margin-left:-66.703680px;}
._16{margin-left:-49.583280px;}
._25{margin-left:-33.638160px;}
._1b{margin-left:-30.741360px;}
._2f{margin-left:-6.192000px;}
._2a{margin-left:-4.288920px;}
._2b{margin-left:-3.275040px;}
._2{margin-left:-2.274480px;}
._3{margin-left:-1.179360px;}
._20{width:1.082160px;}
._33{width:2.220240px;}
._30{width:3.374640px;}
._31{width:5.241600px;}
._32{width:6.999360px;}
._34{width:8.866080px;}
._2d{width:10.655760px;}
._2c{width:12.331200px;}
._2e{width:15.462000px;}
._6e{width:16.956000px;}
._64{width:18.107280px;}
._6c{width:19.413840px;}
._66{width:20.437920px;}
._65{width:21.812400px;}
._71{width:23.324400px;}
._6f{width:24.533280px;}
._70{width:25.567200px;}
._69{width:33.465600px;}
._6d{width:35.905200px;}
._6b{width:50.078880px;}
._50{width:58.139885px;}
._39{width:73.843212px;}
._4a{width:97.962920px;}
._35{width:126.850300px;}
._67{width:150.618240px;}
._68{width:151.730640px;}
._5a{width:189.459163px;}
._5c{width:191.990193px;}
._5d{width:198.766476px;}
._38{width:200.658375px;}
._36{width:225.815322px;}
._4d{width:230.649020px;}
._5b{width:236.285644px;}
._59{width:240.611796px;}
._62{width:242.451563px;}
._5e{width:247.106633px;}
._51{width:252.170071px;}
._60{width:256.416773px;}
._5f{width:260.955466px;}
._4e{width:268.053553px;}
._4c{width:270.255908px;}
._4b{width:274.891582px;}
._46{width:278.684276px;}
._48{width:281.983624px;}
._56{width:285.045719px;}
._6a{width:287.087040px;}
._4f{width:288.837395px;}
._49{width:290.779238px;}
._63{width:296.009113px;}
._37{width:299.571201px;}
._57{width:310.546839px;}
._58{width:317.208194px;}
._52{width:323.876495px;}
._3f{width:325.758560px;}
._47{width:337.998107px;}
._45{width:343.228439px;}
._3a{width:358.745296px;}
._41{width:388.319471px;}
._42{width:400.333404px;}
._43{width:432.003260px;}
._44{width:441.821886px;}
._3c{width:487.748083px;}
._3e{width:490.742391px;}
._40{width:520.353458px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:46.647681px;}
.fs9{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fs7{font-size:59.148351px;}
.fs4{font-size:59.760000px;}
.fsa{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.yb1{bottom:-3.390000px;}
.yab{bottom:-0.870000px;}
.ya9{bottom:-0.690000px;}
.y0{bottom:0.000000px;}
.yaf{bottom:0.210000px;}
.ya3{bottom:0.750000px;}
.yad{bottom:2.190000px;}
.y63{bottom:2.909419px;}
.y76{bottom:3.491303px;}
.y78{bottom:3.515509px;}
.y74{bottom:3.515612px;}
.y5b{bottom:4.418786px;}
.ya6{bottom:4.710000px;}
.yb6{bottom:6.660000px;}
.y105{bottom:6.690000px;}
.yc3{bottom:6.705000px;}
.y16e{bottom:7.380000px;}
.ya0{bottom:7.770000px;}
.y5f{bottom:10.493304px;}
.yd3{bottom:10.620000px;}
.ya8{bottom:16.230000px;}
.y13f{bottom:17.100000px;}
.y106{bottom:17.130000px;}
.yb4{bottom:17.280000px;}
.ya2{bottom:18.030000px;}
.y65{bottom:18.057792px;}
.y61{bottom:18.086887px;}
.y73{bottom:18.668931px;}
.ya5{bottom:21.990000px;}
.y5a{bottom:23.663028px;}
.y5d{bottom:25.651375px;}
.yb5{bottom:27.720000px;}
.y104{bottom:27.750000px;}
.y60{bottom:33.235260px;}
.y72{bottom:33.822154px;}
.ybf{bottom:39.780000px;}
.ycd{bottom:39.810000px;}
.y5e{bottom:40.799749px;}
.y59{bottom:42.907762px;}
.y62{bottom:48.393332px;}
.y71{bottom:48.975377px;}
.yb8{bottom:50.220000px;}
.y6{bottom:60.660000px;}
.yc6{bottom:60.840000px;}
.ycc{bottom:60.870000px;}
.ybe{bottom:60.885000px;}
.y58{bottom:62.152496px;}
.y70{bottom:64.128599px;}
.y6f{bottom:79.306067px;}
.y57{bottom:81.397229px;}
.y188{bottom:92.880000px;}
.y9e{bottom:93.060000px;}
.y6e{bottom:94.459290px;}
.yf2{bottom:97.560000px;}
.y31{bottom:98.280000px;}
.y144{bottom:99.180000px;}
.y56{bottom:100.611221px;}
.y11f{bottom:100.620000px;}
.y4d{bottom:101.520000px;}
.y6d{bottom:109.616392px;}
.y187{bottom:113.940000px;}
.y9d{bottom:114.120000px;}
.y4c{bottom:118.620000px;}
.y66{bottom:118.822507px;}
.y30{bottom:119.340000px;}
.y77{bottom:119.404396px;}
.y55{bottom:119.855954px;}
.y143{bottom:120.960000px;}
.y11e{bottom:121.680000px;}
.y6c{bottom:124.764765px;}
.y19c{bottom:129.240000px;}
.ycb{bottom:133.740000px;}
.y75{bottom:134.582019px;}
.y186{bottom:135.000000px;}
.y9c{bottom:135.180000px;}
.y54{bottom:139.103148px;}
.yf1{bottom:139.680000px;}
.y6b{bottom:139.922837px;}
.y2f{bottom:140.400000px;}
.y11d{bottom:142.740000px;}
.y19b{bottom:150.300000px;}
.ya1{bottom:154.080000px;}
.y6a{bottom:155.071211px;}
.yd1{bottom:155.730000px;}
.y185{bottom:156.090000px;}
.y9b{bottom:156.270000px;}
.y53{bottom:158.347881px;}
.yf0{bottom:160.770000px;}
.y2e{bottom:161.490000px;}
.y11c{bottom:163.830000px;}
.y69{bottom:170.248678px;}
.y19a{bottom:171.390000px;}
.y184{bottom:177.150000px;}
.y9a{bottom:177.330000px;}
.yd0{bottom:177.510000px;}
.y52{bottom:177.592615px;}
.yef{bottom:181.830000px;}
.y2d{bottom:182.550000px;}
.yae{bottom:183.420000px;}
.y11b{bottom:184.890000px;}
.y68{bottom:185.406750px;}
.y199{bottom:192.450000px;}
.y51{bottom:196.837349px;}
.y183{bottom:198.210000px;}
.y99{bottom:198.390000px;}
.ycf{bottom:199.290000px;}
.y67{bottom:200.555124px;}
.ya4{bottom:202.500000px;}
.yee{bottom:202.890000px;}
.y2c{bottom:203.430000px;}
.y11a{bottom:205.950000px;}
.y142{bottom:206.850000px;}
.ya7{bottom:211.860000px;}
.yaa{bottom:212.580000px;}
.y198{bottom:213.510000px;}
.y50{bottom:216.082083px;}
.y182{bottom:219.270000px;}
.y98{bottom:219.450000px;}
.yce{bottom:221.070000px;}
.yed{bottom:223.950000px;}
.y2b{bottom:224.490000px;}
.y119{bottom:227.010000px;}
.y197{bottom:234.570000px;}
.y4f{bottom:235.289926px;}
.y181{bottom:240.330000px;}
.y97{bottom:240.510000px;}
.yc5{bottom:242.850000px;}
.yec{bottom:245.010000px;}
.y2a{bottom:245.550000px;}
.y118{bottom:248.070000px;}
.y141{bottom:249.690000px;}
.yac{bottom:252.180000px;}
.y196{bottom:255.630000px;}
.yb2{bottom:258.480000px;}
.y180{bottom:261.390000px;}
.yb0{bottom:261.540000px;}
.y96{bottom:261.570000px;}
.yca{bottom:264.630000px;}
.yeb{bottom:266.070000px;}
.y29{bottom:266.610000px;}
.y117{bottom:269.130000px;}
.y9f{bottom:276.480000px;}
.y195{bottom:276.690000px;}
.y17f{bottom:282.450000px;}
.y95{bottom:282.630000px;}
.yc9{bottom:286.590000px;}
.yea{bottom:287.130000px;}
.y28{bottom:287.670000px;}
.y116{bottom:290.190000px;}
.y140{bottom:292.530000px;}
.y17e{bottom:303.510000px;}
.y94{bottom:303.690000px;}
.y115{bottom:305.310000px;}
.y194{bottom:306.750000px;}
.ye9{bottom:308.190000px;}
.yc8{bottom:308.370000px;}
.y27{bottom:308.730000px;}
.y13e{bottom:314.310000px;}
.y17d{bottom:324.570000px;}
.y93{bottom:324.750000px;}
.y114{bottom:327.090000px;}
.y193{bottom:327.810000px;}
.ye8{bottom:329.250000px;}
.y26{bottom:329.790000px;}
.yc7{bottom:330.150000px;}
.y64{bottom:331.626283px;}
.y166{bottom:333.030000px;}
.ye7{bottom:344.370000px;}
.y17c{bottom:345.630000px;}
.y92{bottom:345.810000px;}
.y113{bottom:348.870000px;}
.y25{bottom:350.850000px;}
.ybd{bottom:351.930000px;}
.y165{bottom:354.090000px;}
.y5c{bottom:361.932729px;}
.y13d{bottom:363.810000px;}
.ye6{bottom:366.150000px;}
.y17b{bottom:366.690000px;}
.y91{bottom:366.870000px;}
.y192{bottom:369.930000px;}
.y112{bottom:370.650000px;}
.y24{bottom:371.910000px;}
.yc4{bottom:373.710000px;}
.y164{bottom:375.150000px;}
.y13c{bottom:384.870000px;}
.y17a{bottom:387.750000px;}
.y90{bottom:387.930000px;}
.ye5{bottom:388.110000px;}
.y191{bottom:390.990000px;}
.y111{bottom:392.610000px;}
.y23{bottom:392.970000px;}
.yc2{bottom:395.490000px;}
.y163{bottom:396.210000px;}
.y13b{bottom:405.975000px;}
.y179{bottom:408.855000px;}
.y8f{bottom:409.035000px;}
.ye4{bottom:409.935000px;}
.y190{bottom:412.095000px;}
.y22{bottom:414.075000px;}
.yc1{bottom:417.315000px;}
.y110{bottom:421.095000px;}
.y13a{bottom:427.035000px;}
.y4b{bottom:429.195000px;}
.y178{bottom:429.915000px;}
.y8e{bottom:430.095000px;}
.ye3{bottom:431.715000px;}
.y18f{bottom:433.155000px;}
.y21{bottom:435.135000px;}
.y162{bottom:438.375000px;}
.yc0{bottom:439.275000px;}
.y10f{bottom:442.155000px;}
.y139{bottom:448.095000px;}
.y4a{bottom:450.255000px;}
.y177{bottom:450.975000px;}
.y8d{bottom:451.155000px;}
.ye2{bottom:453.495000px;}
.y18e{bottom:454.215000px;}
.y20{bottom:456.195000px;}
.y161{bottom:459.435000px;}
.yb7{bottom:461.055000px;}
.y10e{bottom:463.215000px;}
.y138{bottom:469.155000px;}
.y49{bottom:471.315000px;}
.y176{bottom:472.035000px;}
.y8c{bottom:472.215000px;}
.ye1{bottom:475.275000px;}
.y1f{bottom:477.255000px;}
.ybc{bottom:482.835000px;}
.y10d{bottom:484.275000px;}
.y160{bottom:489.495000px;}
.y137{bottom:490.215000px;}
.y48{bottom:492.195000px;}
.y175{bottom:492.915000px;}
.y8b{bottom:493.275000px;}
.y18d{bottom:496.335000px;}
.ye0{bottom:497.055000px;}
.y1e{bottom:498.315000px;}
.ybb{bottom:504.615000px;}
.y10c{bottom:505.335000px;}
.y15f{bottom:510.555000px;}
.y136{bottom:511.275000px;}
.y47{bottom:513.255000px;}
.y174{bottom:513.975000px;}
.y8a{bottom:514.335000px;}
.ydf{bottom:519.015000px;}
.y1d{bottom:519.375000px;}
.yba{bottom:526.395000px;}
.y15e{bottom:531.615000px;}
.y135{bottom:532.335000px;}
.y46{bottom:534.315000px;}
.y173{bottom:535.035000px;}
.y89{bottom:535.395000px;}
.y1c{bottom:540.435000px;}
.yde{bottom:540.795000px;}
.y10b{bottom:547.455000px;}
.yb9{bottom:548.175000px;}
.y15d{bottom:552.675000px;}
.y134{bottom:553.395000px;}
.y45{bottom:555.375000px;}
.y172{bottom:556.095000px;}
.y88{bottom:556.455000px;}
.y1b{bottom:561.495000px;}
.ydd{bottom:562.575000px;}
.y10a{bottom:568.515000px;}
.yb3{bottom:569.955000px;}
.y15c{bottom:573.735000px;}
.y133{bottom:574.455000px;}
.y44{bottom:576.435000px;}
.y171{bottom:577.155000px;}
.y87{bottom:577.515000px;}
.y1a{bottom:582.555000px;}
.ydc{bottom:584.355000px;}
.y109{bottom:589.575000px;}
.y170{bottom:592.455000px;}
.y15b{bottom:594.795000px;}
.y132{bottom:595.515000px;}
.y43{bottom:597.495000px;}
.y86{bottom:598.575000px;}
.y19{bottom:603.615000px;}
.ydb{bottom:606.135000px;}
.y108{bottom:610.635000px;}
.y15a{bottom:615.855000px;}
.y131{bottom:616.575000px;}
.y42{bottom:618.555000px;}
.y85{bottom:619.635000px;}
.y18{bottom:624.675000px;}
.yda{bottom:627.915000px;}
.y107{bottom:631.695000px;}
.y16f{bottom:635.295000px;}
.y41{bottom:635.655000px;}
.y4e{bottom:635.910000px;}
.y159{bottom:636.915000px;}
.y130{bottom:637.635000px;}
.y84{bottom:640.695000px;}
.y17{bottom:645.735000px;}
.y103{bottom:646.815000px;}
.yd9{bottom:649.725000px;}
.y18c{bottom:652.785000px;}
.y158{bottom:658.005000px;}
.y12f{bottom:658.725000px;}
.y83{bottom:661.785000px;}
.y16{bottom:669.345000px;}
.yd8{bottom:671.685000px;}
.y18b{bottom:673.845000px;}
.y16d{bottom:678.165000px;}
.y157{bottom:679.065000px;}
.y12e{bottom:679.785000px;}
.y82{bottom:682.845000px;}
.y102{bottom:689.685000px;}
.yd7{bottom:693.465000px;}
.y18a{bottom:694.905000px;}
.y15{bottom:699.225000px;}
.y156{bottom:700.125000px;}
.y12d{bottom:700.845000px;}
.y81{bottom:703.905000px;}
.y16c{bottom:708.045000px;}
.y101{bottom:711.465000px;}
.yd6{bottom:715.245000px;}
.y189{bottom:715.965000px;}
.y14{bottom:720.285000px;}
.y155{bottom:721.185000px;}
.y12c{bottom:721.905000px;}
.y80{bottom:724.965000px;}
.y16b{bottom:729.105000px;}
.y100{bottom:733.245000px;}
.yd5{bottom:737.025000px;}
.y13{bottom:741.345000px;}
.y154{bottom:742.245000px;}
.y12b{bottom:742.965000px;}
.y7f{bottom:746.025000px;}
.y16a{bottom:750.165000px;}
.yff{bottom:755.025000px;}
.yd4{bottom:758.805000px;}
.y12{bottom:762.405000px;}
.y153{bottom:763.305000px;}
.y12a{bottom:764.025000px;}
.y7e{bottom:766.905000px;}
.y169{bottom:771.225000px;}
.yd2{bottom:780.585000px;}
.y11{bottom:783.465000px;}
.y152{bottom:784.365000px;}
.y129{bottom:785.085000px;}
.y7d{bottom:787.965000px;}
.y168{bottom:792.285000px;}
.y10{bottom:804.525000px;}
.y151{bottom:805.425000px;}
.y128{bottom:806.145000px;}
.y7c{bottom:809.025000px;}
.y167{bottom:809.385000px;}
.yf{bottom:825.585000px;}
.y150{bottom:826.485000px;}
.y127{bottom:827.205000px;}
.y7b{bottom:830.085000px;}
.ye{bottom:846.645000px;}
.y14f{bottom:847.545000px;}
.y126{bottom:848.265000px;}
.y7a{bottom:851.145000px;}
.yd{bottom:867.705000px;}
.y14e{bottom:868.605000px;}
.y125{bottom:869.325000px;}
.y79{bottom:872.205000px;}
.yfe{bottom:888.765000px;}
.y14d{bottom:889.665000px;}
.y124{bottom:890.385000px;}
.yc{bottom:890.925000px;}
.y40{bottom:893.265000px;}
.yfd{bottom:909.870000px;}
.y14c{bottom:910.770000px;}
.y123{bottom:911.490000px;}
.y3f{bottom:914.370000px;}
.yb{bottom:917.250000px;}
.y122{bottom:926.610000px;}
.yfc{bottom:930.930000px;}
.y14b{bottom:931.830000px;}
.ya{bottom:934.170000px;}
.y3e{bottom:935.430000px;}
.y121{bottom:948.390000px;}
.yfb{bottom:951.990000px;}
.y14a{bottom:952.890000px;}
.y3d{bottom:956.490000px;}
.y9{bottom:958.650000px;}
.y120{bottom:970.170000px;}
.yfa{bottom:973.050000px;}
.y149{bottom:973.770000px;}
.y3c{bottom:977.550000px;}
.y8{bottom:983.850000px;}
.y148{bottom:989.070000px;}
.yf9{bottom:994.110000px;}
.y3b{bottom:998.610000px;}
.yf8{bottom:1015.170000px;}
.y7{bottom:1017.510000px;}
.y3a{bottom:1019.670000px;}
.yf7{bottom:1030.290000px;}
.y147{bottom:1031.910000px;}
.y39{bottom:1040.730000px;}
.yf6{bottom:1052.250000px;}
.y5{bottom:1056.210000px;}
.y38{bottom:1061.790000px;}
.yf5{bottom:1074.030000px;}
.y146{bottom:1074.750000px;}
.y37{bottom:1082.850000px;}
.y4{bottom:1086.990000px;}
.yf4{bottom:1095.810000px;}
.y145{bottom:1096.530000px;}
.y36{bottom:1103.910000px;}
.yf3{bottom:1117.590000px;}
.y3{bottom:1117.770000px;}
.y35{bottom:1124.970000px;}
.y34{bottom:1146.030000px;}
.y2{bottom:1148.400000px;}
.y33{bottom:1173.960000px;}
.y1{bottom:1180.620000px;}
.y32{bottom:1194.120000px;}
.h20{height:12.420000px;}
.h11{height:14.571339px;}
.h12{height:14.595584px;}
.h1c{height:14.760000px;}
.h1f{height:15.840000px;}
.h21{height:16.020000px;}
.h1e{height:18.000000px;}
.h24{height:21.060000px;}
.h26{height:21.096000px;}
.h2c{height:22.500000px;}
.h13{height:26.820000px;}
.h1a{height:29.160000px;}
.he{height:29.724562px;}
.h15{height:32.220000px;}
.h10{height:32.571379px;}
.hd{height:32.913036px;}
.h1b{height:37.705078px;}
.h18{height:37.980000px;}
.h8{height:38.671172px;}
.hb{height:41.299874px;}
.h16{height:41.726953px;}
.h22{height:42.120000px;}
.h2a{height:42.156000px;}
.h28{height:45.170156px;}
.h1d{height:46.251562px;}
.h14{height:47.980898px;}
.h29{height:48.088125px;}
.h19{height:53.709961px;}
.h9{height:59.439023px;}
.h2b{height:59.551172px;}
.h17{height:59.582250px;}
.hc{height:60.055252px;}
.h6{height:61.189805px;}
.h3{height:65.884219px;}
.h7{height:67.824844px;}
.h4{height:83.787539px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.h23{height:108.180000px;}
.h27{height:108.360000px;}
.h25{height:108.396000px;}
.ha{height:250.111948px;}
.hf{height:303.161434px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w31{width:33.120000px;}
.w2a{width:39.780000px;}
.w12{width:43.740000px;}
.w13{width:45.180000px;}
.w15{width:46.800000px;}
.w14{width:47.340000px;}
.w16{width:47.520000px;}
.w20{width:63.000000px;}
.w2e{width:63.540000px;}
.wc{width:68.603123px;}
.wa{width:68.603124px;}
.w6{width:69.883929px;}
.w2f{width:71.100000px;}
.w34{width:71.820000px;}
.w2d{width:79.236000px;}
.w33{width:80.496000px;}
.w29{width:84.240000px;}
.w19{width:84.276000px;}
.w5{width:91.043897px;}
.w8{width:91.684299px;}
.w7{width:94.219226px;}
.w10{width:97.740000px;}
.w11{width:99.720000px;}
.w9{width:102.571142px;}
.w1d{width:105.516000px;}
.w1e{width:105.660000px;}
.w1c{width:105.696000px;}
.w24{width:108.180000px;}
.wf{width:109.800000px;}
.we{width:109.980000px;}
.w23{width:110.196000px;}
.w17{width:117.180000px;}
.w22{width:124.920000px;}
.w2c{width:127.800000px;}
.w1a{width:154.980000px;}
.w21{width:169.410000px;}
.w35{width:191.190000px;}
.wd{width:197.457451px;}
.w28{width:201.090000px;}
.w27{width:203.250000px;}
.w26{width:203.430000px;}
.w1f{width:211.530000px;}
.w25{width:216.210000px;}
.w32{width:301.530000px;}
.w1b{width:305.490000px;}
.w18{width:316.875000px;}
.w2b{width:319.575000px;}
.wb{width:628.213555px;}
.w4{width:628.213557px;}
.w3{width:646.762376px;}
.w30{width:702.825000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x4e{left:-5.220000px;}
.x4b{left:-3.960000px;}
.x0{left:0.000000px;}
.x15{left:1.921209px;}
.x1f{left:4.482819px;}
.x20{left:6.404026px;}
.x33{left:7.740000px;}
.x10{left:8.965637px;}
.x22{left:10.886851px;}
.xc{left:12.323914px;}
.x18{left:14.088856px;}
.x1a{left:15.999392px;}
.xe{left:17.441117px;}
.x16{left:19.244098px;}
.xd{left:22.558306px;}
.x13{left:23.716242px;}
.x12{left:26.277852px;}
.x2c{left:27.435000px;}
.x21{left:28.850135px;}
.x19{left:31.401072px;}
.x1d{left:34.613759px;}
.x29{left:37.830000px;}
.x6{left:53.999987px;}
.x26{left:68.603123px;}
.x51{left:75.239987px;}
.x25{left:79.489966px;}
.x52{left:80.999987px;}
.x43{left:95.076000px;}
.x9{left:96.515987px;}
.x7{left:107.135987px;}
.x32{left:108.756000px;}
.xb{left:123.498429px;}
.x48{left:128.555987px;}
.xf{left:132.115392px;}
.x37{left:134.316000px;}
.x4c{left:140.256000px;}
.x5{left:184.709987px;}
.x28{left:195.300000px;}
.x24{left:217.341959px;}
.x23{left:223.745984px;}
.x34{left:226.830000px;}
.x11{left:238.528948px;}
.x3{left:271.514987px;}
.x3b{left:277.815000px;}
.x49{left:287.354987px;}
.x27{left:295.454987px;}
.x3d{left:304.095000px;}
.x14{left:330.213245px;}
.x2e{left:334.080000px;}
.x2f{left:338.040000px;}
.x2{left:350.534987px;}
.x17{left:400.742912px;}
.x2b{left:404.460000px;}
.x4{left:418.214987px;}
.x3e{left:429.375000px;}
.x31{left:435.780000px;}
.x38{left:440.535000px;}
.x4d{left:442.155000px;}
.x4a{left:446.504987px;}
.x44{left:455.145000px;}
.x1{left:478.544987px;}
.x42{left:479.805000px;}
.x3c{left:490.065000px;}
.x1b{left:495.597202px;}
.x30{left:505.440000px;}
.x4f{left:523.005000px;}
.x2d{left:525.600000px;}
.x3f{left:540.105000px;}
.x35{left:544.425000px;}
.x39{left:546.945000px;}
.x41{left:555.405000px;}
.x45{left:583.305000px;}
.x1c{left:587.921902px;}
.x50{left:595.185000px;}
.x2a{left:601.020000px;}
.x36{left:629.430000px;}
.x40{left:650.670000px;}
.x3a{left:653.190000px;}
.x46{left:662.910000px;}
.x1e{left:691.133445px;}
.x47{left:726.810000px;}
.xa{left:761.549987px;}
.x8{left:770.549987px;}
@media print{
.v5{vertical-align:-21.120000pt;}
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls5a{letter-spacing:-0.586667pt;}
.ls50{letter-spacing:-0.581333pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls7{letter-spacing:-0.276267pt;}
.ls3f{letter-spacing:-0.268800pt;}
.ls35{letter-spacing:-0.242133pt;}
.ls57{letter-spacing:-0.218667pt;}
.ls24{letter-spacing:-0.213867pt;}
.ls25{letter-spacing:-0.201600pt;}
.ls2d{letter-spacing:-0.156267pt;}
.ls55{letter-spacing:-0.146133pt;}
.ls5{letter-spacing:-0.117867pt;}
.ls4d{letter-spacing:-0.102933pt;}
.ls31{letter-spacing:-0.102400pt;}
.ls41{letter-spacing:-0.099733pt;}
.ls2c{letter-spacing:-0.095467pt;}
.ls23{letter-spacing:-0.069867pt;}
.lsf{letter-spacing:-0.059733pt;}
.ls15{letter-spacing:-0.054653pt;}
.lse{letter-spacing:-0.051840pt;}
.ls40{letter-spacing:-0.044160pt;}
.ls16{letter-spacing:-0.043103pt;}
.ls58{letter-spacing:-0.036480pt;}
.ls17{letter-spacing:-0.021551pt;}
.ls2b{letter-spacing:-0.001280pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.034560pt;}
.ls3b{letter-spacing:0.039680pt;}
.ls36{letter-spacing:0.053760pt;}
.ls14{letter-spacing:0.053867pt;}
.ls4f{letter-spacing:0.057067pt;}
.lsc{letter-spacing:0.058667pt;}
.ls3c{letter-spacing:0.066667pt;}
.ls22{letter-spacing:0.085867pt;}
.ls34{letter-spacing:0.090133pt;}
.ls10{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.ls8{letter-spacing:0.133333pt;}
.ls11{letter-spacing:0.154667pt;}
.ls38{letter-spacing:0.154880pt;}
.ls21{letter-spacing:0.155733pt;}
.ls26{letter-spacing:0.159360pt;}
.lsd{letter-spacing:0.160000pt;}
.ls54{letter-spacing:0.160533pt;}
.ls4e{letter-spacing:0.165867pt;}
.lsb{letter-spacing:0.169067pt;}
.ls3d{letter-spacing:0.173333pt;}
.ls42{letter-spacing:0.186133pt;}
.ls39{letter-spacing:0.194133pt;}
.ls32{letter-spacing:0.195733pt;}
.ls53{letter-spacing:0.221333pt;}
.ls27{letter-spacing:0.221867pt;}
.lsa{letter-spacing:0.235733pt;}
.ls2{letter-spacing:0.272000pt;}
.ls30{letter-spacing:0.274667pt;}
.ls3a{letter-spacing:0.320000pt;}
.ls3e{letter-spacing:0.397867pt;}
.ls33{letter-spacing:0.408533pt;}
.ls18{letter-spacing:0.426133pt;}
.ls4a{letter-spacing:0.544000pt;}
.ls28{letter-spacing:0.544640pt;}
.ls9{letter-spacing:0.597333pt;}
.ls51{letter-spacing:0.693760pt;}
.ls37{letter-spacing:0.706560pt;}
.ls20{letter-spacing:0.992000pt;}
.ls29{letter-spacing:3.994880pt;}
.ls46{letter-spacing:5.274880pt;}
.ls59{letter-spacing:10.832640pt;}
.ls2e{letter-spacing:17.872640pt;}
.ls4c{letter-spacing:19.152640pt;}
.ls44{letter-spacing:19.792640pt;}
.ls2a{letter-spacing:20.432640pt;}
.ls47{letter-spacing:21.072640pt;}
.ls4b{letter-spacing:21.712640pt;}
.ls43{letter-spacing:22.352640pt;}
.ls49{letter-spacing:22.992640pt;}
.ls2f{letter-spacing:24.272640pt;}
.ls45{letter-spacing:25.552640pt;}
.ls52{letter-spacing:29.392640pt;}
.ls48{letter-spacing:31.952640pt;}
.ls56{letter-spacing:37.712640pt;}
.ls19{letter-spacing:94.800640pt;}
.ls1b{letter-spacing:130.000640pt;}
.ls1d{letter-spacing:131.280640pt;}
.ls1a{letter-spacing:132.560640pt;}
.ls1f{letter-spacing:133.200640pt;}
.ls1c{letter-spacing:135.120640pt;}
.ls1{letter-spacing:136.400640pt;}
.ls1e{letter-spacing:141.520640pt;}
.ls12{letter-spacing:238.180105pt;}
.ls13{letter-spacing:242.317945pt;}
.ws6{word-spacing:-58.880000pt;}
.ws0{word-spacing:-16.957440pt;}
.ws1e{word-spacing:-14.720000pt;}
.ws1c{word-spacing:-13.312000pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1b{word-spacing:-13.280000pt;}
.ws1{word-spacing:-13.189013pt;}
.wsc{word-spacing:-13.089425pt;}
.ws4{word-spacing:-13.030613pt;}
.ws2{word-spacing:-12.894613pt;}
.ws20{word-spacing:-12.279787pt;}
.ws17{word-spacing:-12.277120pt;}
.ws21{word-spacing:-12.200853pt;}
.ws24{word-spacing:-12.199253pt;}
.ws25{word-spacing:-12.170987pt;}
.ws26{word-spacing:-12.165653pt;}
.ws16{word-spacing:-12.160853pt;}
.ws23{word-spacing:-12.071787pt;}
.ws8{word-spacing:-12.005120pt;}
.ws1f{word-spacing:-12.003840pt;}
.ws1d{word-spacing:-12.000000pt;}
.ws29{word-spacing:-11.968640pt;}
.ws9{word-spacing:-11.953280pt;}
.wsa{word-spacing:-11.945387pt;}
.ws18{word-spacing:-11.935253pt;}
.ws22{word-spacing:-11.909653pt;}
.ws27{word-spacing:-11.858987pt;}
.ws1a{word-spacing:-11.803520pt;}
.ws19{word-spacing:-11.791253pt;}
.ws28{word-spacing:-11.786453pt;}
.wsf{word-spacing:-10.366151pt;}
.ws12{word-spacing:-10.323049pt;}
.ws5{word-spacing:-8.389120pt;}
.ws7{word-spacing:-7.810560pt;}
.wsb{word-spacing:0.000000pt;}
.ws13{word-spacing:31.141556pt;}
.wsd{word-spacing:39.486887pt;}
.wse{word-spacing:140.794316pt;}
.ws15{word-spacing:167.866997pt;}
.ws14{word-spacing:174.052205pt;}
.ws10{word-spacing:211.327247pt;}
.ws11{word-spacing:339.738215pt;}
._1f{margin-left:-473.385387pt;}
._21{margin-left:-466.862720pt;}
._1{margin-left:-431.749547pt;}
._3b{margin-left:-430.437129pt;}
._3d{margin-left:-388.419802pt;}
._7{margin-left:-362.501547pt;}
._54{margin-left:-297.971893pt;}
._a{margin-left:-272.925440pt;}
._5{margin-left:-257.100587pt;}
._6{margin-left:-255.806720pt;}
._53{margin-left:-246.352339pt;}
._0{margin-left:-244.424960pt;}
._9{margin-left:-243.451307pt;}
._d{margin-left:-213.786880pt;}
._14{margin-left:-206.586880pt;}
._19{margin-left:-201.366400pt;}
._18{margin-left:-195.053013pt;}
._55{margin-left:-188.181205pt;}
._61{margin-left:-186.250213pt;}
._11{margin-left:-179.685547pt;}
._1a{margin-left:-177.730560pt;}
._23{margin-left:-174.407680pt;}
._22{margin-left:-167.905280pt;}
._29{margin-left:-158.810880pt;}
._10{margin-left:-152.048640pt;}
._f{margin-left:-147.102720pt;}
._26{margin-left:-137.675947pt;}
._b{margin-left:-136.688640pt;}
._4{margin-left:-133.394133pt;}
._c{margin-left:-132.168960pt;}
._28{margin-left:-126.985600pt;}
._12{margin-left:-125.855147pt;}
._e{margin-left:-119.281920pt;}
._13{margin-left:-103.326720pt;}
._27{margin-left:-97.826560pt;}
._1e{margin-left:-90.977280pt;}
._24{margin-left:-89.372160pt;}
._8{margin-left:-81.456213pt;}
._1d{margin-left:-76.799787pt;}
._1c{margin-left:-74.240000pt;}
._15{margin-left:-73.006080pt;}
._17{margin-left:-59.292160pt;}
._16{margin-left:-44.074027pt;}
._25{margin-left:-29.900587pt;}
._1b{margin-left:-27.325653pt;}
._2f{margin-left:-5.504000pt;}
._2a{margin-left:-3.812373pt;}
._2b{margin-left:-2.911147pt;}
._2{margin-left:-2.021760pt;}
._3{margin-left:-1.048320pt;}
._20{width:0.961920pt;}
._33{width:1.973547pt;}
._30{width:2.999680pt;}
._31{width:4.659200pt;}
._32{width:6.221653pt;}
._34{width:7.880960pt;}
._2d{width:9.471787pt;}
._2c{width:10.961067pt;}
._2e{width:13.744000pt;}
._6e{width:15.072000pt;}
._64{width:16.095360pt;}
._6c{width:17.256747pt;}
._66{width:18.167040pt;}
._65{width:19.388800pt;}
._71{width:20.732800pt;}
._6f{width:21.807360pt;}
._70{width:22.726400pt;}
._69{width:29.747200pt;}
._6d{width:31.915733pt;}
._6b{width:44.514560pt;}
._50{width:51.679897pt;}
._39{width:65.638410pt;}
._4a{width:87.078151pt;}
._35{width:112.755822pt;}
._67{width:133.882880pt;}
._68{width:134.871680pt;}
._5a{width:168.408145pt;}
._5c{width:170.657949pt;}
._5d{width:176.681312pt;}
._38{width:178.363000pt;}
._36{width:200.724730pt;}
._4d{width:205.021352pt;}
._5b{width:210.031683pt;}
._59{width:213.877152pt;}
._62{width:215.512500pt;}
._5e{width:219.650340pt;}
._51{width:224.151175pt;}
._60{width:227.926020pt;}
._5f{width:231.960414pt;}
._4e{width:238.269825pt;}
._4c{width:240.227474pt;}
._4b{width:244.348073pt;}
._46{width:247.719357pt;}
._48{width:250.652110pt;}
._56{width:253.373973pt;}
._6a{width:255.188480pt;}
._4f{width:256.744351pt;}
._49{width:258.470434pt;}
._63{width:263.119211pt;}
._37{width:266.285512pt;}
._57{width:276.041635pt;}
._58{width:281.962840pt;}
._52{width:287.890218pt;}
._3f{width:289.563165pt;}
._47{width:300.442762pt;}
._45{width:305.091946pt;}
._3a{width:318.884707pt;}
._41{width:345.172863pt;}
._42{width:355.851915pt;}
._43{width:384.002898pt;}
._44{width:392.730566pt;}
._3c{width:433.553852pt;}
._3e{width:436.215459pt;}
._40{width:462.536407pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:41.464605pt;}
.fs9{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fs7{font-size:52.576312pt;}
.fs4{font-size:53.120000pt;}
.fsa{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.yb1{bottom:-3.013333pt;}
.yab{bottom:-0.773333pt;}
.ya9{bottom:-0.613333pt;}
.y0{bottom:0.000000pt;}
.yaf{bottom:0.186667pt;}
.ya3{bottom:0.666667pt;}
.yad{bottom:1.946667pt;}
.y63{bottom:2.586150pt;}
.y76{bottom:3.103380pt;}
.y78{bottom:3.124897pt;}
.y74{bottom:3.124988pt;}
.y5b{bottom:3.927810pt;}
.ya6{bottom:4.186667pt;}
.yb6{bottom:5.920000pt;}
.y105{bottom:5.946667pt;}
.yc3{bottom:5.960000pt;}
.y16e{bottom:6.560000pt;}
.ya0{bottom:6.906667pt;}
.y5f{bottom:9.327381pt;}
.yd3{bottom:9.440000pt;}
.ya8{bottom:14.426667pt;}
.y13f{bottom:15.200000pt;}
.y106{bottom:15.226667pt;}
.yb4{bottom:15.360000pt;}
.ya2{bottom:16.026667pt;}
.y65{bottom:16.051371pt;}
.y61{bottom:16.077233pt;}
.y73{bottom:16.594606pt;}
.ya5{bottom:19.546667pt;}
.y5a{bottom:21.033803pt;}
.y5d{bottom:22.801223pt;}
.yb5{bottom:24.640000pt;}
.y104{bottom:24.666667pt;}
.y60{bottom:29.542453pt;}
.y72{bottom:30.064137pt;}
.ybf{bottom:35.360000pt;}
.ycd{bottom:35.386667pt;}
.y5e{bottom:36.266443pt;}
.y59{bottom:38.140233pt;}
.y62{bottom:43.016295pt;}
.y71{bottom:43.533668pt;}
.yb8{bottom:44.640000pt;}
.y6{bottom:53.920000pt;}
.yc6{bottom:54.080000pt;}
.ycc{bottom:54.106667pt;}
.ybe{bottom:54.120000pt;}
.y58{bottom:55.246663pt;}
.y70{bottom:57.003199pt;}
.y6f{bottom:70.494282pt;}
.y57{bottom:72.353093pt;}
.y188{bottom:82.560000pt;}
.y9e{bottom:82.720000pt;}
.y6e{bottom:83.963813pt;}
.yf2{bottom:86.720000pt;}
.y31{bottom:87.360000pt;}
.y144{bottom:88.160000pt;}
.y56{bottom:89.432196pt;}
.y11f{bottom:89.440000pt;}
.y4d{bottom:90.240000pt;}
.y6d{bottom:97.436793pt;}
.y187{bottom:101.280000pt;}
.y9d{bottom:101.440000pt;}
.y4c{bottom:105.440000pt;}
.y66{bottom:105.620006pt;}
.y30{bottom:106.080000pt;}
.y77{bottom:106.137241pt;}
.y55{bottom:106.538626pt;}
.y143{bottom:107.520000pt;}
.y11e{bottom:108.160000pt;}
.y6c{bottom:110.902014pt;}
.y19c{bottom:114.880000pt;}
.ycb{bottom:118.880000pt;}
.y75{bottom:119.628462pt;}
.y186{bottom:120.000000pt;}
.y9c{bottom:120.160000pt;}
.y54{bottom:123.647242pt;}
.yf1{bottom:124.160000pt;}
.y6b{bottom:124.375855pt;}
.y2f{bottom:124.800000pt;}
.y11d{bottom:126.880000pt;}
.y19b{bottom:133.600000pt;}
.ya1{bottom:136.960000pt;}
.y6a{bottom:137.841076pt;}
.yd1{bottom:138.426667pt;}
.y185{bottom:138.746667pt;}
.y9b{bottom:138.906667pt;}
.y53{bottom:140.753672pt;}
.yf0{bottom:142.906667pt;}
.y2e{bottom:143.546667pt;}
.y11c{bottom:145.626667pt;}
.y69{bottom:151.332159pt;}
.y19a{bottom:152.346667pt;}
.y184{bottom:157.466667pt;}
.y9a{bottom:157.626667pt;}
.yd0{bottom:157.786667pt;}
.y52{bottom:157.860102pt;}
.yef{bottom:161.626667pt;}
.y2d{bottom:162.266667pt;}
.yae{bottom:163.040000pt;}
.y11b{bottom:164.346667pt;}
.y68{bottom:164.806000pt;}
.y199{bottom:171.066667pt;}
.y51{bottom:174.966532pt;}
.y183{bottom:176.186667pt;}
.y99{bottom:176.346667pt;}
.ycf{bottom:177.146667pt;}
.y67{bottom:178.271221pt;}
.ya4{bottom:180.000000pt;}
.yee{bottom:180.346667pt;}
.y2c{bottom:180.826667pt;}
.y11a{bottom:183.066667pt;}
.y142{bottom:183.866667pt;}
.ya7{bottom:188.320000pt;}
.yaa{bottom:188.960000pt;}
.y198{bottom:189.786667pt;}
.y50{bottom:192.072962pt;}
.y182{bottom:194.906667pt;}
.y98{bottom:195.066667pt;}
.yce{bottom:196.506667pt;}
.yed{bottom:199.066667pt;}
.y2b{bottom:199.546667pt;}
.y119{bottom:201.786667pt;}
.y197{bottom:208.506667pt;}
.y4f{bottom:209.146601pt;}
.y181{bottom:213.626667pt;}
.y97{bottom:213.786667pt;}
.yc5{bottom:215.866667pt;}
.yec{bottom:217.786667pt;}
.y2a{bottom:218.266667pt;}
.y118{bottom:220.506667pt;}
.y141{bottom:221.946667pt;}
.yac{bottom:224.160000pt;}
.y196{bottom:227.226667pt;}
.yb2{bottom:229.760000pt;}
.y180{bottom:232.346667pt;}
.yb0{bottom:232.480000pt;}
.y96{bottom:232.506667pt;}
.yca{bottom:235.226667pt;}
.yeb{bottom:236.506667pt;}
.y29{bottom:236.986667pt;}
.y117{bottom:239.226667pt;}
.y9f{bottom:245.760000pt;}
.y195{bottom:245.946667pt;}
.y17f{bottom:251.066667pt;}
.y95{bottom:251.226667pt;}
.yc9{bottom:254.746667pt;}
.yea{bottom:255.226667pt;}
.y28{bottom:255.706667pt;}
.y116{bottom:257.946667pt;}
.y140{bottom:260.026667pt;}
.y17e{bottom:269.786667pt;}
.y94{bottom:269.946667pt;}
.y115{bottom:271.386667pt;}
.y194{bottom:272.666667pt;}
.ye9{bottom:273.946667pt;}
.yc8{bottom:274.106667pt;}
.y27{bottom:274.426667pt;}
.y13e{bottom:279.386667pt;}
.y17d{bottom:288.506667pt;}
.y93{bottom:288.666667pt;}
.y114{bottom:290.746667pt;}
.y193{bottom:291.386667pt;}
.ye8{bottom:292.666667pt;}
.y26{bottom:293.146667pt;}
.yc7{bottom:293.466667pt;}
.y64{bottom:294.778919pt;}
.y166{bottom:296.026667pt;}
.ye7{bottom:306.106667pt;}
.y17c{bottom:307.226667pt;}
.y92{bottom:307.386667pt;}
.y113{bottom:310.106667pt;}
.y25{bottom:311.866667pt;}
.ybd{bottom:312.826667pt;}
.y165{bottom:314.746667pt;}
.y5c{bottom:321.717981pt;}
.y13d{bottom:323.386667pt;}
.ye6{bottom:325.466667pt;}
.y17b{bottom:325.946667pt;}
.y91{bottom:326.106667pt;}
.y192{bottom:328.826667pt;}
.y112{bottom:329.466667pt;}
.y24{bottom:330.586667pt;}
.yc4{bottom:332.186667pt;}
.y164{bottom:333.466667pt;}
.y13c{bottom:342.106667pt;}
.y17a{bottom:344.666667pt;}
.y90{bottom:344.826667pt;}
.ye5{bottom:344.986667pt;}
.y191{bottom:347.546667pt;}
.y111{bottom:348.986667pt;}
.y23{bottom:349.306667pt;}
.yc2{bottom:351.546667pt;}
.y163{bottom:352.186667pt;}
.y13b{bottom:360.866667pt;}
.y179{bottom:363.426667pt;}
.y8f{bottom:363.586667pt;}
.ye4{bottom:364.386667pt;}
.y190{bottom:366.306667pt;}
.y22{bottom:368.066667pt;}
.yc1{bottom:370.946667pt;}
.y110{bottom:374.306667pt;}
.y13a{bottom:379.586667pt;}
.y4b{bottom:381.506667pt;}
.y178{bottom:382.146667pt;}
.y8e{bottom:382.306667pt;}
.ye3{bottom:383.746667pt;}
.y18f{bottom:385.026667pt;}
.y21{bottom:386.786667pt;}
.y162{bottom:389.666667pt;}
.yc0{bottom:390.466667pt;}
.y10f{bottom:393.026667pt;}
.y139{bottom:398.306667pt;}
.y4a{bottom:400.226667pt;}
.y177{bottom:400.866667pt;}
.y8d{bottom:401.026667pt;}
.ye2{bottom:403.106667pt;}
.y18e{bottom:403.746667pt;}
.y20{bottom:405.506667pt;}
.y161{bottom:408.386667pt;}
.yb7{bottom:409.826667pt;}
.y10e{bottom:411.746667pt;}
.y138{bottom:417.026667pt;}
.y49{bottom:418.946667pt;}
.y176{bottom:419.586667pt;}
.y8c{bottom:419.746667pt;}
.ye1{bottom:422.466667pt;}
.y1f{bottom:424.226667pt;}
.ybc{bottom:429.186667pt;}
.y10d{bottom:430.466667pt;}
.y160{bottom:435.106667pt;}
.y137{bottom:435.746667pt;}
.y48{bottom:437.506667pt;}
.y175{bottom:438.146667pt;}
.y8b{bottom:438.466667pt;}
.y18d{bottom:441.186667pt;}
.ye0{bottom:441.826667pt;}
.y1e{bottom:442.946667pt;}
.ybb{bottom:448.546667pt;}
.y10c{bottom:449.186667pt;}
.y15f{bottom:453.826667pt;}
.y136{bottom:454.466667pt;}
.y47{bottom:456.226667pt;}
.y174{bottom:456.866667pt;}
.y8a{bottom:457.186667pt;}
.ydf{bottom:461.346667pt;}
.y1d{bottom:461.666667pt;}
.yba{bottom:467.906667pt;}
.y15e{bottom:472.546667pt;}
.y135{bottom:473.186667pt;}
.y46{bottom:474.946667pt;}
.y173{bottom:475.586667pt;}
.y89{bottom:475.906667pt;}
.y1c{bottom:480.386667pt;}
.yde{bottom:480.706667pt;}
.y10b{bottom:486.626667pt;}
.yb9{bottom:487.266667pt;}
.y15d{bottom:491.266667pt;}
.y134{bottom:491.906667pt;}
.y45{bottom:493.666667pt;}
.y172{bottom:494.306667pt;}
.y88{bottom:494.626667pt;}
.y1b{bottom:499.106667pt;}
.ydd{bottom:500.066667pt;}
.y10a{bottom:505.346667pt;}
.yb3{bottom:506.626667pt;}
.y15c{bottom:509.986667pt;}
.y133{bottom:510.626667pt;}
.y44{bottom:512.386667pt;}
.y171{bottom:513.026667pt;}
.y87{bottom:513.346667pt;}
.y1a{bottom:517.826667pt;}
.ydc{bottom:519.426667pt;}
.y109{bottom:524.066667pt;}
.y170{bottom:526.626667pt;}
.y15b{bottom:528.706667pt;}
.y132{bottom:529.346667pt;}
.y43{bottom:531.106667pt;}
.y86{bottom:532.066667pt;}
.y19{bottom:536.546667pt;}
.ydb{bottom:538.786667pt;}
.y108{bottom:542.786667pt;}
.y15a{bottom:547.426667pt;}
.y131{bottom:548.066667pt;}
.y42{bottom:549.826667pt;}
.y85{bottom:550.786667pt;}
.y18{bottom:555.266667pt;}
.yda{bottom:558.146667pt;}
.y107{bottom:561.506667pt;}
.y16f{bottom:564.706667pt;}
.y41{bottom:565.026667pt;}
.y4e{bottom:565.253333pt;}
.y159{bottom:566.146667pt;}
.y130{bottom:566.786667pt;}
.y84{bottom:569.506667pt;}
.y17{bottom:573.986667pt;}
.y103{bottom:574.946667pt;}
.yd9{bottom:577.533333pt;}
.y18c{bottom:580.253333pt;}
.y158{bottom:584.893333pt;}
.y12f{bottom:585.533333pt;}
.y83{bottom:588.253333pt;}
.y16{bottom:594.973333pt;}
.yd8{bottom:597.053333pt;}
.y18b{bottom:598.973333pt;}
.y16d{bottom:602.813333pt;}
.y157{bottom:603.613333pt;}
.y12e{bottom:604.253333pt;}
.y82{bottom:606.973333pt;}
.y102{bottom:613.053333pt;}
.yd7{bottom:616.413333pt;}
.y18a{bottom:617.693333pt;}
.y15{bottom:621.533333pt;}
.y156{bottom:622.333333pt;}
.y12d{bottom:622.973333pt;}
.y81{bottom:625.693333pt;}
.y16c{bottom:629.373333pt;}
.y101{bottom:632.413333pt;}
.yd6{bottom:635.773333pt;}
.y189{bottom:636.413333pt;}
.y14{bottom:640.253333pt;}
.y155{bottom:641.053333pt;}
.y12c{bottom:641.693333pt;}
.y80{bottom:644.413333pt;}
.y16b{bottom:648.093333pt;}
.y100{bottom:651.773333pt;}
.yd5{bottom:655.133333pt;}
.y13{bottom:658.973333pt;}
.y154{bottom:659.773333pt;}
.y12b{bottom:660.413333pt;}
.y7f{bottom:663.133333pt;}
.y16a{bottom:666.813333pt;}
.yff{bottom:671.133333pt;}
.yd4{bottom:674.493333pt;}
.y12{bottom:677.693333pt;}
.y153{bottom:678.493333pt;}
.y12a{bottom:679.133333pt;}
.y7e{bottom:681.693333pt;}
.y169{bottom:685.533333pt;}
.yd2{bottom:693.853333pt;}
.y11{bottom:696.413333pt;}
.y152{bottom:697.213333pt;}
.y129{bottom:697.853333pt;}
.y7d{bottom:700.413333pt;}
.y168{bottom:704.253333pt;}
.y10{bottom:715.133333pt;}
.y151{bottom:715.933333pt;}
.y128{bottom:716.573333pt;}
.y7c{bottom:719.133333pt;}
.y167{bottom:719.453333pt;}
.yf{bottom:733.853333pt;}
.y150{bottom:734.653333pt;}
.y127{bottom:735.293333pt;}
.y7b{bottom:737.853333pt;}
.ye{bottom:752.573333pt;}
.y14f{bottom:753.373333pt;}
.y126{bottom:754.013333pt;}
.y7a{bottom:756.573333pt;}
.yd{bottom:771.293333pt;}
.y14e{bottom:772.093333pt;}
.y125{bottom:772.733333pt;}
.y79{bottom:775.293333pt;}
.yfe{bottom:790.013333pt;}
.y14d{bottom:790.813333pt;}
.y124{bottom:791.453333pt;}
.yc{bottom:791.933333pt;}
.y40{bottom:794.013333pt;}
.yfd{bottom:808.773333pt;}
.y14c{bottom:809.573333pt;}
.y123{bottom:810.213333pt;}
.y3f{bottom:812.773333pt;}
.yb{bottom:815.333333pt;}
.y122{bottom:823.653333pt;}
.yfc{bottom:827.493333pt;}
.y14b{bottom:828.293333pt;}
.ya{bottom:830.373333pt;}
.y3e{bottom:831.493333pt;}
.y121{bottom:843.013333pt;}
.yfb{bottom:846.213333pt;}
.y14a{bottom:847.013333pt;}
.y3d{bottom:850.213333pt;}
.y9{bottom:852.133333pt;}
.y120{bottom:862.373333pt;}
.yfa{bottom:864.933333pt;}
.y149{bottom:865.573333pt;}
.y3c{bottom:868.933333pt;}
.y8{bottom:874.533333pt;}
.y148{bottom:879.173333pt;}
.yf9{bottom:883.653333pt;}
.y3b{bottom:887.653333pt;}
.yf8{bottom:902.373333pt;}
.y7{bottom:904.453333pt;}
.y3a{bottom:906.373333pt;}
.yf7{bottom:915.813333pt;}
.y147{bottom:917.253333pt;}
.y39{bottom:925.093333pt;}
.yf6{bottom:935.333333pt;}
.y5{bottom:938.853333pt;}
.y38{bottom:943.813333pt;}
.yf5{bottom:954.693333pt;}
.y146{bottom:955.333333pt;}
.y37{bottom:962.533333pt;}
.y4{bottom:966.213333pt;}
.yf4{bottom:974.053333pt;}
.y145{bottom:974.693333pt;}
.y36{bottom:981.253333pt;}
.yf3{bottom:993.413333pt;}
.y3{bottom:993.573333pt;}
.y35{bottom:999.973333pt;}
.y34{bottom:1018.693333pt;}
.y2{bottom:1020.800000pt;}
.y33{bottom:1043.520000pt;}
.y1{bottom:1049.440000pt;}
.y32{bottom:1061.440000pt;}
.h20{height:11.040000pt;}
.h11{height:12.952301pt;}
.h12{height:12.973853pt;}
.h1c{height:13.120000pt;}
.h1f{height:14.080000pt;}
.h21{height:14.240000pt;}
.h1e{height:16.000000pt;}
.h24{height:18.720000pt;}
.h26{height:18.752000pt;}
.h2c{height:20.000000pt;}
.h13{height:23.840000pt;}
.h1a{height:25.920000pt;}
.he{height:26.421833pt;}
.h15{height:28.640000pt;}
.h10{height:28.952336pt;}
.hd{height:29.256032pt;}
.h1b{height:33.515625pt;}
.h18{height:33.760000pt;}
.h8{height:34.374375pt;}
.hb{height:36.710999pt;}
.h16{height:37.090625pt;}
.h22{height:37.440000pt;}
.h2a{height:37.472000pt;}
.h28{height:40.151250pt;}
.h1d{height:41.112500pt;}
.h14{height:42.649687pt;}
.h29{height:42.745000pt;}
.h19{height:47.742188pt;}
.h9{height:52.834688pt;}
.h2b{height:52.934375pt;}
.h17{height:52.962000pt;}
.hc{height:53.382446pt;}
.h6{height:54.390938pt;}
.h3{height:58.563750pt;}
.h7{height:60.288750pt;}
.h4{height:74.477812pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.h23{height:96.160000pt;}
.h27{height:96.320000pt;}
.h25{height:96.352000pt;}
.ha{height:222.321732pt;}
.hf{height:269.476830pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w31{width:29.440000pt;}
.w2a{width:35.360000pt;}
.w12{width:38.880000pt;}
.w13{width:40.160000pt;}
.w15{width:41.600000pt;}
.w14{width:42.080000pt;}
.w16{width:42.240000pt;}
.w20{width:56.000000pt;}
.w2e{width:56.480000pt;}
.wc{width:60.980554pt;}
.wa{width:60.980555pt;}
.w6{width:62.119048pt;}
.w2f{width:63.200000pt;}
.w34{width:63.840000pt;}
.w2d{width:70.432000pt;}
.w33{width:71.552000pt;}
.w29{width:74.880000pt;}
.w19{width:74.912000pt;}
.w5{width:80.927908pt;}
.w8{width:81.497155pt;}
.w7{width:83.750423pt;}
.w10{width:86.880000pt;}
.w11{width:88.640000pt;}
.w9{width:91.174349pt;}
.w1d{width:93.792000pt;}
.w1e{width:93.920000pt;}
.w1c{width:93.952000pt;}
.w24{width:96.160000pt;}
.wf{width:97.600000pt;}
.we{width:97.760000pt;}
.w23{width:97.952000pt;}
.w17{width:104.160000pt;}
.w22{width:111.040000pt;}
.w2c{width:113.600000pt;}
.w1a{width:137.760000pt;}
.w21{width:150.586667pt;}
.w35{width:169.946667pt;}
.wd{width:175.517734pt;}
.w28{width:178.746667pt;}
.w27{width:180.666667pt;}
.w26{width:180.826667pt;}
.w1f{width:188.026667pt;}
.w25{width:192.186667pt;}
.w32{width:268.026667pt;}
.w1b{width:271.546667pt;}
.w18{width:281.666667pt;}
.w2b{width:284.066667pt;}
.wb{width:558.412049pt;}
.w4{width:558.412051pt;}
.w3{width:574.899890pt;}
.w30{width:624.733333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x4e{left:-4.640000pt;}
.x4b{left:-3.520000pt;}
.x0{left:0.000000pt;}
.x15{left:1.707741pt;}
.x1f{left:3.984728pt;}
.x20{left:5.692467pt;}
.x33{left:6.880000pt;}
.x10{left:7.969455pt;}
.x22{left:9.677201pt;}
.xc{left:10.954590pt;}
.x18{left:12.523428pt;}
.x1a{left:14.221681pt;}
.xe{left:15.503215pt;}
.x16{left:17.105865pt;}
.xd{left:20.051827pt;}
.x13{left:21.081104pt;}
.x12{left:23.358090pt;}
.x2c{left:24.386667pt;}
.x21{left:25.644565pt;}
.x19{left:27.912064pt;}
.x1d{left:30.767786pt;}
.x29{left:33.626667pt;}
.x6{left:47.999988pt;}
.x26{left:60.980553pt;}
.x51{left:66.879988pt;}
.x25{left:70.657747pt;}
.x52{left:71.999988pt;}
.x43{left:84.512000pt;}
.x9{left:85.791988pt;}
.x7{left:95.231988pt;}
.x32{left:96.672000pt;}
.xb{left:109.776381pt;}
.x48{left:114.271988pt;}
.xf{left:117.435904pt;}
.x37{left:119.392000pt;}
.x4c{left:124.672000pt;}
.x5{left:164.186655pt;}
.x28{left:173.600000pt;}
.x24{left:193.192853pt;}
.x23{left:198.885319pt;}
.x34{left:201.626667pt;}
.x11{left:212.025732pt;}
.x3{left:241.346655pt;}
.x3b{left:246.946667pt;}
.x49{left:255.426655pt;}
.x27{left:262.626655pt;}
.x3d{left:270.306667pt;}
.x14{left:293.522885pt;}
.x2e{left:296.960000pt;}
.x2f{left:300.480000pt;}
.x2{left:311.586655pt;}
.x17{left:356.215922pt;}
.x2b{left:359.520000pt;}
.x4{left:371.746655pt;}
.x3e{left:381.666667pt;}
.x31{left:387.360000pt;}
.x38{left:391.586667pt;}
.x4d{left:393.026667pt;}
.x4a{left:396.893322pt;}
.x44{left:404.573333pt;}
.x1{left:425.373322pt;}
.x42{left:426.493333pt;}
.x3c{left:435.613333pt;}
.x1b{left:440.530846pt;}
.x30{left:449.280000pt;}
.x4f{left:464.893333pt;}
.x2d{left:467.200000pt;}
.x3f{left:480.093333pt;}
.x35{left:483.933333pt;}
.x39{left:486.173333pt;}
.x41{left:493.693333pt;}
.x45{left:518.493333pt;}
.x1c{left:522.597246pt;}
.x50{left:529.053333pt;}
.x2a{left:534.240000pt;}
.x36{left:559.493333pt;}
.x40{left:578.373333pt;}
.x3a{left:580.613333pt;}
.x46{left:589.253333pt;}
.x1e{left:614.340840pt;}
.x47{left:646.053333pt;}
.xa{left:676.933322pt;}
.x8{left:684.933322pt;}
}




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