
    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_0552e54ae735547c3dc8cd7c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.163000;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_a85b3db1ff69bb151cca7e1f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.184000;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_63883ce75c352091c08ce734.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.184000;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_54e27803916736078f8b8396.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.163000;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_e46ba77319cbbc01b76e433a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_ab82099d08632f5119a3694b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.163000;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_ee687ab2911f57b00d235e18.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.163000;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_0783e4b3303d1bba7f07d437.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_1b765ec74a79b5334d5265e3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_12b011d486d627271b07eab3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.053711;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.035156;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_2b208b9a33a133db9e43dc2a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.854004;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_1757687a3f983865d903575c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5a21248bcf8181c25815e735.woff2')format("woff");}.fff{font-family:fff;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls25{letter-spacing:-3.624000px;}
.ls41{letter-spacing:-3.186000px;}
.ls3{letter-spacing:-2.898000px;}
.ls24{letter-spacing:-2.850000px;}
.ls36{letter-spacing:-2.718000px;}
.ls37{letter-spacing:-1.278000px;}
.ls22{letter-spacing:-1.170000px;}
.ls8{letter-spacing:-1.152000px;}
.ls6{letter-spacing:-0.990000px;}
.ls78{letter-spacing:-0.678000px;}
.ls6e{letter-spacing:-0.612000px;}
.ls83{letter-spacing:-0.544200px;}
.ls26{letter-spacing:-0.449400px;}
.ls34{letter-spacing:-0.355200px;}
.ls5b{letter-spacing:-0.346200px;}
.ls49{letter-spacing:-0.342600px;}
.ls7b{letter-spacing:-0.334200px;}
.ls7e{letter-spacing:-0.331200px;}
.ls7{letter-spacing:-0.316800px;}
.ls3f{letter-spacing:-0.308400px;}
.ls2{letter-spacing:-0.305400px;}
.ls29{letter-spacing:-0.279600px;}
.ls3d{letter-spacing:-0.273600px;}
.ls44{letter-spacing:-0.270600px;}
.ls81{letter-spacing:-0.267600px;}
.ls1{letter-spacing:-0.253200px;}
.ls63{letter-spacing:-0.250800px;}
.ls38{letter-spacing:-0.244800px;}
.ls5e{letter-spacing:-0.222000px;}
.ls23{letter-spacing:-0.219000px;}
.ls77{letter-spacing:-0.218400px;}
.ls6a{letter-spacing:-0.193200px;}
.ls30{letter-spacing:-0.190200px;}
.ls31{letter-spacing:-0.161400px;}
.ls71{letter-spacing:-0.157800px;}
.ls54{letter-spacing:-0.134400px;}
.ls65{letter-spacing:-0.133200px;}
.ls28{letter-spacing:-0.126600px;}
.ls72{letter-spacing:-0.107400px;}
.ls2e{letter-spacing:-0.097200px;}
.ls35{letter-spacing:-0.092400px;}
.ls5c{letter-spacing:-0.089400px;}
.ls20{letter-spacing:-0.069000px;}
.ls68{letter-spacing:-0.048960px;}
.ls55{letter-spacing:-0.047520px;}
.ls5{letter-spacing:-0.023040px;}
.ls7f{letter-spacing:-0.015840px;}
.ls73{letter-spacing:-0.002160px;}
.ls0{letter-spacing:0.000000px;}
.ls6f{letter-spacing:0.003600px;}
.lsa{letter-spacing:0.008640px;}
.ls2f{letter-spacing:0.020160px;}
.ls27{letter-spacing:0.025920px;}
.ls11{letter-spacing:0.028800px;}
.ls76{letter-spacing:0.037440px;}
.ls4{letter-spacing:0.043200px;}
.ls82{letter-spacing:0.054720px;}
.ls64{letter-spacing:0.069600px;}
.ls4e{letter-spacing:0.089280px;}
.ls4f{letter-spacing:0.089400px;}
.ls5a{letter-spacing:0.121200px;}
.ls62{letter-spacing:0.123840px;}
.ls53{letter-spacing:0.141000px;}
.ls51{letter-spacing:0.147000px;}
.ls1e{letter-spacing:0.155400px;}
.ls50{letter-spacing:0.161400px;}
.ls48{letter-spacing:0.162600px;}
.ls79{letter-spacing:0.164400px;}
.ls69{letter-spacing:0.175800px;}
.ls43{letter-spacing:0.186480px;}
.ls6c{letter-spacing:0.188400px;}
.ls70{letter-spacing:0.188640px;}
.ls7a{letter-spacing:0.190200px;}
.ls80{letter-spacing:0.200400px;}
.ls40{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.244800px;}
.ls6d{letter-spacing:0.253200px;}
.ls3b{letter-spacing:0.262080px;}
.ls1f{letter-spacing:0.270600px;}
.ls3e{letter-spacing:0.285000px;}
.ls47{letter-spacing:0.296400px;}
.ls59{letter-spacing:0.303120px;}
.ls61{letter-spacing:0.305280px;}
.ls45{letter-spacing:0.319800px;}
.ls4d{letter-spacing:0.342720px;}
.ls56{letter-spacing:0.348000px;}
.ls3c{letter-spacing:0.348600px;}
.ls52{letter-spacing:0.360000px;}
.ls4c{letter-spacing:0.449400px;}
.ls4b{letter-spacing:0.457920px;}
.ls42{letter-spacing:0.485760px;}
.ls58{letter-spacing:0.499680px;}
.ls57{letter-spacing:0.514800px;}
.ls4a{letter-spacing:0.723600px;}
.ls46{letter-spacing:2.178000px;}
.ls33{letter-spacing:3.326400px;}
.ls75{letter-spacing:8.945280px;}
.ls67{letter-spacing:11.825280px;}
.ls2d{letter-spacing:13.265280px;}
.ls1a{letter-spacing:23.462400px;}
.ls17{letter-spacing:24.902400px;}
.ls15{letter-spacing:25.622400px;}
.ls2a{letter-spacing:28.385280px;}
.ls16{letter-spacing:40.046400px;}
.ls1c{letter-spacing:42.902400px;}
.lsf{letter-spacing:43.622400px;}
.ls19{letter-spacing:44.342400px;}
.ls12{letter-spacing:45.062400px;}
.ls60{letter-spacing:52.865280px;}
.ls3a{letter-spacing:59.321280px;}
.ls14{letter-spacing:59.486400px;}
.ls1b{letter-spacing:60.206400px;}
.ls18{letter-spacing:60.926400px;}
.ls10{letter-spacing:62.366400px;}
.ls74{letter-spacing:62.730720px;}
.lsc{letter-spacing:63.062400px;}
.ls7d{letter-spacing:64.170720px;}
.ls7c{letter-spacing:65.610720px;}
.ls5f{letter-spacing:67.241280px;}
.ls5d{letter-spacing:67.985280px;}
.ls1d{letter-spacing:68.846400px;}
.ls66{letter-spacing:69.210720px;}
.ls39{letter-spacing:76.625280px;}
.lse{letter-spacing:77.486400px;}
.ls13{letter-spacing:78.926400px;}
.lsb{letter-spacing:79.646400px;}
.ls2c{letter-spacing:93.905280px;}
.lsd{letter-spacing:96.206400px;}
.ls2b{letter-spacing:111.905280px;}
.ls32{letter-spacing:847.560000px;}
.ls9{letter-spacing:847.596000px;}
.ls6b{letter-spacing:2466.196800px;}
.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;}
}
.ws1f{word-spacing:-66.240000px;}
.ws2a{word-spacing:-59.760000px;}
.ws48{word-spacing:-31.559280px;}
.ws0{word-spacing:-31.358880px;}
.ws47{word-spacing:-31.343040px;}
.ws3c{word-spacing:-31.309920px;}
.ws18{word-spacing:-31.261680px;}
.ws42{word-spacing:-31.140480px;}
.ws46{word-spacing:-31.027680px;}
.ws1a{word-spacing:-31.003680px;}
.ws25{word-spacing:-21.122640px;}
.ws24{word-spacing:-19.264440px;}
.ws26{word-spacing:-19.241040px;}
.ws3e{word-spacing:-19.197840px;}
.ws4a{word-spacing:-19.034040px;}
.ws5{word-spacing:-18.944640px;}
.ws49{word-spacing:-18.677040px;}
.ws4{word-spacing:-18.639240px;}
.ws21{word-spacing:-18.636240px;}
.ws43{word-spacing:-17.873400px;}
.ws20{word-spacing:-17.838600px;}
.wsd{word-spacing:-17.824200px;}
.wsf{word-spacing:-17.798400px;}
.ws3d{word-spacing:-17.729400px;}
.ws44{word-spacing:-17.718000px;}
.ws30{word-spacing:-17.715000px;}
.wsb{word-spacing:-17.709000px;}
.wsc{word-spacing:-17.596800px;}
.ws15{word-spacing:-17.579520px;}
.wsa{word-spacing:-17.562240px;}
.ws2{word-spacing:-17.553600px;}
.ws7{word-spacing:-17.530560px;}
.wse{word-spacing:-17.484600px;}
.ws1c{word-spacing:-17.461200px;}
.ws16{word-spacing:-17.427000px;}
.ws1b{word-spacing:-17.392200px;}
.ws11{word-spacing:-17.334600px;}
.ws39{word-spacing:-17.302800px;}
.ws3{word-spacing:-17.300400px;}
.ws17{word-spacing:-17.274000px;}
.ws8{word-spacing:-17.236800px;}
.ws45{word-spacing:-17.219400px;}
.ws14{word-spacing:-17.104200px;}
.ws29{word-spacing:-17.091360px;}
.ws41{word-spacing:-17.089200px;}
.ws4b{word-spacing:-17.009400px;}
.ws40{word-spacing:-16.983960px;}
.ws3f{word-spacing:-16.933560px;}
.ws38{word-spacing:-16.865280px;}
.ws37{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.401600px;}
.ws10{word-spacing:-16.383600px;}
.ws1e{word-spacing:-16.275600px;}
.ws2e{word-spacing:-16.196400px;}
.ws6{word-spacing:-16.046640px;}
.ws2d{word-spacing:-15.983400px;}
.ws2f{word-spacing:-15.977400px;}
.ws33{word-spacing:-15.957600px;}
.ws3a{word-spacing:-15.906000px;}
.ws28{word-spacing:-15.836400px;}
.ws32{word-spacing:-15.788880px;}
.ws19{word-spacing:-15.765120px;}
.ws23{word-spacing:-15.758640px;}
.ws35{word-spacing:-15.747000px;}
.ws3b{word-spacing:-15.703200px;}
.ws31{word-spacing:-15.702000px;}
.ws2b{word-spacing:-15.493800px;}
.ws34{word-spacing:-15.490200px;}
.ws1d{word-spacing:-14.835600px;}
.ws12{word-spacing:-14.703600px;}
.ws27{word-spacing:-14.222880px;}
.ws13{word-spacing:-13.929600px;}
.ws22{word-spacing:-13.796640px;}
.ws36{word-spacing:-13.446720px;}
.ws2c{word-spacing:-11.943360px;}
.ws1{word-spacing:0.000000px;}
._26{margin-left:-36.312000px;}
._2a{margin-left:-31.012320px;}
._1c{margin-left:-15.942960px;}
._1d{margin-left:-13.184160px;}
._20{margin-left:-12.171120px;}
._1a{margin-left:-10.936080px;}
._21{margin-left:-9.801600px;}
._1f{margin-left:-8.749440px;}
._1b{margin-left:-7.724880px;}
._1e{margin-left:-5.964240px;}
._4{margin-left:-4.636800px;}
._3{margin-left:-3.317040px;}
._2{margin-left:-2.085120px;}
._0{margin-left:-1.054080px;}
._1{width:1.535760px;}
._5{width:3.107760px;}
._a{width:4.199760px;}
._11{width:5.549040px;}
._18{width:6.614400px;}
._b{width:7.617600px;}
._d{width:8.647200px;}
._c{width:9.756480px;}
._19{width:10.802160px;}
._7{width:12.334320px;}
._6{width:13.512960px;}
._13{width:15.112800px;}
._12{width:16.223040px;}
._14{width:18.671040px;}
._25{width:20.016000px;}
._28{width:21.121200px;}
._e{width:22.309680px;}
._9{width:23.342400px;}
._8{width:24.805440px;}
._10{width:26.625600px;}
._15{width:27.903600px;}
._17{width:29.972160px;}
._16{width:32.019840px;}
._27{width:36.443520px;}
._2b{width:37.495200px;}
._f{width:38.684160px;}
._2e{width:40.123440px;}
._23{width:41.868720px;}
._24{width:43.435680px;}
._31{width:50.143680px;}
._32{width:51.646800px;}
._22{width:52.874400px;}
._30{width:63.555840px;}
._2f{width:64.644480px;}
._29{width:152.124960px;}
._2c{width:171.224640px;}
._2d{width:172.469280px;}
.fc4{color:rgb(70,120,134);}
.fc5{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,100,94);}
.fc1{color:transparent;}
.fc6{color:rgb(255,0,0);}
.fc0{color:rgb(80,102,88);}
.fs5{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.yfd{bottom:4.680000px;}
.y28{bottom:5.040000px;}
.y2a{bottom:5.220000px;}
.y2d{bottom:5.265000px;}
.y2{bottom:6.120000px;}
.y33{bottom:6.660000px;}
.y32{bottom:6.840000px;}
.y11c{bottom:7.560000px;}
.y136{bottom:7.740000px;}
.y158{bottom:14.400000px;}
.y108{bottom:24.114000px;}
.yfc{bottom:24.120000px;}
.y134{bottom:24.165000px;}
.y12b{bottom:24.294000px;}
.y102{bottom:24.300000px;}
.y129{bottom:24.345000px;}
.y111{bottom:24.660000px;}
.y36{bottom:26.460000px;}
.y39{bottom:26.640000px;}
.y10f{bottom:28.260000px;}
.y157{bottom:34.020000px;}
.y107{bottom:43.734000px;}
.yfb{bottom:43.740000px;}
.yff{bottom:43.785000px;}
.y105{bottom:44.094000px;}
.y110{bottom:46.260000px;}
.y10e{bottom:47.700000px;}
.y35{bottom:48.060000px;}
.y156{bottom:53.460000px;}
.y5{bottom:58.896000px;}
.y10a{bottom:63.180000px;}
.y133{bottom:63.225000px;}
.y152{bottom:63.360000px;}
.y101{bottom:63.405000px;}
.y104{bottom:63.534000px;}
.y13f{bottom:64.080000px;}
.y146{bottom:64.254000px;}
.y38{bottom:69.480000px;}
.y155{bottom:73.080000px;}
.y10c{bottom:75.240000px;}
.y4{bottom:75.276000px;}
.y113{bottom:81.180000px;}
.y112{bottom:82.800000px;}
.y100{bottom:82.845000px;}
.y13e{bottom:83.520000px;}
.y145{bottom:83.874000px;}
.y193{bottom:102.240000px;}
.y151{bottom:102.420000px;}
.y128{bottom:102.465000px;}
.y196{bottom:102.780000px;}
.y14e{bottom:103.005000px;}
.y13d{bottom:103.140000px;}
.y144{bottom:103.314000px;}
.yd4{bottom:120.456000px;}
.y1af{bottom:120.636000px;}
.y150{bottom:121.860000px;}
.y127{bottom:121.905000px;}
.y14d{bottom:122.625000px;}
.y1e3{bottom:122.796000px;}
.y143{bottom:122.934000px;}
.y1b6{bottom:123.696000px;}
.y20{bottom:125.496000px;}
.y1f6{bottom:132.156000px;}
.y69{bottom:132.516000px;}
.y206{bottom:133.416000px;}
.y142{bottom:137.916000px;}
.y192{bottom:141.300000px;}
.y198{bottom:141.480000px;}
.y126{bottom:141.525000px;}
.y1ae{bottom:141.876000px;}
.y14c{bottom:142.065000px;}
.y11d{bottom:142.776000px;}
.yd3{bottom:143.496000px;}
.y103{bottom:143.856000px;}
.y1b5{bottom:144.756000px;}
.y17d{bottom:145.116000px;}
.y1d6{bottom:150.870000px;}
.y169{bottom:151.770000px;}
.y45{bottom:152.310000px;}
.y184{bottom:152.490000px;}
.ya4{bottom:153.390000px;}
.y1f5{bottom:155.370000px;}
.y220{bottom:155.550000px;}
.y68{bottom:155.730000px;}
.y1ad{bottom:158.250000px;}
.y1cc{bottom:160.230000px;}
.y1f{bottom:160.770000px;}
.y191{bottom:160.920000px;}
.y125{bottom:160.965000px;}
.y1b4{bottom:161.310000px;}
.y1e2{bottom:164.910000px;}
.y17c{bottom:168.330000px;}
.y205{bottom:168.510000px;}
.y44{bottom:173.010000px;}
.y149{bottom:177.690000px;}
.y1f4{bottom:178.590000px;}
.y21f{bottom:178.770000px;}
.y67{bottom:178.950000px;}
.y1d2{bottom:179.130000px;}
.y190{bottom:180.360000px;}
.y124{bottom:180.585000px;}
.y1e1{bottom:181.650000px;}
.y1d5{bottom:185.250000px;}
.y88{bottom:186.510000px;}
.y168{bottom:186.870000px;}
.ya3{bottom:188.670000px;}
.y17b{bottom:191.550000px;}
.y43{bottom:193.710000px;}
.y1cb{bottom:195.510000px;}
.y1d1{bottom:195.690000px;}
.y1e{bottom:195.870000px;}
.y18f{bottom:199.980000px;}
.y123{bottom:200.025000px;}
.y1f3{bottom:201.630000px;}
.yd2{bottom:201.990000px;}
.y66{bottom:202.170000px;}
.y106{bottom:203.070000px;}
.y130{bottom:206.850000px;}
.yef{bottom:207.570000px;}
.y167{bottom:209.910000px;}
.y21e{bottom:214.050000px;}
.y42{bottom:214.410000px;}
.y1ca{bottom:218.550000px;}
.ya2{bottom:219.270000px;}
.y18e{bottom:219.420000px;}
.y122{bottom:219.645000px;}
.y11e{bottom:221.439000px;}
.y1f2{bottom:224.850000px;}
.yd1{bottom:225.030000px;}
.y65{bottom:225.210000px;}
.y12f{bottom:226.290000px;}
.y17a{bottom:226.830000px;}
.y87{bottom:228.270000px;}
.yee{bottom:230.610000px;}
.y1d{bottom:231.150000px;}
.y194{bottom:231.330000px;}
.y166{bottom:233.130000px;}
.y148{bottom:236.910000px;}
.y21d{bottom:237.090000px;}
.y18d{bottom:239.040000px;}
.y1c9{bottom:241.770000px;}
.y12a{bottom:241.950000px;}
.y12e{bottom:245.910000px;}
.y1f1{bottom:248.070000px;}
.yd0{bottom:248.250000px;}
.y64{bottom:248.430000px;}
.y185{bottom:249.705000px;}
.y204{bottom:249.870000px;}
.ya1{bottom:250.050000px;}
.yed{bottom:254.010000px;}
.y41{bottom:256.170000px;}
.y165{bottom:256.350000px;}
.y18c{bottom:258.510000px;}
.y21c{bottom:260.310000px;}
.y179{bottom:262.110000px;}
.yfe{bottom:262.470000px;}
.y1c8{bottom:264.810000px;}
.y1c{bottom:266.250000px;}
.y86{bottom:270.030000px;}
.y1f0{bottom:271.290000px;}
.ycf{bottom:271.470000px;}
.y203{bottom:273.090000px;}
.y1b9{bottom:274.890000px;}
.yec{bottom:277.230000px;}
.y18b{bottom:278.130000px;}
.y164{bottom:279.570000px;}
.ya0{bottom:280.650000px;}
.y121{bottom:281.730000px;}
.y63{bottom:283.890000px;}
.y178{bottom:285.150000px;}
.y1c7{bottom:288.075000px;}
.y186{bottom:290.775000px;}
.y1ef{bottom:294.555000px;}
.yce{bottom:294.735000px;}
.y21b{bottom:295.635000px;}
.y1b8{bottom:295.995000px;}
.y147{bottom:296.355000px;}
.y1dd{bottom:296.535000px;}
.y18a{bottom:297.570000px;}
.y40{bottom:297.975000px;}
.yeb{bottom:300.495000px;}
.y1b{bottom:301.395000px;}
.y163{bottom:302.655000px;}
.y62{bottom:306.975000px;}
.y177{bottom:308.235000px;}
.y1c6{bottom:311.295000px;}
.y9f{bottom:311.475000px;}
.y85{bottom:311.655000px;}
.y1b7{bottom:312.555000px;}
.y189{bottom:317.190000px;}
.y21a{bottom:318.675000px;}
.y202{bottom:319.575000px;}
.yea{bottom:323.715000px;}
.y162{bottom:325.875000px;}
.y1ee{bottom:329.115000px;}
.y61{bottom:330.015000px;}
.y176{bottom:331.455000px;}
.y1dc{bottom:331.635000px;}
.y9e{bottom:334.335000px;}
.y1c5{bottom:334.515000px;}
.y13c{bottom:336.135000px;}
.y188{bottom:336.630000px;}
.y1a{bottom:336.675000px;}
.y219{bottom:341.895000px;}
.y3f{bottom:342.435000px;}
.y201{bottom:342.615000px;}
.ye9{bottom:346.935000px;}
.y1ed{bottom:350.355000px;}
.y60{bottom:353.235000px;}
.y84{bottom:353.415000px;}
.y175{bottom:354.675000px;}
.y187{bottom:356.250000px;}
.y1c4{bottom:357.735000px;}
.y3e{bottom:359.535000px;}
.yfa{bottom:360.975000px;}
.y161{bottom:361.335000px;}
.y9d{bottom:365.295000px;}
.y200{bottom:365.835000px;}
.ye8{bottom:370.155000px;}
.y1ec{bottom:371.415000px;}
.y19{bottom:371.775000px;}
.y141{bottom:375.915000px;}
.y5f{bottom:376.455000px;}
.y218{bottom:377.175000px;}
.y174{bottom:377.895000px;}
.ycd{bottom:388.155000px;}
.y9c{bottom:388.335000px;}
.y1ff{bottom:389.055000px;}
.y1eb{bottom:392.475000px;}
.y1c3{bottom:393.015000px;}
.y83{bottom:395.175000px;}
.y160{bottom:396.435000px;}
.y5e{bottom:399.675000px;}
.y217{bottom:400.215000px;}
.y173{bottom:401.115000px;}
.y3d{bottom:403.275000px;}
.ye7{bottom:405.795000px;}
.y18{bottom:407.055000px;}
.y22b{bottom:407.415000px;}
.ycc{bottom:411.375000px;}
.y1ea{bottom:413.535000px;}
.y140{bottom:415.875000px;}
.y1c2{bottom:416.055000px;}
.y9b{bottom:419.115000px;}
.y15f{bottom:419.475000px;}
.y5d{bottom:422.895000px;}
.y216{bottom:423.435000px;}
.y172{bottom:424.155000px;}
.y1fe{bottom:424.335000px;}
.ye6{bottom:428.655000px;}
.yb8{bottom:431.175000px;}
.y1e9{bottom:434.595000px;}
.y82{bottom:436.755000px;}
.yf9{bottom:438.375000px;}
.y1c1{bottom:439.275000px;}
.y17{bottom:442.155000px;}
.y15e{bottom:442.695000px;}
.ycb{bottom:446.835000px;}
.y171{bottom:447.375000px;}
.y9a{bottom:449.895000px;}
.y22a{bottom:452.055000px;}
.y5c{bottom:458.175000px;}
.y215{bottom:458.715000px;}
.y1c0{bottom:462.315000px;}
.y1a7{bottom:462.855000px;}
.y1e8{bottom:463.215000px;}
.ye5{bottom:464.115000px;}
.y15d{bottom:465.735000px;}
.y3c{bottom:468.435000px;}
.yca{bottom:469.875000px;}
.y1fd{bottom:470.595000px;}
.yf8{bottom:472.215000px;}
.y16{bottom:477.435000px;}
.y99{bottom:480.495000px;}
.y5b{bottom:481.215000px;}
.y214{bottom:481.755000px;}
.y170{bottom:482.835000px;}
.y81{bottom:483.555000px;}
.y1bf{bottom:485.535000px;}
.y229{bottom:487.155000px;}
.yb7{bottom:488.955000px;}
.yc9{bottom:492.915000px;}
.yf7{bottom:495.075000px;}
.y1a6{bottom:498.315000px;}
.ye4{bottom:498.675000px;}
.y5a{bottom:504.435000px;}
.y213{bottom:504.975000px;}
.y16f{bottom:505.875000px;}
.y80{bottom:506.595000px;}
.y1be{bottom:508.755000px;}
.y3b{bottom:509.475000px;}
.y98{bottom:511.275000px;}
.y15c{bottom:512.175000px;}
.y15{bottom:512.535000px;}
.y1fc{bottom:512.715000px;}
.y12d{bottom:514.155000px;}
.ye3{bottom:515.235000px;}
.y120{bottom:516.855000px;}
.yf6{bottom:518.295000px;}
.y1a5{bottom:521.355000px;}
.y228{bottom:522.255000px;}
.y59{bottom:527.475000px;}
.y212{bottom:528.195000px;}
.yc8{bottom:528.375000px;}
.y16e{bottom:528.915000px;}
.y7f{bottom:529.815000px;}
.yb6{bottom:530.535000px;}
.y15b{bottom:535.395000px;}
.yf5{bottom:541.515000px;}
.y97{bottom:541.875000px;}
.y1bd{bottom:544.035000px;}
.y1a4{bottom:544.575000px;}
.y3a{bottom:544.755000px;}
.y14{bottom:547.845000px;}
.y58{bottom:550.725000px;}
.yc7{bottom:551.445000px;}
.y16d{bottom:552.165000px;}
.y13b{bottom:553.965000px;}
.y11f{bottom:556.665000px;}
.y37{bottom:561.885000px;}
.y227{bottom:563.325000px;}
.y211{bottom:563.505000px;}
.y1fb{bottom:564.405000px;}
.yf4{bottom:564.765000px;}
.y7e{bottom:565.125000px;}
.y1a3{bottom:567.825000px;}
.y15a{bottom:570.705000px;}
.yb5{bottom:572.325000px;}
.y96{bottom:572.505000px;}
.y57{bottom:573.945000px;}
.yc6{bottom:574.485000px;}
.y1db{bottom:575.385000px;}
.y1ac{bottom:575.565000px;}
.y1e7{bottom:576.285000px;}
.y1bc{bottom:578.625000px;}
.y13{bottom:582.945000px;}
.y210{bottom:586.545000px;}
.y1fa{bottom:587.445000px;}
.ye2{bottom:587.625000px;}
.yf3{bottom:587.985000px;}
.y7d{bottom:588.165000px;}
.y1a2{bottom:590.865000px;}
.y13a{bottom:593.925000px;}
.y11b{bottom:596.625000px;}
.y56{bottom:597.165000px;}
.y1da{bottom:598.605000px;}
.y1bb{bottom:599.685000px;}
.y1e0{bottom:600.225000px;}
.y95{bottom:603.285000px;}
.y159{bottom:605.985000px;}
.y20f{bottom:609.765000px;}
.yc5{bottom:609.945000px;}
.ye1{bottom:610.485000px;}
.y1ab{bottom:610.665000px;}
.y7c{bottom:611.385000px;}
.y1e6{bottom:611.565000px;}
.yb4{bottom:616.785000px;}
.y12{bottom:618.225000px;}
.y55{bottom:620.385000px;}
.y1ba{bottom:621.285000px;}
.y1d9{bottom:621.825000px;}
.yf2{bottom:622.545000px;}
.y154{bottom:623.085000px;}
.y1a1{bottom:626.325000px;}
.y1d0{bottom:629.025000px;}
.yc4{bottom:632.985000px;}
.y1d4{bottom:633.525000px;}
.ye0{bottom:633.705000px;}
.y94{bottom:633.885000px;}
.yb3{bottom:634.065000px;}
.y7b{bottom:634.605000px;}
.y11a{bottom:637.845000px;}
.y1df{bottom:642.345000px;}
.y54{bottom:643.425000px;}
.yf1{bottom:643.785000px;}
.y1d8{bottom:644.865000px;}
.y20e{bottom:645.045000px;}
.y34{bottom:648.645000px;}
.y1a0{bottom:649.365000px;}
.y1d3{bottom:650.085000px;}
.y11{bottom:653.325000px;}
.yc3{bottom:656.025000px;}
.ydf{bottom:656.925000px;}
.yb2{bottom:657.285000px;}
.y7a{bottom:657.825000px;}
.y1de{bottom:658.905000px;}
.y1cf{bottom:662.145000px;}
.y183{bottom:662.685000px;}
.y93{bottom:664.665000px;}
.y53{bottom:666.645000px;}
.y20d{bottom:668.085000px;}
.y119{bottom:671.685000px;}
.yf0{bottom:672.405000px;}
.y19f{bottom:672.585000px;}
.y139{bottom:673.485000px;}
.y226{bottom:674.025000px;}
.yde{bottom:680.145000px;}
.y1d7{bottom:680.325000px;}
.yb1{bottom:680.505000px;}
.y79{bottom:680.865000px;}
.y1ce{bottom:683.205000px;}
.y10{bottom:688.605000px;}
.y52{bottom:689.865000px;}
.y20c{bottom:691.305000px;}
.yc2{bottom:691.485000px;}
.y118{bottom:694.725000px;}
.y92{bottom:695.265000px;}
.y19e{bottom:695.625000px;}
.y225{bottom:697.245000px;}
.ydd{bottom:703.365000px;}
.yb0{bottom:703.725000px;}
.y78{bottom:704.085000px;}
.y51{bottom:713.085000px;}
.y138{bottom:713.265000px;}
.y31{bottom:713.805000px;}
.y20b{bottom:714.525000px;}
.y117{bottom:717.945000px;}
.y19d{bottom:718.845000px;}
.y224{bottom:720.465000px;}
.y1cd{bottom:720.825000px;}
.y14b{bottom:721.545000px;}
.yf{bottom:723.705000px;}
.y91{bottom:726.045000px;}
.ydc{bottom:726.405000px;}
.yc1{bottom:726.585000px;}
.yaf{bottom:726.945000px;}
.y77{bottom:727.305000px;}
.y50{bottom:736.305000px;}
.y30{bottom:737.745000px;}
.y182{bottom:740.085000px;}
.y116{bottom:740.985000px;}
.y19c{bottom:742.065000px;}
.y223{bottom:743.685000px;}
.yc0{bottom:749.625000px;}
.yae{bottom:750.165000px;}
.y1e5{bottom:750.525000px;}
.y137{bottom:753.045000px;}
.y90{bottom:756.645000px;}
.ye{bottom:758.805000px;}
.y4f{bottom:759.345000px;}
.y2f{bottom:759.885000px;}
.y153{bottom:761.325000px;}
.y76{bottom:762.585000px;}
.y115{bottom:764.205000px;}
.y19b{bottom:765.285000px;}
.y222{bottom:766.905000px;}
.ybf{bottom:772.845000px;}
.y20a{bottom:773.025000px;}
.yad{bottom:773.565000px;}
.y1e4{bottom:773.745000px;}
.y181{bottom:773.925000px;}
.y135{bottom:776.265000px;}
.y2e{bottom:782.205000px;}
.y4e{bottom:782.565000px;}
.y16c{bottom:785.085000px;}
.y75{bottom:785.625000px;}
.y8f{bottom:787.425000px;}
.y19a{bottom:788.505000px;}
.yd{bottom:794.085000px;}
.ybe{bottom:796.065000px;}
.yac{bottom:796.785000px;}
.ydb{bottom:796.965000px;}
.y114{bottom:799.665000px;}
.y2c{bottom:804.345000px;}
.y4d{bottom:805.785000px;}
.y221{bottom:807.990000px;}
.y1b3{bottom:808.170000px;}
.y74{bottom:808.890000px;}
.y10b{bottom:816.810000px;}
.y8e{bottom:818.070000px;}
.ybd{bottom:819.330000px;}
.yab{bottom:820.050000px;}
.y16b{bottom:820.230000px;}
.y14f{bottom:820.590000px;}
.y199{bottom:823.830000px;}
.y2b{bottom:826.710000px;}
.yc{bottom:829.230000px;}
.y1b2{bottom:831.210000px;}
.y1aa{bottom:831.390000px;}
.y73{bottom:832.110000px;}
.y195{bottom:840.930000px;}
.y4c{bottom:841.110000px;}
.yaa{bottom:842.190000px;}
.ybc{bottom:842.370000px;}
.yda{bottom:843.270000px;}
.y29{bottom:848.850000px;}
.y1b1{bottom:854.430000px;}
.y72{bottom:855.330000px;}
.y4b{bottom:864.150000px;}
.yb{bottom:864.510000px;}
.ybb{bottom:865.590000px;}
.yd9{bottom:866.490000px;}
.y1a9{bottom:866.670000px;}
.y27{bottom:871.170000px;}
.y209{bottom:877.830000px;}
.y71{bottom:878.370000px;}
.y8d{bottom:879.450000px;}
.ya9{bottom:886.650000px;}
.y4a{bottom:887.370000px;}
.yba{bottom:888.810000px;}
.yd8{bottom:889.710000px;}
.y1b0{bottom:889.890000px;}
.y132{bottom:897.990000px;}
.ya{bottom:899.610000px;}
.y208{bottom:900.870000px;}
.y70{bottom:901.590000px;}
.y1f9{bottom:907.710000px;}
.ya8{bottom:908.970000px;}
.y8c{bottom:910.230000px;}
.y49{bottom:910.590000px;}
.yb9{bottom:912.030000px;}
.y26{bottom:912.210000px;}
.yd7{bottom:912.750000px;}
.y10d{bottom:915.090000px;}
.y6f{bottom:924.810000px;}
.y16a{bottom:924.990000px;}
.ya7{bottom:931.290000px;}
.y48{bottom:933.810000px;}
.y9{bottom:934.890000px;}
.yd6{bottom:935.970000px;}
.y207{bottom:936.150000px;}
.y131{bottom:937.770000px;}
.y8b{bottom:940.830000px;}
.y25{bottom:947.310000px;}
.y6e{bottom:948.030000px;}
.ya6{bottom:953.430000px;}
.y47{bottom:956.850000px;}
.y14a{bottom:958.110000px;}
.y180{bottom:959.190000px;}
.y1f8{bottom:959.370000px;}
.y8{bottom:969.990000px;}
.y6d{bottom:971.250000px;}
.yd5{bottom:971.430000px;}
.ya5{bottom:976.650000px;}
.y12c{bottom:977.730000px;}
.y1a8{bottom:978.090000px;}
.y109{bottom:978.450000px;}
.y46{bottom:980.250000px;}
.y17f{bottom:982.410000px;}
.y24{bottom:982.590000px;}
.y8a{bottom:982.770000px;}
.y6c{bottom:994.290000px;}
.y1f7{bottom:994.470000px;}
.y197{bottom:997.890000px;}
.y7{bottom:1005.270000px;}
.y6b{bottom:1017.510000px;}
.y17e{bottom:1017.690000px;}
.y23{bottom:1024.530000px;}
.y89{bottom:1040.550000px;}
.y6a{bottom:1040.730000px;}
.y6{bottom:1047.210000px;}
.y22{bottom:1062.330000px;}
.y3{bottom:1095.120000px;}
.y21{bottom:1099.800000px;}
.y1{bottom:1111.500000px;}
.h5{height:21.420000px;}
.h6{height:21.600000px;}
.h7{height:21.636000px;}
.h1{height:22.500000px;}
.hc{height:22.536000px;}
.h8{height:23.220000px;}
.h1e{height:39.060000px;}
.h1f{height:39.096000px;}
.hb{height:43.020000px;}
.h12{height:55.636560px;}
.h14{height:56.891520px;}
.h13{height:58.500000px;}
.h28{height:58.536000px;}
.h17{height:58.680000px;}
.h25{height:58.716000px;}
.h1c{height:61.189805px;}
.h2{height:61.669440px;}
.h1a{height:62.640000px;}
.h10{height:63.060480px;}
.h9{height:64.440000px;}
.h11{height:65.010937px;}
.hf{height:68.084282px;}
.he{height:68.956875px;}
.h4{height:70.664062px;}
.h18{height:78.120000px;}
.ha{height:85.860000px;}
.h1b{height:97.560000px;}
.h22{height:97.596000px;}
.h15{height:97.776000px;}
.h16{height:117.900000px;}
.h3{height:125.435520px;}
.h27{height:136.800000px;}
.hd{height:137.164219px;}
.h2c{height:156.240000px;}
.h19{height:160.920000px;}
.h23{height:177.300000px;}
.h24{height:197.490000px;}
.h2b{height:215.640000px;}
.h20{height:234.390000px;}
.h26{height:235.830000px;}
.h2a{height:371.010000px;}
.h1d{height:452.955000px;}
.h21{height:462.675000px;}
.h29{height:509.295000px;}
.h0{height:1188.000000px;}
.we{width:90.900000px;}
.w9{width:91.620000px;}
.wf{width:93.780000px;}
.wb{width:98.280000px;}
.w11{width:99.576000px;}
.w6{width:107.136000px;}
.w15{width:118.440000px;}
.w13{width:127.620000px;}
.w14{width:130.896000px;}
.wa{width:134.316000px;}
.wd{width:134.676000px;}
.wc{width:156.810000px;}
.w3{width:167.580000px;}
.w5{width:174.600000px;}
.w7{width:181.470000px;}
.w10{width:189.390000px;}
.w1{width:234.030000px;}
.w8{width:235.110000px;}
.w12{width:316.470000px;}
.w16{width:322.275000px;}
.w4{width:532.185000px;}
.w2{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:7.740000px;}
.x22{left:8.820000px;}
.x21{left:10.620000px;}
.x1b{left:13.320000px;}
.x1d{left:16.380000px;}
.x25{left:25.560000px;}
.x1c{left:29.160000px;}
.x2a{left:34.380000px;}
.x23{left:38.880000px;}
.x24{left:43.014000px;}
.x1{left:108.036000px;}
.x34{left:110.195986px;}
.x2e{left:112.715986px;}
.x3{left:117.000000px;}
.x14{left:120.815986px;}
.x3b{left:122.795986px;}
.xf{left:124.595986px;}
.x41{left:129.815986px;}
.x40{left:131.435986px;}
.x32{left:133.055986px;}
.x13{left:135.035986px;}
.x10{left:140.975986px;}
.x39{left:143.315986px;}
.x31{left:147.995986px;}
.x12{left:154.469986px;}
.x11{left:162.029986px;}
.x3c{left:176.429986px;}
.x3e{left:179.669986px;}
.x2b{left:189.029986px;}
.x16{left:201.090000px;}
.x1e{left:203.250000px;}
.x37{left:217.289986px;}
.x5{left:234.585000px;}
.x27{left:237.090000px;}
.x9{left:274.529986px;}
.xb{left:277.230000px;}
.xc{left:284.070000px;}
.x35{left:300.134986px;}
.x15{left:334.694986px;}
.x17{left:336.135000px;}
.x2{left:342.075000px;}
.x28{left:368.715000px;}
.xd{left:391.935000px;}
.x1f{left:393.375000px;}
.x2f{left:419.834986px;}
.x42{left:433.874986px;}
.x18{left:435.135000px;}
.x26{left:459.074986px;}
.x29{left:487.875000px;}
.x20{left:493.665000px;}
.xe{left:574.305000px;}
.x4{left:576.105000px;}
.x19{left:592.665000px;}
.x6{left:641.804986px;}
.x3d{left:676.004986px;}
.x3a{left:677.264986px;}
.x33{left:679.064986px;}
.x8{left:685.904986px;}
.x7{left:703.589986px;}
.x1a{left:728.070000px;}
.x2c{left:740.669986px;}
.x38{left:747.149986px;}
.x2d{left:751.649986px;}
.x36{left:752.729986px;}
.x30{left:764.249986px;}
.x3f{left:775.949986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls25{letter-spacing:-3.221333pt;}
.ls41{letter-spacing:-2.832000pt;}
.ls3{letter-spacing:-2.576000pt;}
.ls24{letter-spacing:-2.533333pt;}
.ls36{letter-spacing:-2.416000pt;}
.ls37{letter-spacing:-1.136000pt;}
.ls22{letter-spacing:-1.040000pt;}
.ls8{letter-spacing:-1.024000pt;}
.ls6{letter-spacing:-0.880000pt;}
.ls78{letter-spacing:-0.602667pt;}
.ls6e{letter-spacing:-0.544000pt;}
.ls83{letter-spacing:-0.483733pt;}
.ls26{letter-spacing:-0.399467pt;}
.ls34{letter-spacing:-0.315733pt;}
.ls5b{letter-spacing:-0.307733pt;}
.ls49{letter-spacing:-0.304533pt;}
.ls7b{letter-spacing:-0.297067pt;}
.ls7e{letter-spacing:-0.294400pt;}
.ls7{letter-spacing:-0.281600pt;}
.ls3f{letter-spacing:-0.274133pt;}
.ls2{letter-spacing:-0.271467pt;}
.ls29{letter-spacing:-0.248533pt;}
.ls3d{letter-spacing:-0.243200pt;}
.ls44{letter-spacing:-0.240533pt;}
.ls81{letter-spacing:-0.237867pt;}
.ls1{letter-spacing:-0.225067pt;}
.ls63{letter-spacing:-0.222933pt;}
.ls38{letter-spacing:-0.217600pt;}
.ls5e{letter-spacing:-0.197333pt;}
.ls23{letter-spacing:-0.194667pt;}
.ls77{letter-spacing:-0.194133pt;}
.ls6a{letter-spacing:-0.171733pt;}
.ls30{letter-spacing:-0.169067pt;}
.ls31{letter-spacing:-0.143467pt;}
.ls71{letter-spacing:-0.140267pt;}
.ls54{letter-spacing:-0.119467pt;}
.ls65{letter-spacing:-0.118400pt;}
.ls28{letter-spacing:-0.112533pt;}
.ls72{letter-spacing:-0.095467pt;}
.ls2e{letter-spacing:-0.086400pt;}
.ls35{letter-spacing:-0.082133pt;}
.ls5c{letter-spacing:-0.079467pt;}
.ls20{letter-spacing:-0.061333pt;}
.ls68{letter-spacing:-0.043520pt;}
.ls55{letter-spacing:-0.042240pt;}
.ls5{letter-spacing:-0.020480pt;}
.ls7f{letter-spacing:-0.014080pt;}
.ls73{letter-spacing:-0.001920pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6f{letter-spacing:0.003200pt;}
.lsa{letter-spacing:0.007680pt;}
.ls2f{letter-spacing:0.017920pt;}
.ls27{letter-spacing:0.023040pt;}
.ls11{letter-spacing:0.025600pt;}
.ls76{letter-spacing:0.033280pt;}
.ls4{letter-spacing:0.038400pt;}
.ls82{letter-spacing:0.048640pt;}
.ls64{letter-spacing:0.061867pt;}
.ls4e{letter-spacing:0.079360pt;}
.ls4f{letter-spacing:0.079467pt;}
.ls5a{letter-spacing:0.107733pt;}
.ls62{letter-spacing:0.110080pt;}
.ls53{letter-spacing:0.125333pt;}
.ls51{letter-spacing:0.130667pt;}
.ls1e{letter-spacing:0.138133pt;}
.ls50{letter-spacing:0.143467pt;}
.ls48{letter-spacing:0.144533pt;}
.ls79{letter-spacing:0.146133pt;}
.ls69{letter-spacing:0.156267pt;}
.ls43{letter-spacing:0.165760pt;}
.ls6c{letter-spacing:0.167467pt;}
.ls70{letter-spacing:0.167680pt;}
.ls7a{letter-spacing:0.169067pt;}
.ls80{letter-spacing:0.178133pt;}
.ls40{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.217600pt;}
.ls6d{letter-spacing:0.225067pt;}
.ls3b{letter-spacing:0.232960pt;}
.ls1f{letter-spacing:0.240533pt;}
.ls3e{letter-spacing:0.253333pt;}
.ls47{letter-spacing:0.263467pt;}
.ls59{letter-spacing:0.269440pt;}
.ls61{letter-spacing:0.271360pt;}
.ls45{letter-spacing:0.284267pt;}
.ls4d{letter-spacing:0.304640pt;}
.ls56{letter-spacing:0.309333pt;}
.ls3c{letter-spacing:0.309867pt;}
.ls52{letter-spacing:0.320000pt;}
.ls4c{letter-spacing:0.399467pt;}
.ls4b{letter-spacing:0.407040pt;}
.ls42{letter-spacing:0.431787pt;}
.ls58{letter-spacing:0.444160pt;}
.ls57{letter-spacing:0.457600pt;}
.ls4a{letter-spacing:0.643200pt;}
.ls46{letter-spacing:1.936000pt;}
.ls33{letter-spacing:2.956800pt;}
.ls75{letter-spacing:7.951360pt;}
.ls67{letter-spacing:10.511360pt;}
.ls2d{letter-spacing:11.791360pt;}
.ls1a{letter-spacing:20.855467pt;}
.ls17{letter-spacing:22.135467pt;}
.ls15{letter-spacing:22.775467pt;}
.ls2a{letter-spacing:25.231360pt;}
.ls16{letter-spacing:35.596800pt;}
.ls1c{letter-spacing:38.135467pt;}
.lsf{letter-spacing:38.775467pt;}
.ls19{letter-spacing:39.415467pt;}
.ls12{letter-spacing:40.055467pt;}
.ls60{letter-spacing:46.991360pt;}
.ls3a{letter-spacing:52.730027pt;}
.ls14{letter-spacing:52.876800pt;}
.ls1b{letter-spacing:53.516800pt;}
.ls18{letter-spacing:54.156800pt;}
.ls10{letter-spacing:55.436800pt;}
.ls74{letter-spacing:55.760640pt;}
.lsc{letter-spacing:56.055467pt;}
.ls7d{letter-spacing:57.040640pt;}
.ls7c{letter-spacing:58.320640pt;}
.ls5f{letter-spacing:59.770027pt;}
.ls5d{letter-spacing:60.431360pt;}
.ls1d{letter-spacing:61.196800pt;}
.ls66{letter-spacing:61.520640pt;}
.ls39{letter-spacing:68.111360pt;}
.lse{letter-spacing:68.876800pt;}
.ls13{letter-spacing:70.156800pt;}
.lsb{letter-spacing:70.796800pt;}
.ls2c{letter-spacing:83.471360pt;}
.lsd{letter-spacing:85.516800pt;}
.ls2b{letter-spacing:99.471360pt;}
.ls32{letter-spacing:753.386667pt;}
.ls9{letter-spacing:753.418667pt;}
.ls6b{letter-spacing:2192.174933pt;}
.ws1f{word-spacing:-58.880000pt;}
.ws2a{word-spacing:-53.120000pt;}
.ws48{word-spacing:-28.052693pt;}
.ws0{word-spacing:-27.874560pt;}
.ws47{word-spacing:-27.860480pt;}
.ws3c{word-spacing:-27.831040pt;}
.ws18{word-spacing:-27.788160pt;}
.ws42{word-spacing:-27.680427pt;}
.ws46{word-spacing:-27.580160pt;}
.ws1a{word-spacing:-27.558827pt;}
.ws25{word-spacing:-18.775680pt;}
.ws24{word-spacing:-17.123947pt;}
.ws26{word-spacing:-17.103147pt;}
.ws3e{word-spacing:-17.064747pt;}
.ws4a{word-spacing:-16.919147pt;}
.ws5{word-spacing:-16.839680pt;}
.ws49{word-spacing:-16.601813pt;}
.ws4{word-spacing:-16.568213pt;}
.ws21{word-spacing:-16.565547pt;}
.ws43{word-spacing:-15.887467pt;}
.ws20{word-spacing:-15.856533pt;}
.wsd{word-spacing:-15.843733pt;}
.wsf{word-spacing:-15.820800pt;}
.ws3d{word-spacing:-15.759467pt;}
.ws44{word-spacing:-15.749333pt;}
.ws30{word-spacing:-15.746667pt;}
.wsb{word-spacing:-15.741333pt;}
.wsc{word-spacing:-15.641600pt;}
.ws15{word-spacing:-15.626240pt;}
.wsa{word-spacing:-15.610880pt;}
.ws2{word-spacing:-15.603200pt;}
.ws7{word-spacing:-15.582720pt;}
.wse{word-spacing:-15.541867pt;}
.ws1c{word-spacing:-15.521067pt;}
.ws16{word-spacing:-15.490667pt;}
.ws1b{word-spacing:-15.459733pt;}
.ws11{word-spacing:-15.408533pt;}
.ws39{word-spacing:-15.380267pt;}
.ws3{word-spacing:-15.378133pt;}
.ws17{word-spacing:-15.354667pt;}
.ws8{word-spacing:-15.321600pt;}
.ws45{word-spacing:-15.306133pt;}
.ws14{word-spacing:-15.203733pt;}
.ws29{word-spacing:-15.192320pt;}
.ws41{word-spacing:-15.190400pt;}
.ws4b{word-spacing:-15.119467pt;}
.ws40{word-spacing:-15.096853pt;}
.ws3f{word-spacing:-15.052053pt;}
.ws38{word-spacing:-14.991360pt;}
.ws37{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.579200pt;}
.ws10{word-spacing:-14.563200pt;}
.ws1e{word-spacing:-14.467200pt;}
.ws2e{word-spacing:-14.396800pt;}
.ws6{word-spacing:-14.263680pt;}
.ws2d{word-spacing:-14.207467pt;}
.ws2f{word-spacing:-14.202133pt;}
.ws33{word-spacing:-14.184533pt;}
.ws3a{word-spacing:-14.138667pt;}
.ws28{word-spacing:-14.076800pt;}
.ws32{word-spacing:-14.034560pt;}
.ws19{word-spacing:-14.013440pt;}
.ws23{word-spacing:-14.007680pt;}
.ws35{word-spacing:-13.997333pt;}
.ws3b{word-spacing:-13.958400pt;}
.ws31{word-spacing:-13.957333pt;}
.ws2b{word-spacing:-13.772267pt;}
.ws34{word-spacing:-13.769067pt;}
.ws1d{word-spacing:-13.187200pt;}
.ws12{word-spacing:-13.069867pt;}
.ws27{word-spacing:-12.642560pt;}
.ws13{word-spacing:-12.381867pt;}
.ws22{word-spacing:-12.263680pt;}
.ws36{word-spacing:-11.952640pt;}
.ws2c{word-spacing:-10.616320pt;}
.ws1{word-spacing:0.000000pt;}
._26{margin-left:-32.277333pt;}
._2a{margin-left:-27.566507pt;}
._1c{margin-left:-14.171520pt;}
._1d{margin-left:-11.719253pt;}
._20{margin-left:-10.818773pt;}
._1a{margin-left:-9.720960pt;}
._21{margin-left:-8.712533pt;}
._1f{margin-left:-7.777280pt;}
._1b{margin-left:-6.866560pt;}
._1e{margin-left:-5.301547pt;}
._4{margin-left:-4.121600pt;}
._3{margin-left:-2.948480pt;}
._2{margin-left:-1.853440pt;}
._0{margin-left:-0.936960pt;}
._1{width:1.365120pt;}
._5{width:2.762453pt;}
._a{width:3.733120pt;}
._11{width:4.932480pt;}
._18{width:5.879467pt;}
._b{width:6.771200pt;}
._d{width:7.686400pt;}
._c{width:8.672427pt;}
._19{width:9.601920pt;}
._7{width:10.963840pt;}
._6{width:12.011520pt;}
._13{width:13.433600pt;}
._12{width:14.420480pt;}
._14{width:16.596480pt;}
._25{width:17.792000pt;}
._28{width:18.774400pt;}
._e{width:19.830827pt;}
._9{width:20.748800pt;}
._8{width:22.049280pt;}
._10{width:23.667200pt;}
._15{width:24.803200pt;}
._17{width:26.641920pt;}
._16{width:28.462080pt;}
._27{width:32.394240pt;}
._2b{width:33.329067pt;}
._f{width:34.385920pt;}
._2e{width:35.665280pt;}
._23{width:37.216640pt;}
._24{width:38.609493pt;}
._31{width:44.572160pt;}
._32{width:45.908267pt;}
._22{width:46.999467pt;}
._30{width:56.494080pt;}
._2f{width:57.461760pt;}
._29{width:135.222187pt;}
._2c{width:152.199680pt;}
._2d{width:153.306027pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.yfd{bottom:4.160000pt;}
.y28{bottom:4.480000pt;}
.y2a{bottom:4.640000pt;}
.y2d{bottom:4.680000pt;}
.y2{bottom:5.440000pt;}
.y33{bottom:5.920000pt;}
.y32{bottom:6.080000pt;}
.y11c{bottom:6.720000pt;}
.y136{bottom:6.880000pt;}
.y158{bottom:12.800000pt;}
.y108{bottom:21.434667pt;}
.yfc{bottom:21.440000pt;}
.y134{bottom:21.480000pt;}
.y12b{bottom:21.594667pt;}
.y102{bottom:21.600000pt;}
.y129{bottom:21.640000pt;}
.y111{bottom:21.920000pt;}
.y36{bottom:23.520000pt;}
.y39{bottom:23.680000pt;}
.y10f{bottom:25.120000pt;}
.y157{bottom:30.240000pt;}
.y107{bottom:38.874667pt;}
.yfb{bottom:38.880000pt;}
.yff{bottom:38.920000pt;}
.y105{bottom:39.194667pt;}
.y110{bottom:41.120000pt;}
.y10e{bottom:42.400000pt;}
.y35{bottom:42.720000pt;}
.y156{bottom:47.520000pt;}
.y5{bottom:52.352000pt;}
.y10a{bottom:56.160000pt;}
.y133{bottom:56.200000pt;}
.y152{bottom:56.320000pt;}
.y101{bottom:56.360000pt;}
.y104{bottom:56.474667pt;}
.y13f{bottom:56.960000pt;}
.y146{bottom:57.114667pt;}
.y38{bottom:61.760000pt;}
.y155{bottom:64.960000pt;}
.y10c{bottom:66.880000pt;}
.y4{bottom:66.912000pt;}
.y113{bottom:72.160000pt;}
.y112{bottom:73.600000pt;}
.y100{bottom:73.640000pt;}
.y13e{bottom:74.240000pt;}
.y145{bottom:74.554667pt;}
.y193{bottom:90.880000pt;}
.y151{bottom:91.040000pt;}
.y128{bottom:91.080000pt;}
.y196{bottom:91.360000pt;}
.y14e{bottom:91.560000pt;}
.y13d{bottom:91.680000pt;}
.y144{bottom:91.834667pt;}
.yd4{bottom:107.072000pt;}
.y1af{bottom:107.232000pt;}
.y150{bottom:108.320000pt;}
.y127{bottom:108.360000pt;}
.y14d{bottom:109.000000pt;}
.y1e3{bottom:109.152000pt;}
.y143{bottom:109.274667pt;}
.y1b6{bottom:109.952000pt;}
.y20{bottom:111.552000pt;}
.y1f6{bottom:117.472000pt;}
.y69{bottom:117.792000pt;}
.y206{bottom:118.592000pt;}
.y142{bottom:122.592000pt;}
.y192{bottom:125.600000pt;}
.y198{bottom:125.760000pt;}
.y126{bottom:125.800000pt;}
.y1ae{bottom:126.112000pt;}
.y14c{bottom:126.280000pt;}
.y11d{bottom:126.912000pt;}
.yd3{bottom:127.552000pt;}
.y103{bottom:127.872000pt;}
.y1b5{bottom:128.672000pt;}
.y17d{bottom:128.992000pt;}
.y1d6{bottom:134.106667pt;}
.y169{bottom:134.906667pt;}
.y45{bottom:135.386667pt;}
.y184{bottom:135.546667pt;}
.ya4{bottom:136.346667pt;}
.y1f5{bottom:138.106667pt;}
.y220{bottom:138.266667pt;}
.y68{bottom:138.426667pt;}
.y1ad{bottom:140.666667pt;}
.y1cc{bottom:142.426667pt;}
.y1f{bottom:142.906667pt;}
.y191{bottom:143.040000pt;}
.y125{bottom:143.080000pt;}
.y1b4{bottom:143.386667pt;}
.y1e2{bottom:146.586667pt;}
.y17c{bottom:149.626667pt;}
.y205{bottom:149.786667pt;}
.y44{bottom:153.786667pt;}
.y149{bottom:157.946667pt;}
.y1f4{bottom:158.746667pt;}
.y21f{bottom:158.906667pt;}
.y67{bottom:159.066667pt;}
.y1d2{bottom:159.226667pt;}
.y190{bottom:160.320000pt;}
.y124{bottom:160.520000pt;}
.y1e1{bottom:161.466667pt;}
.y1d5{bottom:164.666667pt;}
.y88{bottom:165.786667pt;}
.y168{bottom:166.106667pt;}
.ya3{bottom:167.706667pt;}
.y17b{bottom:170.266667pt;}
.y43{bottom:172.186667pt;}
.y1cb{bottom:173.786667pt;}
.y1d1{bottom:173.946667pt;}
.y1e{bottom:174.106667pt;}
.y18f{bottom:177.760000pt;}
.y123{bottom:177.800000pt;}
.y1f3{bottom:179.226667pt;}
.yd2{bottom:179.546667pt;}
.y66{bottom:179.706667pt;}
.y106{bottom:180.506667pt;}
.y130{bottom:183.866667pt;}
.yef{bottom:184.506667pt;}
.y167{bottom:186.586667pt;}
.y21e{bottom:190.266667pt;}
.y42{bottom:190.586667pt;}
.y1ca{bottom:194.266667pt;}
.ya2{bottom:194.906667pt;}
.y18e{bottom:195.040000pt;}
.y122{bottom:195.240000pt;}
.y11e{bottom:196.834667pt;}
.y1f2{bottom:199.866667pt;}
.yd1{bottom:200.026667pt;}
.y65{bottom:200.186667pt;}
.y12f{bottom:201.146667pt;}
.y17a{bottom:201.626667pt;}
.y87{bottom:202.906667pt;}
.yee{bottom:204.986667pt;}
.y1d{bottom:205.466667pt;}
.y194{bottom:205.626667pt;}
.y166{bottom:207.226667pt;}
.y148{bottom:210.586667pt;}
.y21d{bottom:210.746667pt;}
.y18d{bottom:212.480000pt;}
.y1c9{bottom:214.906667pt;}
.y12a{bottom:215.066667pt;}
.y12e{bottom:218.586667pt;}
.y1f1{bottom:220.506667pt;}
.yd0{bottom:220.666667pt;}
.y64{bottom:220.826667pt;}
.y185{bottom:221.960000pt;}
.y204{bottom:222.106667pt;}
.ya1{bottom:222.266667pt;}
.yed{bottom:225.786667pt;}
.y41{bottom:227.706667pt;}
.y165{bottom:227.866667pt;}
.y18c{bottom:229.786667pt;}
.y21c{bottom:231.386667pt;}
.y179{bottom:232.986667pt;}
.yfe{bottom:233.306667pt;}
.y1c8{bottom:235.386667pt;}
.y1c{bottom:236.666667pt;}
.y86{bottom:240.026667pt;}
.y1f0{bottom:241.146667pt;}
.ycf{bottom:241.306667pt;}
.y203{bottom:242.746667pt;}
.y1b9{bottom:244.346667pt;}
.yec{bottom:246.426667pt;}
.y18b{bottom:247.226667pt;}
.y164{bottom:248.506667pt;}
.ya0{bottom:249.466667pt;}
.y121{bottom:250.426667pt;}
.y63{bottom:252.346667pt;}
.y178{bottom:253.466667pt;}
.y1c7{bottom:256.066667pt;}
.y186{bottom:258.466667pt;}
.y1ef{bottom:261.826667pt;}
.yce{bottom:261.986667pt;}
.y21b{bottom:262.786667pt;}
.y1b8{bottom:263.106667pt;}
.y147{bottom:263.426667pt;}
.y1dd{bottom:263.586667pt;}
.y18a{bottom:264.506667pt;}
.y40{bottom:264.866667pt;}
.yeb{bottom:267.106667pt;}
.y1b{bottom:267.906667pt;}
.y163{bottom:269.026667pt;}
.y62{bottom:272.866667pt;}
.y177{bottom:273.986667pt;}
.y1c6{bottom:276.706667pt;}
.y9f{bottom:276.866667pt;}
.y85{bottom:277.026667pt;}
.y1b7{bottom:277.826667pt;}
.y189{bottom:281.946667pt;}
.y21a{bottom:283.266667pt;}
.y202{bottom:284.066667pt;}
.yea{bottom:287.746667pt;}
.y162{bottom:289.666667pt;}
.y1ee{bottom:292.546667pt;}
.y61{bottom:293.346667pt;}
.y176{bottom:294.626667pt;}
.y1dc{bottom:294.786667pt;}
.y9e{bottom:297.186667pt;}
.y1c5{bottom:297.346667pt;}
.y13c{bottom:298.786667pt;}
.y188{bottom:299.226667pt;}
.y1a{bottom:299.266667pt;}
.y219{bottom:303.906667pt;}
.y3f{bottom:304.386667pt;}
.y201{bottom:304.546667pt;}
.ye9{bottom:308.386667pt;}
.y1ed{bottom:311.426667pt;}
.y60{bottom:313.986667pt;}
.y84{bottom:314.146667pt;}
.y175{bottom:315.266667pt;}
.y187{bottom:316.666667pt;}
.y1c4{bottom:317.986667pt;}
.y3e{bottom:319.586667pt;}
.yfa{bottom:320.866667pt;}
.y161{bottom:321.186667pt;}
.y9d{bottom:324.706667pt;}
.y200{bottom:325.186667pt;}
.ye8{bottom:329.026667pt;}
.y1ec{bottom:330.146667pt;}
.y19{bottom:330.466667pt;}
.y141{bottom:334.146667pt;}
.y5f{bottom:334.626667pt;}
.y218{bottom:335.266667pt;}
.y174{bottom:335.906667pt;}
.ycd{bottom:345.026667pt;}
.y9c{bottom:345.186667pt;}
.y1ff{bottom:345.826667pt;}
.y1eb{bottom:348.866667pt;}
.y1c3{bottom:349.346667pt;}
.y83{bottom:351.266667pt;}
.y160{bottom:352.386667pt;}
.y5e{bottom:355.266667pt;}
.y217{bottom:355.746667pt;}
.y173{bottom:356.546667pt;}
.y3d{bottom:358.466667pt;}
.ye7{bottom:360.706667pt;}
.y18{bottom:361.826667pt;}
.y22b{bottom:362.146667pt;}
.ycc{bottom:365.666667pt;}
.y1ea{bottom:367.586667pt;}
.y140{bottom:369.666667pt;}
.y1c2{bottom:369.826667pt;}
.y9b{bottom:372.546667pt;}
.y15f{bottom:372.866667pt;}
.y5d{bottom:375.906667pt;}
.y216{bottom:376.386667pt;}
.y172{bottom:377.026667pt;}
.y1fe{bottom:377.186667pt;}
.ye6{bottom:381.026667pt;}
.yb8{bottom:383.266667pt;}
.y1e9{bottom:386.306667pt;}
.y82{bottom:388.226667pt;}
.yf9{bottom:389.666667pt;}
.y1c1{bottom:390.466667pt;}
.y17{bottom:393.026667pt;}
.y15e{bottom:393.506667pt;}
.ycb{bottom:397.186667pt;}
.y171{bottom:397.666667pt;}
.y9a{bottom:399.906667pt;}
.y22a{bottom:401.826667pt;}
.y5c{bottom:407.266667pt;}
.y215{bottom:407.746667pt;}
.y1c0{bottom:410.946667pt;}
.y1a7{bottom:411.426667pt;}
.y1e8{bottom:411.746667pt;}
.ye5{bottom:412.546667pt;}
.y15d{bottom:413.986667pt;}
.y3c{bottom:416.386667pt;}
.yca{bottom:417.666667pt;}
.y1fd{bottom:418.306667pt;}
.yf8{bottom:419.746667pt;}
.y16{bottom:424.386667pt;}
.y99{bottom:427.106667pt;}
.y5b{bottom:427.746667pt;}
.y214{bottom:428.226667pt;}
.y170{bottom:429.186667pt;}
.y81{bottom:429.826667pt;}
.y1bf{bottom:431.586667pt;}
.y229{bottom:433.026667pt;}
.yb7{bottom:434.626667pt;}
.yc9{bottom:438.146667pt;}
.yf7{bottom:440.066667pt;}
.y1a6{bottom:442.946667pt;}
.ye4{bottom:443.266667pt;}
.y5a{bottom:448.386667pt;}
.y213{bottom:448.866667pt;}
.y16f{bottom:449.666667pt;}
.y80{bottom:450.306667pt;}
.y1be{bottom:452.226667pt;}
.y3b{bottom:452.866667pt;}
.y98{bottom:454.466667pt;}
.y15c{bottom:455.266667pt;}
.y15{bottom:455.586667pt;}
.y1fc{bottom:455.746667pt;}
.y12d{bottom:457.026667pt;}
.ye3{bottom:457.986667pt;}
.y120{bottom:459.426667pt;}
.yf6{bottom:460.706667pt;}
.y1a5{bottom:463.426667pt;}
.y228{bottom:464.226667pt;}
.y59{bottom:468.866667pt;}
.y212{bottom:469.506667pt;}
.yc8{bottom:469.666667pt;}
.y16e{bottom:470.146667pt;}
.y7f{bottom:470.946667pt;}
.yb6{bottom:471.586667pt;}
.y15b{bottom:475.906667pt;}
.yf5{bottom:481.346667pt;}
.y97{bottom:481.666667pt;}
.y1bd{bottom:483.586667pt;}
.y1a4{bottom:484.066667pt;}
.y3a{bottom:484.226667pt;}
.y14{bottom:486.973333pt;}
.y58{bottom:489.533333pt;}
.yc7{bottom:490.173333pt;}
.y16d{bottom:490.813333pt;}
.y13b{bottom:492.413333pt;}
.y11f{bottom:494.813333pt;}
.y37{bottom:499.453333pt;}
.y227{bottom:500.733333pt;}
.y211{bottom:500.893333pt;}
.y1fb{bottom:501.693333pt;}
.yf4{bottom:502.013333pt;}
.y7e{bottom:502.333333pt;}
.y1a3{bottom:504.733333pt;}
.y15a{bottom:507.293333pt;}
.yb5{bottom:508.733333pt;}
.y96{bottom:508.893333pt;}
.y57{bottom:510.173333pt;}
.yc6{bottom:510.653333pt;}
.y1db{bottom:511.453333pt;}
.y1ac{bottom:511.613333pt;}
.y1e7{bottom:512.253333pt;}
.y1bc{bottom:514.333333pt;}
.y13{bottom:518.173333pt;}
.y210{bottom:521.373333pt;}
.y1fa{bottom:522.173333pt;}
.ye2{bottom:522.333333pt;}
.yf3{bottom:522.653333pt;}
.y7d{bottom:522.813333pt;}
.y1a2{bottom:525.213333pt;}
.y13a{bottom:527.933333pt;}
.y11b{bottom:530.333333pt;}
.y56{bottom:530.813333pt;}
.y1da{bottom:532.093333pt;}
.y1bb{bottom:533.053333pt;}
.y1e0{bottom:533.533333pt;}
.y95{bottom:536.253333pt;}
.y159{bottom:538.653333pt;}
.y20f{bottom:542.013333pt;}
.yc5{bottom:542.173333pt;}
.ye1{bottom:542.653333pt;}
.y1ab{bottom:542.813333pt;}
.y7c{bottom:543.453333pt;}
.y1e6{bottom:543.613333pt;}
.yb4{bottom:548.253333pt;}
.y12{bottom:549.533333pt;}
.y55{bottom:551.453333pt;}
.y1ba{bottom:552.253333pt;}
.y1d9{bottom:552.733333pt;}
.yf2{bottom:553.373333pt;}
.y154{bottom:553.853333pt;}
.y1a1{bottom:556.733333pt;}
.y1d0{bottom:559.133333pt;}
.yc4{bottom:562.653333pt;}
.y1d4{bottom:563.133333pt;}
.ye0{bottom:563.293333pt;}
.y94{bottom:563.453333pt;}
.yb3{bottom:563.613333pt;}
.y7b{bottom:564.093333pt;}
.y11a{bottom:566.973333pt;}
.y1df{bottom:570.973333pt;}
.y54{bottom:571.933333pt;}
.yf1{bottom:572.253333pt;}
.y1d8{bottom:573.213333pt;}
.y20e{bottom:573.373333pt;}
.y34{bottom:576.573333pt;}
.y1a0{bottom:577.213333pt;}
.y1d3{bottom:577.853333pt;}
.y11{bottom:580.733333pt;}
.yc3{bottom:583.133333pt;}
.ydf{bottom:583.933333pt;}
.yb2{bottom:584.253333pt;}
.y7a{bottom:584.733333pt;}
.y1de{bottom:585.693333pt;}
.y1cf{bottom:588.573333pt;}
.y183{bottom:589.053333pt;}
.y93{bottom:590.813333pt;}
.y53{bottom:592.573333pt;}
.y20d{bottom:593.853333pt;}
.y119{bottom:597.053333pt;}
.yf0{bottom:597.693333pt;}
.y19f{bottom:597.853333pt;}
.y139{bottom:598.653333pt;}
.y226{bottom:599.133333pt;}
.yde{bottom:604.573333pt;}
.y1d7{bottom:604.733333pt;}
.yb1{bottom:604.893333pt;}
.y79{bottom:605.213333pt;}
.y1ce{bottom:607.293333pt;}
.y10{bottom:612.093333pt;}
.y52{bottom:613.213333pt;}
.y20c{bottom:614.493333pt;}
.yc2{bottom:614.653333pt;}
.y118{bottom:617.533333pt;}
.y92{bottom:618.013333pt;}
.y19e{bottom:618.333333pt;}
.y225{bottom:619.773333pt;}
.ydd{bottom:625.213333pt;}
.yb0{bottom:625.533333pt;}
.y78{bottom:625.853333pt;}
.y51{bottom:633.853333pt;}
.y138{bottom:634.013333pt;}
.y31{bottom:634.493333pt;}
.y20b{bottom:635.133333pt;}
.y117{bottom:638.173333pt;}
.y19d{bottom:638.973333pt;}
.y224{bottom:640.413333pt;}
.y1cd{bottom:640.733333pt;}
.y14b{bottom:641.373333pt;}
.yf{bottom:643.293333pt;}
.y91{bottom:645.373333pt;}
.ydc{bottom:645.693333pt;}
.yc1{bottom:645.853333pt;}
.yaf{bottom:646.173333pt;}
.y77{bottom:646.493333pt;}
.y50{bottom:654.493333pt;}
.y30{bottom:655.773333pt;}
.y182{bottom:657.853333pt;}
.y116{bottom:658.653333pt;}
.y19c{bottom:659.613333pt;}
.y223{bottom:661.053333pt;}
.yc0{bottom:666.333333pt;}
.yae{bottom:666.813333pt;}
.y1e5{bottom:667.133333pt;}
.y137{bottom:669.373333pt;}
.y90{bottom:672.573333pt;}
.ye{bottom:674.493333pt;}
.y4f{bottom:674.973333pt;}
.y2f{bottom:675.453333pt;}
.y153{bottom:676.733333pt;}
.y76{bottom:677.853333pt;}
.y115{bottom:679.293333pt;}
.y19b{bottom:680.253333pt;}
.y222{bottom:681.693333pt;}
.ybf{bottom:686.973333pt;}
.y20a{bottom:687.133333pt;}
.yad{bottom:687.613333pt;}
.y1e4{bottom:687.773333pt;}
.y181{bottom:687.933333pt;}
.y135{bottom:690.013333pt;}
.y2e{bottom:695.293333pt;}
.y4e{bottom:695.613333pt;}
.y16c{bottom:697.853333pt;}
.y75{bottom:698.333333pt;}
.y8f{bottom:699.933333pt;}
.y19a{bottom:700.893333pt;}
.yd{bottom:705.853333pt;}
.ybe{bottom:707.613333pt;}
.yac{bottom:708.253333pt;}
.ydb{bottom:708.413333pt;}
.y114{bottom:710.813333pt;}
.y2c{bottom:714.973333pt;}
.y4d{bottom:716.253333pt;}
.y221{bottom:718.213333pt;}
.y1b3{bottom:718.373333pt;}
.y74{bottom:719.013333pt;}
.y10b{bottom:726.053333pt;}
.y8e{bottom:727.173333pt;}
.ybd{bottom:728.293333pt;}
.yab{bottom:728.933333pt;}
.y16b{bottom:729.093333pt;}
.y14f{bottom:729.413333pt;}
.y199{bottom:732.293333pt;}
.y2b{bottom:734.853333pt;}
.yc{bottom:737.093333pt;}
.y1b2{bottom:738.853333pt;}
.y1aa{bottom:739.013333pt;}
.y73{bottom:739.653333pt;}
.y195{bottom:747.493333pt;}
.y4c{bottom:747.653333pt;}
.yaa{bottom:748.613333pt;}
.ybc{bottom:748.773333pt;}
.yda{bottom:749.573333pt;}
.y29{bottom:754.533333pt;}
.y1b1{bottom:759.493333pt;}
.y72{bottom:760.293333pt;}
.y4b{bottom:768.133333pt;}
.yb{bottom:768.453333pt;}
.ybb{bottom:769.413333pt;}
.yd9{bottom:770.213333pt;}
.y1a9{bottom:770.373333pt;}
.y27{bottom:774.373333pt;}
.y209{bottom:780.293333pt;}
.y71{bottom:780.773333pt;}
.y8d{bottom:781.733333pt;}
.ya9{bottom:788.133333pt;}
.y4a{bottom:788.773333pt;}
.yba{bottom:790.053333pt;}
.yd8{bottom:790.853333pt;}
.y1b0{bottom:791.013333pt;}
.y132{bottom:798.213333pt;}
.ya{bottom:799.653333pt;}
.y208{bottom:800.773333pt;}
.y70{bottom:801.413333pt;}
.y1f9{bottom:806.853333pt;}
.ya8{bottom:807.973333pt;}
.y8c{bottom:809.093333pt;}
.y49{bottom:809.413333pt;}
.yb9{bottom:810.693333pt;}
.y26{bottom:810.853333pt;}
.yd7{bottom:811.333333pt;}
.y10d{bottom:813.413333pt;}
.y6f{bottom:822.053333pt;}
.y16a{bottom:822.213333pt;}
.ya7{bottom:827.813333pt;}
.y48{bottom:830.053333pt;}
.y9{bottom:831.013333pt;}
.yd6{bottom:831.973333pt;}
.y207{bottom:832.133333pt;}
.y131{bottom:833.573333pt;}
.y8b{bottom:836.293333pt;}
.y25{bottom:842.053333pt;}
.y6e{bottom:842.693333pt;}
.ya6{bottom:847.493333pt;}
.y47{bottom:850.533333pt;}
.y14a{bottom:851.653333pt;}
.y180{bottom:852.613333pt;}
.y1f8{bottom:852.773333pt;}
.y8{bottom:862.213333pt;}
.y6d{bottom:863.333333pt;}
.yd5{bottom:863.493333pt;}
.ya5{bottom:868.133333pt;}
.y12c{bottom:869.093333pt;}
.y1a8{bottom:869.413333pt;}
.y109{bottom:869.733333pt;}
.y46{bottom:871.333333pt;}
.y17f{bottom:873.253333pt;}
.y24{bottom:873.413333pt;}
.y8a{bottom:873.573333pt;}
.y6c{bottom:883.813333pt;}
.y1f7{bottom:883.973333pt;}
.y197{bottom:887.013333pt;}
.y7{bottom:893.573333pt;}
.y6b{bottom:904.453333pt;}
.y17e{bottom:904.613333pt;}
.y23{bottom:910.693333pt;}
.y89{bottom:924.933333pt;}
.y6a{bottom:925.093333pt;}
.y6{bottom:930.853333pt;}
.y22{bottom:944.293333pt;}
.y3{bottom:973.440000pt;}
.y21{bottom:977.600000pt;}
.y1{bottom:988.000000pt;}
.h5{height:19.040000pt;}
.h6{height:19.200000pt;}
.h7{height:19.232000pt;}
.h1{height:20.000000pt;}
.hc{height:20.032000pt;}
.h8{height:20.640000pt;}
.h1e{height:34.720000pt;}
.h1f{height:34.752000pt;}
.hb{height:38.240000pt;}
.h12{height:49.454720pt;}
.h14{height:50.570240pt;}
.h13{height:52.000000pt;}
.h28{height:52.032000pt;}
.h17{height:52.160000pt;}
.h25{height:52.192000pt;}
.h1c{height:54.390938pt;}
.h2{height:54.817280pt;}
.h1a{height:55.680000pt;}
.h10{height:56.053760pt;}
.h9{height:57.280000pt;}
.h11{height:57.787500pt;}
.hf{height:60.519362pt;}
.he{height:61.295000pt;}
.h4{height:62.812500pt;}
.h18{height:69.440000pt;}
.ha{height:76.320000pt;}
.h1b{height:86.720000pt;}
.h22{height:86.752000pt;}
.h15{height:86.912000pt;}
.h16{height:104.800000pt;}
.h3{height:111.498240pt;}
.h27{height:121.600000pt;}
.hd{height:121.923750pt;}
.h2c{height:138.880000pt;}
.h19{height:143.040000pt;}
.h23{height:157.600000pt;}
.h24{height:175.546667pt;}
.h2b{height:191.680000pt;}
.h20{height:208.346667pt;}
.h26{height:209.626667pt;}
.h2a{height:329.786667pt;}
.h1d{height:402.626667pt;}
.h21{height:411.266667pt;}
.h29{height:452.706667pt;}
.h0{height:1056.000000pt;}
.we{width:80.800000pt;}
.w9{width:81.440000pt;}
.wf{width:83.360000pt;}
.wb{width:87.360000pt;}
.w11{width:88.512000pt;}
.w6{width:95.232000pt;}
.w15{width:105.280000pt;}
.w13{width:113.440000pt;}
.w14{width:116.352000pt;}
.wa{width:119.392000pt;}
.wd{width:119.712000pt;}
.wc{width:139.386667pt;}
.w3{width:148.960000pt;}
.w5{width:155.200000pt;}
.w7{width:161.306667pt;}
.w10{width:168.346667pt;}
.w1{width:208.026667pt;}
.w8{width:208.986667pt;}
.w12{width:281.306667pt;}
.w16{width:286.466667pt;}
.w4{width:473.053333pt;}
.w2{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.880000pt;}
.x22{left:7.840000pt;}
.x21{left:9.440000pt;}
.x1b{left:11.840000pt;}
.x1d{left:14.560000pt;}
.x25{left:22.720000pt;}
.x1c{left:25.920000pt;}
.x2a{left:30.560000pt;}
.x23{left:34.560000pt;}
.x24{left:38.234667pt;}
.x1{left:96.032000pt;}
.x34{left:97.951988pt;}
.x2e{left:100.191988pt;}
.x3{left:104.000000pt;}
.x14{left:107.391988pt;}
.x3b{left:109.151988pt;}
.xf{left:110.751988pt;}
.x41{left:115.391988pt;}
.x40{left:116.831988pt;}
.x32{left:118.271988pt;}
.x13{left:120.031988pt;}
.x10{left:125.311988pt;}
.x39{left:127.391988pt;}
.x31{left:131.551988pt;}
.x12{left:137.306655pt;}
.x11{left:144.026655pt;}
.x3c{left:156.826655pt;}
.x3e{left:159.706655pt;}
.x2b{left:168.026655pt;}
.x16{left:178.746667pt;}
.x1e{left:180.666667pt;}
.x37{left:193.146655pt;}
.x5{left:208.520000pt;}
.x27{left:210.746667pt;}
.x9{left:244.026655pt;}
.xb{left:246.426667pt;}
.xc{left:252.506667pt;}
.x35{left:266.786655pt;}
.x15{left:297.506655pt;}
.x17{left:298.786667pt;}
.x2{left:304.066667pt;}
.x28{left:327.746667pt;}
.xd{left:348.386667pt;}
.x1f{left:349.666667pt;}
.x2f{left:373.186655pt;}
.x42{left:385.666655pt;}
.x18{left:386.786667pt;}
.x26{left:408.066655pt;}
.x29{left:433.666667pt;}
.x20{left:438.813333pt;}
.xe{left:510.493333pt;}
.x4{left:512.093333pt;}
.x19{left:526.813333pt;}
.x6{left:570.493321pt;}
.x3d{left:600.893321pt;}
.x3a{left:602.013321pt;}
.x33{left:603.613321pt;}
.x8{left:609.693321pt;}
.x7{left:625.413321pt;}
.x1a{left:647.173333pt;}
.x2c{left:658.373321pt;}
.x38{left:664.133321pt;}
.x2d{left:668.133321pt;}
.x36{left:669.093321pt;}
.x30{left:679.333321pt;}
.x3f{left:689.733321pt;}
}




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