
    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_1bcc5d8d651f34b4d31f4077.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_2be10febc137190b050c8f91.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937012;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_d647b7af879d44c68408e293.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_672a4b1e2a22b4bff8f80c6c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7a1ac8d1caa756c8f0b548b0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_029463a066779b9fb301c125.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_c3245a002683af6bacc81131.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.823730;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_44b462b8ceddcfd163f5790d.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_328a3e9ae09f19051c307f93.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_3f64b347231d3d142e1647ce.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.041016;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_4189ef6bb767f1191777c35e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.932129;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_acafa5c2b67d8c3072774338.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.973633;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_7243405a338e37afc566ab64.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2e75901800a2822631558d77.woff2')format("woff");}.ff10{font-family:ff10;line-height:4.296875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_cce25f17625a34dacdd7f023.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_12a663f2b37c3432f2943f8d.woff2')format("woff");}.ff12{font-family:ff12;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;}
.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);}
.v12{vertical-align:-38.160000px;}
.v3{vertical-align:-27.360000px;}
.v1b{vertical-align:-24.480000px;}
.v15{vertical-align:-22.320000px;}
.v4{vertical-align:-20.880000px;}
.ve{vertical-align:-14.580000px;}
.v6{vertical-align:-12.240000px;}
.v19{vertical-align:-8.640000px;}
.v9{vertical-align:-5.760000px;}
.v8{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.160000px;}
.v14{vertical-align:6.480000px;}
.v1a{vertical-align:10.800000px;}
.v13{vertical-align:12.240000px;}
.v7{vertical-align:14.400000px;}
.v1c{vertical-align:19.440000px;}
.v18{vertical-align:22.320000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.v11{vertical-align:28.800000px;}
.v10{vertical-align:41.040000px;}
.vf{vertical-align:43.200000px;}
.vc{vertical-align:44.640000px;}
.v16{vertical-align:51.120000px;}
.vb{vertical-align:59.760000px;}
.v17{vertical-align:61.920000px;}
.va{vertical-align:79.920000px;}
.vd{vertical-align:105.840000px;}
.ls13{letter-spacing:-0.540000px;}
.ls55{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.303600px;}
.ls54{letter-spacing:-0.269400px;}
.ls53{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.109200px;}
.ls0{letter-spacing:0.000000px;}
.ls58{letter-spacing:0.017280px;}
.ls40{letter-spacing:0.051840px;}
.lsb{letter-spacing:0.054720px;}
.ls52{letter-spacing:0.087000px;}
.ls2c{letter-spacing:0.087120px;}
.ls5f{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.109200px;}
.ls5e{letter-spacing:0.115200px;}
.ls5d{letter-spacing:0.119520px;}
.lsd{letter-spacing:0.129000px;}
.ls5a{letter-spacing:0.135600px;}
.ls12{letter-spacing:0.146880px;}
.ls3f{letter-spacing:0.154080px;}
.ls48{letter-spacing:0.169200px;}
.ls17{letter-spacing:0.172800px;}
.ls4{letter-spacing:0.180000px;}
.ls57{letter-spacing:0.181200px;}
.ls7{letter-spacing:0.219000px;}
.ls5b{letter-spacing:0.235440px;}
.ls3a{letter-spacing:0.255600px;}
.ls56{letter-spacing:0.259800px;}
.ls5c{letter-spacing:0.259920px;}
.ls61{letter-spacing:0.298800px;}
.lsa{letter-spacing:0.300240px;}
.ls33{letter-spacing:0.325440px;}
.ls5{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.383040px;}
.lse{letter-spacing:0.399600px;}
.ls30{letter-spacing:0.479520px;}
.ls9{letter-spacing:0.504000px;}
.ls36{letter-spacing:0.555840px;}
.ls49{letter-spacing:0.579600px;}
.ls59{letter-spacing:0.613440px;}
.ls1a{letter-spacing:0.630720px;}
.ls42{letter-spacing:0.632880px;}
.ls18{letter-spacing:0.668160px;}
.ls47{letter-spacing:0.684000px;}
.ls4d{letter-spacing:0.752880px;}
.ls60{letter-spacing:1.080000px;}
.ls2f{letter-spacing:1.119600px;}
.ls28{letter-spacing:1.190880px;}
.ls22{letter-spacing:1.692000px;}
.ls51{letter-spacing:1.800000px;}
.ls4e{letter-spacing:1.908000px;}
.ls23{letter-spacing:1.910880px;}
.ls50{letter-spacing:2.109600px;}
.ls3b{letter-spacing:2.345760px;}
.ls4c{letter-spacing:2.395440px;}
.ls27{letter-spacing:2.412000px;}
.lsf{letter-spacing:2.460960px;}
.ls4f{letter-spacing:2.520000px;}
.ls10{letter-spacing:2.714400px;}
.ls1e{letter-spacing:2.763360px;}
.ls37{letter-spacing:2.829600px;}
.ls19{letter-spacing:3.203280px;}
.ls31{letter-spacing:3.342240px;}
.ls44{letter-spacing:3.359520px;}
.ls15{letter-spacing:3.434400px;}
.ls1f{letter-spacing:3.483360px;}
.ls1c{letter-spacing:3.548160px;}
.ls2b{letter-spacing:4.062240px;}
.ls11{letter-spacing:4.111200px;}
.ls3d{letter-spacing:4.320000px;}
.ls38{letter-spacing:4.782240px;}
.ls1d{letter-spacing:10.044000px;}
.ls3e{letter-spacing:10.143360px;}
.ls4b{letter-spacing:12.959280px;}
.ls46{letter-spacing:13.161600px;}
.ls16{letter-spacing:13.359600px;}
.ls2e{letter-spacing:13.592880px;}
.ls2d{letter-spacing:13.615920px;}
.ls45{letter-spacing:13.644000px;}
.ls34{letter-spacing:13.679280px;}
.ls41{letter-spacing:14.005440px;}
.ls29{letter-spacing:14.023440px;}
.ls4a{letter-spacing:14.079600px;}
.ls14{letter-spacing:15.395040px;}
.ls39{letter-spacing:16.239600px;}
.ls26{letter-spacing:16.496640px;}
.ls24{letter-spacing:16.559280px;}
.ls21{letter-spacing:16.769520px;}
.ls20{letter-spacing:16.959600px;}
.ls3c{letter-spacing:17.192880px;}
.ls25{letter-spacing:17.244000px;}
.ls2{letter-spacing:62.760000px;}
.ls3{letter-spacing:62.820000px;}
.ls32{letter-spacing:80.750160px;}
.ls35{letter-spacing:81.470160px;}
.ls2a{letter-spacing:952.920000px;}
.lsc{letter-spacing:1426.674720px;}
.ls43{letter-spacing:1800.660000px;}
.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;}
}
.ws1d{word-spacing:-59.760000px;}
.wsc{word-spacing:-46.819320px;}
.ws9{word-spacing:-46.732320px;}
.ws13{word-spacing:-46.611120px;}
.ws7{word-spacing:-38.880000px;}
.wsb{word-spacing:-32.656320px;}
.ws1{word-spacing:-31.105680px;}
.ws22{word-spacing:-16.020000px;}
.ws5{word-spacing:-15.300000px;}
.ws1c{word-spacing:-15.199800px;}
.ws1f{word-spacing:-15.075600px;}
.ws20{word-spacing:-15.055200px;}
.ws21{word-spacing:-15.046800px;}
.ws3{word-spacing:-15.045240px;}
.ws6{word-spacing:-14.940000px;}
.ws2{word-spacing:-13.734480px;}
.ws8{word-spacing:-13.500000px;}
.ws1a{word-spacing:-12.420000px;}
.ws1e{word-spacing:-12.241200px;}
.ws18{word-spacing:-12.060000px;}
.ws17{word-spacing:-11.790600px;}
.ws1b{word-spacing:-11.700000px;}
.ws4{word-spacing:-10.440000px;}
.wsa{word-spacing:-9.720000px;}
.ws19{word-spacing:-7.560000px;}
.ws0{word-spacing:0.000000px;}
.ws10{word-spacing:23.937840px;}
.wsd{word-spacing:24.657840px;}
.ws15{word-spacing:24.837840px;}
.ws14{word-spacing:61.964640px;}
.ws11{word-spacing:74.924640px;}
.wse{word-spacing:79.244640px;}
.ws16{word-spacing:127.484640px;}
.ws12{word-spacing:156.284640px;}
.wsf{word-spacing:173.564640px;}
._17{margin-left:-25.264800px;}
._14{margin-left:-5.049600px;}
._3{margin-left:-3.775680px;}
._4{margin-left:-2.265120px;}
._2{margin-left:-1.179360px;}
._0{width:1.203360px;}
._7{width:2.211120px;}
._a{width:3.338400px;}
._8{width:4.840560px;}
._9{width:6.513840px;}
._b{width:8.007840px;}
._d{width:9.121920px;}
._f{width:10.172400px;}
._e{width:12.011760px;}
._5{width:13.053600px;}
._13{width:14.381760px;}
._6{width:16.724640px;}
._c{width:17.805840px;}
._10{width:18.938400px;}
._12{width:20.497680px;}
._1a{width:21.500640px;}
._25{width:22.589760px;}
._23{width:23.684160px;}
._24{width:24.971520px;}
._33{width:26.951760px;}
._26{width:28.146960px;}
._2c{width:29.513280px;}
._2d{width:30.947520px;}
._2e{width:32.026320px;}
._1c{width:36.692640px;}
._1b{width:38.067120px;}
._37{width:39.289920px;}
._11{width:40.457520px;}
._1f{width:42.310080px;}
._20{width:43.326000px;}
._2f{width:47.741280px;}
._2a{width:49.182480px;}
._32{width:56.105760px;}
._2b{width:58.021920px;}
._29{width:74.281680px;}
._36{width:77.027280px;}
._28{width:78.826800px;}
._27{width:79.899120px;}
._31{width:84.368640px;}
._30{width:85.700160px;}
._35{width:122.663280px;}
._34{width:123.882480px;}
._21{width:188.940000px;}
._22{width:201.060000px;}
._1e{width:560.580480px;}
._19{width:774.573840px;}
._15{width:777.872400px;}
._16{width:1224.129600px;}
._1d{width:1259.325600px;}
._18{width:1381.911600px;}
._1{width:1620.355440px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,111,192);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:30.240000px;}
.fsd{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y117{bottom:2.505000px;}
.y13f{bottom:2.520000px;}
.y176{bottom:2.685000px;}
.yfa{bottom:2.700000px;}
.y115{bottom:2.865000px;}
.yf8{bottom:2.880000px;}
.y127{bottom:2.925000px;}
.y56{bottom:3.045000px;}
.yf5{bottom:3.060000px;}
.y108{bottom:3.240000px;}
.y37{bottom:3.420000px;}
.y155{bottom:3.600000px;}
.y150{bottom:3.765000px;}
.y14e{bottom:3.780000px;}
.y17d{bottom:5.760000px;}
.y17f{bottom:6.120000px;}
.y53{bottom:6.645000px;}
.yf6{bottom:9.720000px;}
.y24{bottom:10.980000px;}
.y23{bottom:11.520000px;}
.yf7{bottom:16.560000px;}
.y114{bottom:16.725000px;}
.yf4{bottom:16.740000px;}
.y112{bottom:16.770000px;}
.y126{bottom:16.785000px;}
.y55{bottom:16.905000px;}
.y103{bottom:16.920000px;}
.y11a{bottom:16.950000px;}
.y17c{bottom:19.620000px;}
.y36{bottom:20.520000px;}
.y154{bottom:20.880000px;}
.y54{bottom:30.585000px;}
.y124{bottom:30.600000px;}
.y111{bottom:30.630000px;}
.y17b{bottom:33.480000px;}
.y35{bottom:38.160000px;}
.y16e{bottom:44.280000px;}
.y171{bottom:44.490000px;}
.y17a{bottom:47.160000px;}
.y34{bottom:55.485000px;}
.y174{bottom:58.140000px;}
.y179{bottom:61.020000px;}
.y5{bottom:66.525004px;}
.y33{bottom:72.765000px;}
.y178{bottom:74.880000px;}
.y32{bottom:89.685000px;}
.y4{bottom:97.125005px;}
.y31{bottom:106.965000px;}
.y30{bottom:124.065000px;}
.y21{bottom:139.264499px;}
.y18{bottom:196.933500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y26{bottom:278.310000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.yc7{bottom:322.950000px;}
.yae{bottom:325.650000px;}
.y118{bottom:326.205000px;}
.y191{bottom:327.450000px;}
.y1b6{bottom:330.510000px;}
.y14a{bottom:331.950000px;}
.y57{bottom:336.090000px;}
.y84{bottom:336.270000px;}
.y1e5{bottom:339.150000px;}
.yc6{bottom:340.230000px;}
.y1f6{bottom:340.950000px;}
.yad{bottom:342.930000px;}
.yec{bottom:346.350000px;}
.y1b5{bottom:347.790000px;}
.yf{bottom:348.133500px;}
.y149{bottom:349.230000px;}
.y52{bottom:349.605000px;}
.y190{bottom:350.310000px;}
.y83{bottom:353.550000px;}
.y116{bottom:354.645000px;}
.y1cc{bottom:356.430000px;}
.y169{bottom:357.150000px;}
.yc5{bottom:357.330000px;}
.yac{bottom:360.210000px;}
.yeb{bottom:363.630000px;}
.y1b4{bottom:365.070000px;}
.y1f5{bottom:365.430000px;}
.y113{bottom:369.225000px;}
.y18f{bottom:373.170000px;}
.y1cb{bottom:373.710000px;}
.y168{bottom:374.430000px;}
.yc4{bottom:374.610000px;}
.y148{bottom:374.970000px;}
.y1e4{bottom:378.210000px;}
.y82{bottom:379.650000px;}
.y1f4{bottom:382.710000px;}
.yab{bottom:386.490000px;}
.ye{bottom:386.785499px;}
.y147{bottom:387.945000px;}
.y1b3{bottom:390.990000px;}
.y167{bottom:391.530000px;}
.ye9{bottom:392.430000px;}
.yc3{bottom:392.970000px;}
.y51{bottom:394.050000px;}
.y1e3{bottom:395.490000px;}
.y81{bottom:396.930000px;}
.y110{bottom:397.485000px;}
.yea{bottom:398.370000px;}
.y1f3{bottom:399.990000px;}
.y18e{bottom:400.530000px;}
.yaa{bottom:403.770000px;}
.yd{bottom:408.044999px;}
.yc2{bottom:410.250000px;}
.y1ca{bottom:412.455000px;}
.y80{bottom:414.255000px;}
.y146{bottom:416.415000px;}
.y1e2{bottom:417.315000px;}
.y1b2{bottom:417.495000px;}
.y18d{bottom:417.855000px;}
.y50{bottom:418.755000px;}
.y166{bottom:418.935000px;}
.ya9{bottom:421.095000px;}
.ye8{bottom:422.355000px;}
.yc1{bottom:427.575000px;}
.y1c9{bottom:430.095000px;}
.y145{bottom:430.995000px;}
.y7f{bottom:431.535000px;}
.ye7{bottom:432.075000px;}
.y4f{bottom:433.695000px;}
.y1e1{bottom:434.595000px;}
.y18c{bottom:434.955000px;}
.y165{bottom:436.215000px;}
.y1f2{bottom:439.095000px;}
.y10f{bottom:439.635000px;}
.y1b1{bottom:443.775000px;}
.yc0{bottom:445.215000px;}
.y144{bottom:445.395000px;}
.ya8{bottom:447.195000px;}
.y7e{bottom:448.815000px;}
.y1e0{bottom:451.695000px;}
.y18b{bottom:452.235000px;}
.y164{bottom:453.495000px;}
.y4e{bottom:455.655000px;}
.y1c8{bottom:456.195000px;}
.y143{bottom:460.155000px;}
.y1b0{bottom:461.055000px;}
.ya7{bottom:464.475000px;}
.y7d{bottom:466.095000px;}
.y10e{bottom:468.075000px;}
.y18a{bottom:469.515000px;}
.ye6{bottom:470.595000px;}
.y163{bottom:470.775000px;}
.ybf{bottom:471.675000px;}
.y4d{bottom:473.115000px;}
.y1c7{bottom:473.475000px;}
.y142{bottom:474.555000px;}
.y1af{bottom:478.335000px;}
.ya6{bottom:481.755000px;}
.y10d{bottom:482.655000px;}
.y7c{bottom:483.195000px;}
.y189{bottom:486.795000px;}
.ybe{bottom:489.315000px;}
.y4c{bottom:490.395000px;}
.y1c6{bottom:490.755000px;}
.y162{bottom:493.455000px;}
.y1f1{bottom:495.255000px;}
.y1ae{bottom:495.615000px;}
.y10c{bottom:497.235000px;}
.ye5{bottom:498.135000px;}
.ya5{bottom:499.035000px;}
.y7b{bottom:500.475000px;}
.yc{bottom:502.864502px;}
.y141{bottom:502.995000px;}
.y188{bottom:504.075000px;}
.ybd{bottom:506.955000px;}
.y4b{bottom:507.675000px;}
.y1c5{bottom:508.035000px;}
.y161{bottom:510.735000px;}
.y1f0{bottom:512.535000px;}
.y1ad{bottom:512.895000px;}
.ya4{bottom:516.315000px;}
.y140{bottom:517.575000px;}
.y7a{bottom:517.755000px;}
.yb{bottom:520.864502px;}
.y187{bottom:521.355000px;}
.y4a{bottom:524.595000px;}
.y1c4{bottom:525.315000px;}
.y10b{bottom:525.495000px;}
.ye4{bottom:527.295000px;}
.y160{bottom:528.015000px;}
.y1df{bottom:529.815000px;}
.y1ac{bottom:529.995000px;}
.y13e{bottom:532.155000px;}
.ya3{bottom:533.595000px;}
.y79{bottom:535.035000px;}
.y186{bottom:538.455000px;}
.ya{bottom:538.864499px;}
.y10a{bottom:540.075000px;}
.y49{bottom:542.235000px;}
.y1c3{bottom:542.595000px;}
.y13d{bottom:546.555000px;}
.y1de{bottom:547.095000px;}
.ybc{bottom:550.695000px;}
.y15f{bottom:550.875000px;}
.y1ef{bottom:551.595000px;}
.y78{bottom:552.315000px;}
.ye3{bottom:553.395000px;}
.y185{bottom:555.735000px;}
.y1ab{bottom:556.275000px;}
.y9{bottom:556.864499px;}
.y48{bottom:559.335000px;}
.ya2{bottom:559.695000px;}
.y13c{bottom:561.315000px;}
.y1dd{bottom:564.195000px;}
.ybb{bottom:567.975000px;}
.y15e{bottom:568.155000px;}
.y109{bottom:568.515000px;}
.y1c2{bottom:568.695000px;}
.y77{bottom:569.595000px;}
.ye2{bottom:570.675000px;}
.y184{bottom:573.015000px;}
.y1aa{bottom:573.555000px;}
.y13b{bottom:575.715000px;}
.y47{bottom:576.615000px;}
.ya1{bottom:576.975000px;}
.y1dc{bottom:581.475000px;}
.y107{bottom:582.915000px;}
.yba{bottom:585.255000px;}
.y15d{bottom:585.435000px;}
.y1c1{bottom:585.975000px;}
.y76{bottom:586.695000px;}
.ye1{bottom:589.215000px;}
.y13a{bottom:590.295000px;}
.y1a9{bottom:590.835000px;}
.y46{bottom:593.895000px;}
.ya0{bottom:594.255000px;}
.y106{bottom:597.675000px;}
.yb9{bottom:602.535000px;}
.y1c0{bottom:603.255000px;}
.y75{bottom:603.975000px;}
.y139{bottom:605.055000px;}
.y183{bottom:607.575000px;}
.y1a8{bottom:608.115000px;}
.ye0{bottom:609.375000px;}
.y45{bottom:611.175000px;}
.y9f{bottom:611.535000px;}
.y105{bottom:612.255000px;}
.y138{bottom:619.455000px;}
.yb8{bottom:619.815000px;}
.y1bf{bottom:620.535000px;}
.y74{bottom:621.255000px;}
.y1ee{bottom:625.035000px;}
.y15c{bottom:625.395000px;}
.ydf{bottom:626.655000px;}
.y44{bottom:628.455000px;}
.y9e{bottom:628.815000px;}
.y182{bottom:633.315000px;}
.y137{bottom:634.035000px;}
.y1be{bottom:637.815000px;}
.y73{bottom:638.535000px;}
.y104{bottom:641.415000px;}
.y1ed{bottom:642.315000px;}
.y1a7{bottom:642.495000px;}
.y15b{bottom:642.675000px;}
.yde{bottom:643.935000px;}
.y8{bottom:645.510000px;}
.yb7{bottom:645.555000px;}
.y43{bottom:645.735000px;}
.y9d{bottom:645.915000px;}
.y136{bottom:648.615000px;}
.y181{bottom:648.795000px;}
.y1bd{bottom:654.945000px;}
.y72{bottom:655.845000px;}
.y1db{bottom:659.445000px;}
.y1a6{bottom:659.805000px;}
.y15a{bottom:659.985000px;}
.ydd{bottom:661.245000px;}
.y180{bottom:661.785000px;}
.y42{bottom:662.865000px;}
.y9c{bottom:663.225000px;}
.y7{bottom:666.771000px;}
.y102{bottom:670.425000px;}
.yb6{bottom:672.225000px;}
.y71{bottom:672.945000px;}
.y17e{bottom:676.365000px;}
.y1da{bottom:676.725000px;}
.y159{bottom:677.265000px;}
.y135{bottom:677.805000px;}
.ydc{bottom:678.345000px;}
.y41{bottom:680.145000px;}
.y9b{bottom:680.505000px;}
.y1ec{bottom:681.225000px;}
.y1a5{bottom:686.085000px;}
.y70{bottom:690.225000px;}
.y134{bottom:692.385000px;}
.y1d9{bottom:694.005000px;}
.y177{bottom:694.185000px;}
.y40{bottom:697.425000px;}
.ydb{bottom:697.605000px;}
.y9a{bottom:697.785000px;}
.yb5{bottom:698.505000px;}
.y101{bottom:698.865000px;}
.y158{bottom:699.945000px;}
.y1a4{bottom:703.365000px;}
.y133{bottom:706.965000px;}
.y6f{bottom:707.505000px;}
.y1d8{bottom:711.285000px;}
.y100{bottom:713.445000px;}
.y3f{bottom:714.705000px;}
.y99{bottom:715.065000px;}
.yb4{bottom:715.785000px;}
.yda{bottom:716.685000px;}
.y1a3{bottom:720.645000px;}
.y132{bottom:721.545000px;}
.y157{bottom:723.345000px;}
.y6e{bottom:724.785000px;}
.y6{bottom:726.298500px;}
.y1d7{bottom:728.565000px;}
.y3e{bottom:731.985000px;}
.y98{bottom:732.345000px;}
.yb3{bottom:733.065000px;}
.yd9{bottom:734.325000px;}
.y131{bottom:736.125000px;}
.y1eb{bottom:737.565000px;}
.y1a2{bottom:737.925000px;}
.y156{bottom:741.345000px;}
.yff{bottom:741.705000px;}
.y6d{bottom:742.065000px;}
.y3d{bottom:749.265000px;}
.y97{bottom:749.445000px;}
.yb2{bottom:750.345000px;}
.y130{bottom:750.705000px;}
.y3{bottom:752.599495px;}
.y1ea{bottom:754.845000px;}
.yfe{bottom:756.285000px;}
.y6c{bottom:759.345000px;}
.y1a1{bottom:764.025000px;}
.y3c{bottom:766.365000px;}
.y96{bottom:766.725000px;}
.y1bc{bottom:767.445000px;}
.yfd{bottom:770.865000px;}
.y1e9{bottom:771.945000px;}
.yd8{bottom:772.305000px;}
.y6b{bottom:776.445000px;}
.y12f{bottom:778.965000px;}
.y175{bottom:780.600000px;}
.y3b{bottom:783.645000px;}
.y1bb{bottom:784.725000px;}
.yfc{bottom:785.460000px;}
.y1e8{bottom:789.225000px;}
.y95{bottom:793.005000px;}
.y12e{bottom:793.545000px;}
.y6a{bottom:793.725000px;}
.y153{bottom:794.460000px;}
.y173{bottom:795.165000px;}
.yd7{bottom:795.525000px;}
.yfb{bottom:800.025000px;}
.y3a{bottom:800.565000px;}
.y1ba{bottom:802.005000px;}
.y1d6{bottom:806.505000px;}
.y12d{bottom:808.140000px;}
.y94{bottom:810.285000px;}
.y69{bottom:811.005000px;}
.y152{bottom:812.460000px;}
.yf9{bottom:814.605000px;}
.y1a0{bottom:816.765000px;}
.y39{bottom:817.845000px;}
.yd5{bottom:822.345000px;}
.y12c{bottom:822.705000px;}
.y1d5{bottom:823.785000px;}
.y93{bottom:827.565000px;}
.yd6{bottom:827.745000px;}
.y68{bottom:828.285000px;}
.yf3{bottom:829.185000px;}
.y151{bottom:830.460000px;}
.yd3{bottom:832.965000px;}
.y19f{bottom:834.045000px;}
.y38{bottom:835.125000px;}
.y12b{bottom:837.285000px;}
.y1d4{bottom:841.065000px;}
.y92{bottom:844.845000px;}
.yb1{bottom:845.565000px;}
.y14f{bottom:848.460000px;}
.yd4{bottom:849.165000px;}
.y2f{bottom:849.705000px;}
.y19e{bottom:851.325000px;}
.y12a{bottom:851.865000px;}
.y67{bottom:854.565000px;}
.y1d3{bottom:858.345000px;}
.y91{bottom:861.945000px;}
.yb0{bottom:862.845000px;}
.y172{bottom:864.825000px;}
.y14d{bottom:866.445000px;}
.y129{bottom:866.460000px;}
.yf2{bottom:869.865000px;}
.yd2{bottom:871.125000px;}
.y66{bottom:871.845000px;}
.y19d{bottom:877.605000px;}
.y90{bottom:879.225000px;}
.y2{bottom:879.369000px;}
.y170{bottom:879.420000px;}
.y1b9{bottom:879.945000px;}
.y128{bottom:881.025000px;}
.yf1{bottom:887.145000px;}
.y65{bottom:888.945000px;}
.y125{bottom:895.605000px;}
.y8f{bottom:896.505000px;}
.y14c{bottom:896.865000px;}
.yd1{bottom:897.225000px;}
.yd0{bottom:897.990000px;}
.y19c{bottom:903.930000px;}
.y64{bottom:906.270000px;}
.yf0{bottom:913.830000px;}
.y1b8{bottom:914.550000px;}
.y1e7{bottom:919.050000px;}
.y8e{bottom:922.830000px;}
.y63{bottom:923.550000px;}
.y123{bottom:923.910000px;}
.ycf{bottom:925.890000px;}
.y19b{bottom:930.030000px;}
.yef{bottom:931.110000px;}
.y1b7{bottom:931.830000px;}
.y16f{bottom:935.430000px;}
.y1d2{bottom:936.330000px;}
.y8d{bottom:940.110000px;}
.y62{bottom:940.830000px;}
.y19a{bottom:947.310000px;}
.y16d{bottom:950.010000px;}
.y1d1{bottom:953.610000px;}
.yce{bottom:954.510000px;}
.yee{bottom:957.030000px;}
.y8c{bottom:957.390000px;}
.y61{bottom:958.110000px;}
.y199{bottom:964.410000px;}
.y122{bottom:966.030000px;}
.y1{bottom:966.726000px;}
.y1d0{bottom:970.890000px;}
.y8b{bottom:974.490000px;}
.y60{bottom:975.390000px;}
.y121{bottom:980.610000px;}
.ycd{bottom:981.150000px;}
.y198{bottom:982.950000px;}
.yed{bottom:983.490000px;}
.y2e{bottom:991.770000px;}
.y5f{bottom:992.490000px;}
.y120{bottom:995.190000px;}
.ycb{bottom:999.690000px;}
.ycc{bottom:1000.230000px;}
.y16c{bottom:1005.810000px;}
.yc8{bottom:1007.790000px;}
.y2d{bottom:1009.770000px;}
.y197{bottom:1017.510000px;}
.y8a{bottom:1017.690000px;}
.y16b{bottom:1020.390000px;}
.y11f{bottom:1024.350000px;}
.y5e{bottom:1027.050000px;}
.yc9{bottom:1027.230000px;}
.yca{bottom:1027.950000px;}
.y2c{bottom:1030.470000px;}
.y1e6{bottom:1031.550000px;}
.y14b{bottom:1036.050000px;}
.y11e{bottom:1038.930000px;}
.y196{bottom:1043.790000px;}
.y5d{bottom:1044.330000px;}
.y1cf{bottom:1048.830000px;}
.yaf{bottom:1053.330000px;}
.y2b{bottom:1056.210000px;}
.y16a{bottom:1061.250000px;}
.y5c{bottom:1061.610000px;}
.y1ce{bottom:1066.110000px;}
.y11d{bottom:1067.190000px;}
.y2a{bottom:1068.090000px;}
.y195{bottom:1070.070000px;}
.y89{bottom:1070.610000px;}
.y5b{bottom:1078.710000px;}
.y11c{bottom:1081.770000px;}
.y1cd{bottom:1083.210000px;}
.y88{bottom:1087.710000px;}
.y29{bottom:1087.890000px;}
.y194{bottom:1092.750000px;}
.y5a{bottom:1095.990000px;}
.y11b{bottom:1096.350000px;}
.y87{bottom:1104.990000px;}
.y28{bottom:1106.430000px;}
.y193{bottom:1115.610000px;}
.y59{bottom:1121.910000px;}
.y86{bottom:1122.270000px;}
.y119{bottom:1124.610000px;}
.y27{bottom:1131.990000px;}
.y192{bottom:1138.470000px;}
.y58{bottom:1139.190000px;}
.y85{bottom:1139.550000px;}
.y25{bottom:1157.580000px;}
.y22{bottom:1175.220000px;}
.h32{height:13.665000px;}
.h2f{height:13.680000px;}
.h31{height:13.710000px;}
.h2e{height:13.845000px;}
.h2d{height:13.860000px;}
.h39{height:13.890000px;}
.h33{height:14.025000px;}
.h3f{height:17.100000px;}
.h3d{height:17.265000px;}
.h3c{height:17.280000px;}
.h34{height:27.525000px;}
.h2a{height:27.540000px;}
.h38{height:27.562500px;}
.h35{height:27.705000px;}
.h30{height:27.720000px;}
.h3a{height:27.741000px;}
.h37{height:27.750000px;}
.hb{height:32.040000px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h3e{height:34.380000px;}
.h19{height:37.771172px;}
.h12{height:40.964766px;}
.h1b{height:41.385000px;}
.h36{height:41.421000px;}
.h17{height:42.806602px;}
.hd{height:43.506914px;}
.h7{height:45.960000px;}
.h1c{height:47.321367px;}
.h2b{height:47.344922px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h2c{height:48.616875px;}
.h3b{height:52.998047px;}
.h1a{height:54.421875px;}
.h41{height:55.065000px;}
.h2{height:55.152000px;}
.h42{height:55.281000px;}
.h45{height:58.621992px;}
.h16{height:58.651172px;}
.hf{height:60.226875px;}
.h40{height:61.423863px;}
.hc{height:63.824414px;}
.h13{height:64.978594px;}
.h10{height:67.992539px;}
.h11{height:68.324766px;}
.h43{height:68.940000px;}
.he{height:70.664062px;}
.h14{height:72.562500px;}
.h5{height:78.132000px;}
.h44{height:85.680000px;}
.h4{height:119.055004px;}
.h25{height:123.860742px;}
.h28{height:125.407266px;}
.h15{height:137.902500px;}
.h1f{height:145.460742px;}
.h29{height:146.180742px;}
.h22{height:146.287266px;}
.h1d{height:147.620742px;}
.h23{height:147.800742px;}
.h26{height:148.340742px;}
.h20{height:151.327266px;}
.h21{height:165.211172px;}
.h24{height:188.660742px;}
.h27{height:196.580742px;}
.h1e{height:229.087266px;}
.h18{height:1262.684910px;}
.ha{height:1262.700000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w17{width:5.940000px;}
.w14{width:6.120000px;}
.w10{width:6.300000px;}
.wf{width:6.480000px;}
.w11{width:6.502500px;}
.w1a{width:6.660000px;}
.w22{width:20.145000px;}
.w1e{width:21.765000px;}
.w1c{width:25.365000px;}
.w23{width:28.785000px;}
.w21{width:28.821000px;}
.w20{width:30.405000px;}
.w1f{width:31.125000px;}
.w24{width:36.525000px;}
.w2c{width:67.485000px;}
.w28{width:67.845000px;}
.w2a{width:71.625000px;}
.wd{width:72.525000px;}
.w5{width:73.245000px;}
.w29{width:75.801000px;}
.wa{width:115.041000px;}
.w26{width:126.201000px;}
.w8{width:166.695000px;}
.we{width:226.830000px;}
.w16{width:263.925000px;}
.w1d{width:315.960000px;}
.w27{width:334.500000px;}
.w13{width:339.165000px;}
.w19{width:350.685000px;}
.w7{width:375.540000px;}
.w25{width:424.140000px;}
.wb{width:437.655000px;}
.w6{width:478.350000px;}
.wc{width:478.890000px;}
.w15{width:505.005000px;}
.w1b{width:535.785000px;}
.w2b{width:551.610000px;}
.w18{width:605.805000px;}
.w12{width:622.365000px;}
.w2{width:637.794021px;}
.w4{width:892.500000px;}
.w9{width:892.777500px;}
.w3{width:892.800000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x17{left:-1.455000px;}
.x0{left:0.000000px;}
.x37{left:3.765000px;}
.x3b{left:6.105000px;}
.x6{left:8.085000px;}
.x42{left:10.260000px;}
.x41{left:11.520000px;}
.x14{left:14.400000px;}
.x48{left:16.200000px;}
.x45{left:17.985000px;}
.x44{left:21.405000px;}
.x43{left:22.485000px;}
.x47{left:25.050000px;}
.x46{left:27.165000px;}
.x55{left:29.160000px;}
.x53{left:31.485000px;}
.x49{left:32.580000px;}
.x56{left:48.810000px;}
.x57{left:50.580000px;}
.x5a{left:51.870000px;}
.x4d{left:54.750000px;}
.x58{left:61.545000px;}
.x8{left:64.110000px;}
.x4e{left:66.270000px;}
.x50{left:84.945000px;}
.x59{left:92.730000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4c{left:107.310000px;}
.x51{left:132.150000px;}
.x38{left:133.230000px;}
.x5{left:170.145000px;}
.x36{left:174.090000px;}
.x31{left:177.690000px;}
.xf{left:178.965000px;}
.x4f{left:180.750000px;}
.x20{left:182.190000px;}
.xd{left:183.630000px;}
.x30{left:188.310000px;}
.x34{left:191.910000px;}
.x4{left:203.484001px;}
.x15{left:217.987500px;}
.x5c{left:224.130000px;}
.x16{left:226.665000px;}
.x4a{left:229.350000px;}
.x18{left:232.965000px;}
.x19{left:239.085000px;}
.x7{left:243.405000px;}
.x1a{left:245.385000px;}
.x1b{left:251.685000px;}
.x2b{left:255.067500px;}
.x1c{left:257.805000px;}
.x1d{left:264.135000px;}
.x9{left:268.815000px;}
.x1e{left:270.435000px;}
.x2c{left:275.295000px;}
.xc{left:277.995000px;}
.x2d{left:281.235000px;}
.x1f{left:283.215000px;}
.x12{left:285.195000px;}
.x2e{left:286.995000px;}
.x32{left:295.635000px;}
.x2f{left:299.235000px;}
.xa{left:303.195000px;}
.x21{left:330.352500px;}
.x22{left:339.015000px;}
.x35{left:341.872500px;}
.xe{left:345.495000px;}
.x23{left:351.255000px;}
.x24{left:357.375000px;}
.x25{left:363.495000px;}
.x33{left:365.475000px;}
.x26{left:369.615000px;}
.x27{left:375.735000px;}
.x28{left:381.675000px;}
.x11{left:386.175000px;}
.x29{left:387.795000px;}
.x5b{left:389.235000px;}
.x2a{left:400.395000px;}
.xb{left:446.505000px;}
.x3{left:454.959000px;}
.x52{left:505.740000px;}
.x39{left:520.140000px;}
.x3a{left:542.820000px;}
.x10{left:555.420000px;}
.x3c{left:574.680000px;}
.x4b{left:595.920000px;}
.x3d{left:605.820000px;}
.x3e{left:635.550000px;}
.x13{left:649.050000px;}
.x54{left:650.490000px;}
.x3f{left:656.430000px;}
.x40{left:685.950000px;}
@media print{
.v12{vertical-align:-33.920000pt;}
.v3{vertical-align:-24.320000pt;}
.v1b{vertical-align:-21.760000pt;}
.v15{vertical-align:-19.840000pt;}
.v4{vertical-align:-18.560000pt;}
.ve{vertical-align:-12.960000pt;}
.v6{vertical-align:-10.880000pt;}
.v19{vertical-align:-7.680000pt;}
.v9{vertical-align:-5.120000pt;}
.v8{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.920000pt;}
.v14{vertical-align:5.760000pt;}
.v1a{vertical-align:9.600000pt;}
.v13{vertical-align:10.880000pt;}
.v7{vertical-align:12.800000pt;}
.v1c{vertical-align:17.280000pt;}
.v18{vertical-align:19.840000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.v11{vertical-align:25.600000pt;}
.v10{vertical-align:36.480000pt;}
.vf{vertical-align:38.400000pt;}
.vc{vertical-align:39.680000pt;}
.v16{vertical-align:45.440000pt;}
.vb{vertical-align:53.120000pt;}
.v17{vertical-align:55.040000pt;}
.va{vertical-align:71.040000pt;}
.vd{vertical-align:94.080000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls55{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.269867pt;}
.ls54{letter-spacing:-0.239467pt;}
.ls53{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.097067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls58{letter-spacing:0.015360pt;}
.ls40{letter-spacing:0.046080pt;}
.lsb{letter-spacing:0.048640pt;}
.ls52{letter-spacing:0.077333pt;}
.ls2c{letter-spacing:0.077440pt;}
.ls5f{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.097067pt;}
.ls5e{letter-spacing:0.102400pt;}
.ls5d{letter-spacing:0.106240pt;}
.lsd{letter-spacing:0.114667pt;}
.ls5a{letter-spacing:0.120533pt;}
.ls12{letter-spacing:0.130560pt;}
.ls3f{letter-spacing:0.136960pt;}
.ls48{letter-spacing:0.150400pt;}
.ls17{letter-spacing:0.153600pt;}
.ls4{letter-spacing:0.160000pt;}
.ls57{letter-spacing:0.161067pt;}
.ls7{letter-spacing:0.194667pt;}
.ls5b{letter-spacing:0.209280pt;}
.ls3a{letter-spacing:0.227200pt;}
.ls56{letter-spacing:0.230933pt;}
.ls5c{letter-spacing:0.231040pt;}
.ls61{letter-spacing:0.265600pt;}
.lsa{letter-spacing:0.266880pt;}
.ls33{letter-spacing:0.289280pt;}
.ls5{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.340480pt;}
.lse{letter-spacing:0.355200pt;}
.ls30{letter-spacing:0.426240pt;}
.ls9{letter-spacing:0.448000pt;}
.ls36{letter-spacing:0.494080pt;}
.ls49{letter-spacing:0.515200pt;}
.ls59{letter-spacing:0.545280pt;}
.ls1a{letter-spacing:0.560640pt;}
.ls42{letter-spacing:0.562560pt;}
.ls18{letter-spacing:0.593920pt;}
.ls47{letter-spacing:0.608000pt;}
.ls4d{letter-spacing:0.669227pt;}
.ls60{letter-spacing:0.960000pt;}
.ls2f{letter-spacing:0.995200pt;}
.ls28{letter-spacing:1.058560pt;}
.ls22{letter-spacing:1.504000pt;}
.ls51{letter-spacing:1.600000pt;}
.ls4e{letter-spacing:1.696000pt;}
.ls23{letter-spacing:1.698560pt;}
.ls50{letter-spacing:1.875200pt;}
.ls3b{letter-spacing:2.085120pt;}
.ls4c{letter-spacing:2.129280pt;}
.ls27{letter-spacing:2.144000pt;}
.lsf{letter-spacing:2.187520pt;}
.ls4f{letter-spacing:2.240000pt;}
.ls10{letter-spacing:2.412800pt;}
.ls1e{letter-spacing:2.456320pt;}
.ls37{letter-spacing:2.515200pt;}
.ls19{letter-spacing:2.847360pt;}
.ls31{letter-spacing:2.970880pt;}
.ls44{letter-spacing:2.986240pt;}
.ls15{letter-spacing:3.052800pt;}
.ls1f{letter-spacing:3.096320pt;}
.ls1c{letter-spacing:3.153920pt;}
.ls2b{letter-spacing:3.610880pt;}
.ls11{letter-spacing:3.654400pt;}
.ls3d{letter-spacing:3.840000pt;}
.ls38{letter-spacing:4.250880pt;}
.ls1d{letter-spacing:8.928000pt;}
.ls3e{letter-spacing:9.016320pt;}
.ls4b{letter-spacing:11.519360pt;}
.ls46{letter-spacing:11.699200pt;}
.ls16{letter-spacing:11.875200pt;}
.ls2e{letter-spacing:12.082560pt;}
.ls2d{letter-spacing:12.103040pt;}
.ls45{letter-spacing:12.128000pt;}
.ls34{letter-spacing:12.159360pt;}
.ls41{letter-spacing:12.449280pt;}
.ls29{letter-spacing:12.465280pt;}
.ls4a{letter-spacing:12.515200pt;}
.ls14{letter-spacing:13.684480pt;}
.ls39{letter-spacing:14.435200pt;}
.ls26{letter-spacing:14.663680pt;}
.ls24{letter-spacing:14.719360pt;}
.ls21{letter-spacing:14.906240pt;}
.ls20{letter-spacing:15.075200pt;}
.ls3c{letter-spacing:15.282560pt;}
.ls25{letter-spacing:15.328000pt;}
.ls2{letter-spacing:55.786667pt;}
.ls3{letter-spacing:55.840000pt;}
.ls32{letter-spacing:71.777920pt;}
.ls35{letter-spacing:72.417920pt;}
.ls2a{letter-spacing:847.040000pt;}
.lsc{letter-spacing:1268.155307pt;}
.ls43{letter-spacing:1600.586667pt;}
.ws1d{word-spacing:-53.120000pt;}
.wsc{word-spacing:-41.617173pt;}
.ws9{word-spacing:-41.539840pt;}
.ws13{word-spacing:-41.432107pt;}
.ws7{word-spacing:-34.560000pt;}
.wsb{word-spacing:-29.027840pt;}
.ws1{word-spacing:-27.649493pt;}
.ws22{word-spacing:-14.240000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws1c{word-spacing:-13.510933pt;}
.ws1f{word-spacing:-13.400533pt;}
.ws20{word-spacing:-13.382400pt;}
.ws21{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.373547pt;}
.ws6{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.208427pt;}
.ws8{word-spacing:-12.000000pt;}
.ws1a{word-spacing:-11.040000pt;}
.ws1e{word-spacing:-10.881067pt;}
.ws18{word-spacing:-10.720000pt;}
.ws17{word-spacing:-10.480533pt;}
.ws1b{word-spacing:-10.400000pt;}
.ws4{word-spacing:-9.280000pt;}
.wsa{word-spacing:-8.640000pt;}
.ws19{word-spacing:-6.720000pt;}
.ws0{word-spacing:0.000000pt;}
.ws10{word-spacing:21.278080pt;}
.wsd{word-spacing:21.918080pt;}
.ws15{word-spacing:22.078080pt;}
.ws14{word-spacing:55.079680pt;}
.ws11{word-spacing:66.599680pt;}
.wse{word-spacing:70.439680pt;}
.ws16{word-spacing:113.319680pt;}
.ws12{word-spacing:138.919680pt;}
.wsf{word-spacing:154.279680pt;}
._17{margin-left:-22.457600pt;}
._14{margin-left:-4.488533pt;}
._3{margin-left:-3.356160pt;}
._4{margin-left:-2.013440pt;}
._2{margin-left:-1.048320pt;}
._0{width:1.069653pt;}
._7{width:1.965440pt;}
._a{width:2.967467pt;}
._8{width:4.302720pt;}
._9{width:5.790080pt;}
._b{width:7.118080pt;}
._d{width:8.108373pt;}
._f{width:9.042133pt;}
._e{width:10.677120pt;}
._5{width:11.603200pt;}
._13{width:12.783787pt;}
._6{width:14.866347pt;}
._c{width:15.827413pt;}
._10{width:16.834133pt;}
._12{width:18.220160pt;}
._1a{width:19.111680pt;}
._25{width:20.079787pt;}
._23{width:21.052587pt;}
._24{width:22.196907pt;}
._33{width:23.957120pt;}
._26{width:25.019520pt;}
._2c{width:26.234027pt;}
._2d{width:27.508907pt;}
._2e{width:28.467840pt;}
._1c{width:32.615680pt;}
._1b{width:33.837440pt;}
._37{width:34.924373pt;}
._11{width:35.962240pt;}
._1f{width:37.608960pt;}
._20{width:38.512000pt;}
._2f{width:42.436693pt;}
._2a{width:43.717760pt;}
._32{width:49.871787pt;}
._2b{width:51.575040pt;}
._29{width:66.028160pt;}
._36{width:68.468693pt;}
._28{width:70.068267pt;}
._27{width:71.021440pt;}
._31{width:74.994347pt;}
._30{width:76.177920pt;}
._35{width:109.034027pt;}
._34{width:110.117760pt;}
._21{width:167.946667pt;}
._22{width:178.720000pt;}
._1e{width:498.293760pt;}
._19{width:688.510080pt;}
._15{width:691.442133pt;}
._16{width:1088.115200pt;}
._1d{width:1119.400533pt;}
._18{width:1228.365867pt;}
._1{width:1440.315947pt;}
.fse{font-size:26.880000pt;}
.fsd{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y117{bottom:2.226667pt;}
.y13f{bottom:2.240000pt;}
.y176{bottom:2.386667pt;}
.yfa{bottom:2.400000pt;}
.y115{bottom:2.546667pt;}
.yf8{bottom:2.560000pt;}
.y127{bottom:2.600000pt;}
.y56{bottom:2.706667pt;}
.yf5{bottom:2.720000pt;}
.y108{bottom:2.880000pt;}
.y37{bottom:3.040000pt;}
.y155{bottom:3.200000pt;}
.y150{bottom:3.346667pt;}
.y14e{bottom:3.360000pt;}
.y17d{bottom:5.120000pt;}
.y17f{bottom:5.440000pt;}
.y53{bottom:5.906667pt;}
.yf6{bottom:8.640000pt;}
.y24{bottom:9.760000pt;}
.y23{bottom:10.240000pt;}
.yf7{bottom:14.720000pt;}
.y114{bottom:14.866667pt;}
.yf4{bottom:14.880000pt;}
.y112{bottom:14.906667pt;}
.y126{bottom:14.920000pt;}
.y55{bottom:15.026667pt;}
.y103{bottom:15.040000pt;}
.y11a{bottom:15.066667pt;}
.y17c{bottom:17.440000pt;}
.y36{bottom:18.240000pt;}
.y154{bottom:18.560000pt;}
.y54{bottom:27.186667pt;}
.y124{bottom:27.200000pt;}
.y111{bottom:27.226667pt;}
.y17b{bottom:29.760000pt;}
.y35{bottom:33.920000pt;}
.y16e{bottom:39.360000pt;}
.y171{bottom:39.546667pt;}
.y17a{bottom:41.920000pt;}
.y34{bottom:49.320000pt;}
.y174{bottom:51.680000pt;}
.y179{bottom:54.240000pt;}
.y5{bottom:59.133337pt;}
.y33{bottom:64.680000pt;}
.y178{bottom:66.560000pt;}
.y32{bottom:79.720000pt;}
.y4{bottom:86.333337pt;}
.y31{bottom:95.080000pt;}
.y30{bottom:110.280000pt;}
.y21{bottom:123.790666pt;}
.y18{bottom:175.052000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y26{bottom:247.386667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.yc7{bottom:287.066667pt;}
.yae{bottom:289.466667pt;}
.y118{bottom:289.960000pt;}
.y191{bottom:291.066667pt;}
.y1b6{bottom:293.786667pt;}
.y14a{bottom:295.066667pt;}
.y57{bottom:298.746667pt;}
.y84{bottom:298.906667pt;}
.y1e5{bottom:301.466667pt;}
.yc6{bottom:302.426667pt;}
.y1f6{bottom:303.066667pt;}
.yad{bottom:304.826667pt;}
.yec{bottom:307.866667pt;}
.y1b5{bottom:309.146667pt;}
.yf{bottom:309.452000pt;}
.y149{bottom:310.426667pt;}
.y52{bottom:310.760000pt;}
.y190{bottom:311.386667pt;}
.y83{bottom:314.266667pt;}
.y116{bottom:315.240000pt;}
.y1cc{bottom:316.826667pt;}
.y169{bottom:317.466667pt;}
.yc5{bottom:317.626667pt;}
.yac{bottom:320.186667pt;}
.yeb{bottom:323.226667pt;}
.y1b4{bottom:324.506667pt;}
.y1f5{bottom:324.826667pt;}
.y113{bottom:328.200000pt;}
.y18f{bottom:331.706667pt;}
.y1cb{bottom:332.186667pt;}
.y168{bottom:332.826667pt;}
.yc4{bottom:332.986667pt;}
.y148{bottom:333.306667pt;}
.y1e4{bottom:336.186667pt;}
.y82{bottom:337.466667pt;}
.y1f4{bottom:340.186667pt;}
.yab{bottom:343.546667pt;}
.ye{bottom:343.809333pt;}
.y147{bottom:344.840000pt;}
.y1b3{bottom:347.546667pt;}
.y167{bottom:348.026667pt;}
.ye9{bottom:348.826667pt;}
.yc3{bottom:349.306667pt;}
.y51{bottom:350.266667pt;}
.y1e3{bottom:351.546667pt;}
.y81{bottom:352.826667pt;}
.y110{bottom:353.320000pt;}
.yea{bottom:354.106667pt;}
.y1f3{bottom:355.546667pt;}
.y18e{bottom:356.026667pt;}
.yaa{bottom:358.906667pt;}
.yd{bottom:362.706666pt;}
.yc2{bottom:364.666667pt;}
.y1ca{bottom:366.626667pt;}
.y80{bottom:368.226667pt;}
.y146{bottom:370.146667pt;}
.y1e2{bottom:370.946667pt;}
.y1b2{bottom:371.106667pt;}
.y18d{bottom:371.426667pt;}
.y50{bottom:372.226667pt;}
.y166{bottom:372.386667pt;}
.ya9{bottom:374.306667pt;}
.ye8{bottom:375.426667pt;}
.yc1{bottom:380.066667pt;}
.y1c9{bottom:382.306667pt;}
.y145{bottom:383.106667pt;}
.y7f{bottom:383.586667pt;}
.ye7{bottom:384.066667pt;}
.y4f{bottom:385.506667pt;}
.y1e1{bottom:386.306667pt;}
.y18c{bottom:386.626667pt;}
.y165{bottom:387.746667pt;}
.y1f2{bottom:390.306667pt;}
.y10f{bottom:390.786667pt;}
.y1b1{bottom:394.466667pt;}
.yc0{bottom:395.746667pt;}
.y144{bottom:395.906667pt;}
.ya8{bottom:397.506667pt;}
.y7e{bottom:398.946667pt;}
.y1e0{bottom:401.506667pt;}
.y18b{bottom:401.986667pt;}
.y164{bottom:403.106667pt;}
.y4e{bottom:405.026667pt;}
.y1c8{bottom:405.506667pt;}
.y143{bottom:409.026667pt;}
.y1b0{bottom:409.826667pt;}
.ya7{bottom:412.866667pt;}
.y7d{bottom:414.306667pt;}
.y10e{bottom:416.066667pt;}
.y18a{bottom:417.346667pt;}
.ye6{bottom:418.306667pt;}
.y163{bottom:418.466667pt;}
.ybf{bottom:419.266667pt;}
.y4d{bottom:420.546667pt;}
.y1c7{bottom:420.866667pt;}
.y142{bottom:421.826667pt;}
.y1af{bottom:425.186667pt;}
.ya6{bottom:428.226667pt;}
.y10d{bottom:429.026667pt;}
.y7c{bottom:429.506667pt;}
.y189{bottom:432.706667pt;}
.ybe{bottom:434.946667pt;}
.y4c{bottom:435.906667pt;}
.y1c6{bottom:436.226667pt;}
.y162{bottom:438.626667pt;}
.y1f1{bottom:440.226667pt;}
.y1ae{bottom:440.546667pt;}
.y10c{bottom:441.986667pt;}
.ye5{bottom:442.786667pt;}
.ya5{bottom:443.586667pt;}
.y7b{bottom:444.866667pt;}
.yc{bottom:446.990669pt;}
.y141{bottom:447.106667pt;}
.y188{bottom:448.066667pt;}
.ybd{bottom:450.626667pt;}
.y4b{bottom:451.266667pt;}
.y1c5{bottom:451.586667pt;}
.y161{bottom:453.986667pt;}
.y1f0{bottom:455.586667pt;}
.y1ad{bottom:455.906667pt;}
.ya4{bottom:458.946667pt;}
.y140{bottom:460.066667pt;}
.y7a{bottom:460.226667pt;}
.yb{bottom:462.990669pt;}
.y187{bottom:463.426667pt;}
.y4a{bottom:466.306667pt;}
.y1c4{bottom:466.946667pt;}
.y10b{bottom:467.106667pt;}
.ye4{bottom:468.706667pt;}
.y160{bottom:469.346667pt;}
.y1df{bottom:470.946667pt;}
.y1ac{bottom:471.106667pt;}
.y13e{bottom:473.026667pt;}
.ya3{bottom:474.306667pt;}
.y79{bottom:475.586667pt;}
.y186{bottom:478.626667pt;}
.ya{bottom:478.990666pt;}
.y10a{bottom:480.066667pt;}
.y49{bottom:481.986667pt;}
.y1c3{bottom:482.306667pt;}
.y13d{bottom:485.826667pt;}
.y1de{bottom:486.306667pt;}
.ybc{bottom:489.506667pt;}
.y15f{bottom:489.666667pt;}
.y1ef{bottom:490.306667pt;}
.y78{bottom:490.946667pt;}
.ye3{bottom:491.906667pt;}
.y185{bottom:493.986667pt;}
.y1ab{bottom:494.466667pt;}
.y9{bottom:494.990666pt;}
.y48{bottom:497.186667pt;}
.ya2{bottom:497.506667pt;}
.y13c{bottom:498.946667pt;}
.y1dd{bottom:501.506667pt;}
.ybb{bottom:504.866667pt;}
.y15e{bottom:505.026667pt;}
.y109{bottom:505.346667pt;}
.y1c2{bottom:505.506667pt;}
.y77{bottom:506.306667pt;}
.ye2{bottom:507.266667pt;}
.y184{bottom:509.346667pt;}
.y1aa{bottom:509.826667pt;}
.y13b{bottom:511.746667pt;}
.y47{bottom:512.546667pt;}
.ya1{bottom:512.866667pt;}
.y1dc{bottom:516.866667pt;}
.y107{bottom:518.146667pt;}
.yba{bottom:520.226667pt;}
.y15d{bottom:520.386667pt;}
.y1c1{bottom:520.866667pt;}
.y76{bottom:521.506667pt;}
.ye1{bottom:523.746667pt;}
.y13a{bottom:524.706667pt;}
.y1a9{bottom:525.186667pt;}
.y46{bottom:527.906667pt;}
.ya0{bottom:528.226667pt;}
.y106{bottom:531.266667pt;}
.yb9{bottom:535.586667pt;}
.y1c0{bottom:536.226667pt;}
.y75{bottom:536.866667pt;}
.y139{bottom:537.826667pt;}
.y183{bottom:540.066667pt;}
.y1a8{bottom:540.546667pt;}
.ye0{bottom:541.666667pt;}
.y45{bottom:543.266667pt;}
.y9f{bottom:543.586667pt;}
.y105{bottom:544.226667pt;}
.y138{bottom:550.626667pt;}
.yb8{bottom:550.946667pt;}
.y1bf{bottom:551.586667pt;}
.y74{bottom:552.226667pt;}
.y1ee{bottom:555.586667pt;}
.y15c{bottom:555.906667pt;}
.ydf{bottom:557.026667pt;}
.y44{bottom:558.626667pt;}
.y9e{bottom:558.946667pt;}
.y182{bottom:562.946667pt;}
.y137{bottom:563.586667pt;}
.y1be{bottom:566.946667pt;}
.y73{bottom:567.586667pt;}
.y104{bottom:570.146667pt;}
.y1ed{bottom:570.946667pt;}
.y1a7{bottom:571.106667pt;}
.y15b{bottom:571.266667pt;}
.yde{bottom:572.386667pt;}
.y8{bottom:573.786667pt;}
.yb7{bottom:573.826667pt;}
.y43{bottom:573.986667pt;}
.y9d{bottom:574.146667pt;}
.y136{bottom:576.546667pt;}
.y181{bottom:576.706667pt;}
.y1bd{bottom:582.173333pt;}
.y72{bottom:582.973333pt;}
.y1db{bottom:586.173333pt;}
.y1a6{bottom:586.493333pt;}
.y15a{bottom:586.653333pt;}
.ydd{bottom:587.773333pt;}
.y180{bottom:588.253333pt;}
.y42{bottom:589.213333pt;}
.y9c{bottom:589.533333pt;}
.y7{bottom:592.685334pt;}
.y102{bottom:595.933333pt;}
.yb6{bottom:597.533333pt;}
.y71{bottom:598.173333pt;}
.y17e{bottom:601.213333pt;}
.y1da{bottom:601.533333pt;}
.y159{bottom:602.013333pt;}
.y135{bottom:602.493333pt;}
.ydc{bottom:602.973333pt;}
.y41{bottom:604.573333pt;}
.y9b{bottom:604.893333pt;}
.y1ec{bottom:605.533333pt;}
.y1a5{bottom:609.853333pt;}
.y70{bottom:613.533333pt;}
.y134{bottom:615.453333pt;}
.y1d9{bottom:616.893333pt;}
.y177{bottom:617.053333pt;}
.y40{bottom:619.933333pt;}
.ydb{bottom:620.093333pt;}
.y9a{bottom:620.253333pt;}
.yb5{bottom:620.893333pt;}
.y101{bottom:621.213333pt;}
.y158{bottom:622.173333pt;}
.y1a4{bottom:625.213333pt;}
.y133{bottom:628.413333pt;}
.y6f{bottom:628.893333pt;}
.y1d8{bottom:632.253333pt;}
.y100{bottom:634.173333pt;}
.y3f{bottom:635.293333pt;}
.y99{bottom:635.613333pt;}
.yb4{bottom:636.253333pt;}
.yda{bottom:637.053333pt;}
.y1a3{bottom:640.573333pt;}
.y132{bottom:641.373333pt;}
.y157{bottom:642.973333pt;}
.y6e{bottom:644.253333pt;}
.y6{bottom:645.598667pt;}
.y1d7{bottom:647.613333pt;}
.y3e{bottom:650.653333pt;}
.y98{bottom:650.973333pt;}
.yb3{bottom:651.613333pt;}
.yd9{bottom:652.733333pt;}
.y131{bottom:654.333333pt;}
.y1eb{bottom:655.613333pt;}
.y1a2{bottom:655.933333pt;}
.y156{bottom:658.973333pt;}
.yff{bottom:659.293333pt;}
.y6d{bottom:659.613333pt;}
.y3d{bottom:666.013333pt;}
.y97{bottom:666.173333pt;}
.yb2{bottom:666.973333pt;}
.y130{bottom:667.293333pt;}
.y3{bottom:668.977329pt;}
.y1ea{bottom:670.973333pt;}
.yfe{bottom:672.253333pt;}
.y6c{bottom:674.973333pt;}
.y1a1{bottom:679.133333pt;}
.y3c{bottom:681.213333pt;}
.y96{bottom:681.533333pt;}
.y1bc{bottom:682.173333pt;}
.yfd{bottom:685.213333pt;}
.y1e9{bottom:686.173333pt;}
.yd8{bottom:686.493333pt;}
.y6b{bottom:690.173333pt;}
.y12f{bottom:692.413333pt;}
.y175{bottom:693.866667pt;}
.y3b{bottom:696.573333pt;}
.y1bb{bottom:697.533333pt;}
.yfc{bottom:698.186667pt;}
.y1e8{bottom:701.533333pt;}
.y95{bottom:704.893333pt;}
.y12e{bottom:705.373333pt;}
.y6a{bottom:705.533333pt;}
.y153{bottom:706.186667pt;}
.y173{bottom:706.813333pt;}
.yd7{bottom:707.133333pt;}
.yfb{bottom:711.133333pt;}
.y3a{bottom:711.613333pt;}
.y1ba{bottom:712.893333pt;}
.y1d6{bottom:716.893333pt;}
.y12d{bottom:718.346667pt;}
.y94{bottom:720.253333pt;}
.y69{bottom:720.893333pt;}
.y152{bottom:722.186667pt;}
.yf9{bottom:724.093333pt;}
.y1a0{bottom:726.013333pt;}
.y39{bottom:726.973333pt;}
.yd5{bottom:730.973333pt;}
.y12c{bottom:731.293333pt;}
.y1d5{bottom:732.253333pt;}
.y93{bottom:735.613333pt;}
.yd6{bottom:735.773333pt;}
.y68{bottom:736.253333pt;}
.yf3{bottom:737.053333pt;}
.y151{bottom:738.186667pt;}
.yd3{bottom:740.413333pt;}
.y19f{bottom:741.373333pt;}
.y38{bottom:742.333333pt;}
.y12b{bottom:744.253333pt;}
.y1d4{bottom:747.613333pt;}
.y92{bottom:750.973333pt;}
.yb1{bottom:751.613333pt;}
.y14f{bottom:754.186667pt;}
.yd4{bottom:754.813333pt;}
.y2f{bottom:755.293333pt;}
.y19e{bottom:756.733333pt;}
.y12a{bottom:757.213333pt;}
.y67{bottom:759.613333pt;}
.y1d3{bottom:762.973333pt;}
.y91{bottom:766.173333pt;}
.yb0{bottom:766.973333pt;}
.y172{bottom:768.733333pt;}
.y14d{bottom:770.173333pt;}
.y129{bottom:770.186667pt;}
.yf2{bottom:773.213333pt;}
.yd2{bottom:774.333333pt;}
.y66{bottom:774.973333pt;}
.y19d{bottom:780.093333pt;}
.y90{bottom:781.533333pt;}
.y2{bottom:781.661334pt;}
.y170{bottom:781.706667pt;}
.y1b9{bottom:782.173333pt;}
.y128{bottom:783.133333pt;}
.yf1{bottom:788.573333pt;}
.y65{bottom:790.173333pt;}
.y125{bottom:796.093333pt;}
.y8f{bottom:796.893333pt;}
.y14c{bottom:797.213333pt;}
.yd1{bottom:797.533333pt;}
.yd0{bottom:798.213333pt;}
.y19c{bottom:803.493333pt;}
.y64{bottom:805.573333pt;}
.yf0{bottom:812.293333pt;}
.y1b8{bottom:812.933333pt;}
.y1e7{bottom:816.933333pt;}
.y8e{bottom:820.293333pt;}
.y63{bottom:820.933333pt;}
.y123{bottom:821.253333pt;}
.ycf{bottom:823.013333pt;}
.y19b{bottom:826.693333pt;}
.yef{bottom:827.653333pt;}
.y1b7{bottom:828.293333pt;}
.y16f{bottom:831.493333pt;}
.y1d2{bottom:832.293333pt;}
.y8d{bottom:835.653333pt;}
.y62{bottom:836.293333pt;}
.y19a{bottom:842.053333pt;}
.y16d{bottom:844.453333pt;}
.y1d1{bottom:847.653333pt;}
.yce{bottom:848.453333pt;}
.yee{bottom:850.693333pt;}
.y8c{bottom:851.013333pt;}
.y61{bottom:851.653333pt;}
.y199{bottom:857.253333pt;}
.y122{bottom:858.693333pt;}
.y1{bottom:859.312000pt;}
.y1d0{bottom:863.013333pt;}
.y8b{bottom:866.213333pt;}
.y60{bottom:867.013333pt;}
.y121{bottom:871.653333pt;}
.ycd{bottom:872.133333pt;}
.y198{bottom:873.733333pt;}
.yed{bottom:874.213333pt;}
.y2e{bottom:881.573333pt;}
.y5f{bottom:882.213333pt;}
.y120{bottom:884.613333pt;}
.ycb{bottom:888.613333pt;}
.ycc{bottom:889.093333pt;}
.y16c{bottom:894.053333pt;}
.yc8{bottom:895.813333pt;}
.y2d{bottom:897.573333pt;}
.y197{bottom:904.453333pt;}
.y8a{bottom:904.613333pt;}
.y16b{bottom:907.013333pt;}
.y11f{bottom:910.533333pt;}
.y5e{bottom:912.933333pt;}
.yc9{bottom:913.093333pt;}
.yca{bottom:913.733333pt;}
.y2c{bottom:915.973333pt;}
.y1e6{bottom:916.933333pt;}
.y14b{bottom:920.933333pt;}
.y11e{bottom:923.493333pt;}
.y196{bottom:927.813333pt;}
.y5d{bottom:928.293333pt;}
.y1cf{bottom:932.293333pt;}
.yaf{bottom:936.293333pt;}
.y2b{bottom:938.853333pt;}
.y16a{bottom:943.333333pt;}
.y5c{bottom:943.653333pt;}
.y1ce{bottom:947.653333pt;}
.y11d{bottom:948.613333pt;}
.y2a{bottom:949.413333pt;}
.y195{bottom:951.173333pt;}
.y89{bottom:951.653333pt;}
.y5b{bottom:958.853333pt;}
.y11c{bottom:961.573333pt;}
.y1cd{bottom:962.853333pt;}
.y88{bottom:966.853333pt;}
.y29{bottom:967.013333pt;}
.y194{bottom:971.333333pt;}
.y5a{bottom:974.213333pt;}
.y11b{bottom:974.533333pt;}
.y87{bottom:982.213333pt;}
.y28{bottom:983.493333pt;}
.y193{bottom:991.653333pt;}
.y59{bottom:997.253333pt;}
.y86{bottom:997.573333pt;}
.y119{bottom:999.653333pt;}
.y27{bottom:1006.213333pt;}
.y192{bottom:1011.973333pt;}
.y58{bottom:1012.613333pt;}
.y85{bottom:1012.933333pt;}
.y25{bottom:1028.960000pt;}
.y22{bottom:1044.640000pt;}
.h32{height:12.146667pt;}
.h2f{height:12.160000pt;}
.h31{height:12.186667pt;}
.h2e{height:12.306667pt;}
.h2d{height:12.320000pt;}
.h39{height:12.346667pt;}
.h33{height:12.466667pt;}
.h3f{height:15.200000pt;}
.h3d{height:15.346667pt;}
.h3c{height:15.360000pt;}
.h34{height:24.466667pt;}
.h2a{height:24.480000pt;}
.h38{height:24.500000pt;}
.h35{height:24.626667pt;}
.h30{height:24.640000pt;}
.h3a{height:24.658667pt;}
.h37{height:24.666667pt;}
.hb{height:28.480000pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h3e{height:30.560000pt;}
.h19{height:33.574375pt;}
.h12{height:36.413125pt;}
.h1b{height:36.786667pt;}
.h36{height:36.818667pt;}
.h17{height:38.050313pt;}
.hd{height:38.672812pt;}
.h7{height:40.853333pt;}
.h1c{height:42.063437pt;}
.h2b{height:42.084375pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h2c{height:43.215000pt;}
.h3b{height:47.109375pt;}
.h1a{height:48.375000pt;}
.h41{height:48.946667pt;}
.h2{height:49.024000pt;}
.h42{height:49.138667pt;}
.h45{height:52.108438pt;}
.h16{height:52.134375pt;}
.hf{height:53.535000pt;}
.h40{height:54.598989pt;}
.hc{height:56.732813pt;}
.h13{height:57.758750pt;}
.h10{height:60.437812pt;}
.h11{height:60.733125pt;}
.h43{height:61.280000pt;}
.he{height:62.812500pt;}
.h14{height:64.500000pt;}
.h5{height:69.450667pt;}
.h44{height:76.160000pt;}
.h4{height:105.826671pt;}
.h25{height:110.098438pt;}
.h28{height:111.473125pt;}
.h15{height:122.580000pt;}
.h1f{height:129.298438pt;}
.h29{height:129.938438pt;}
.h22{height:130.033125pt;}
.h1d{height:131.218438pt;}
.h23{height:131.378438pt;}
.h26{height:131.858438pt;}
.h20{height:134.513125pt;}
.h21{height:146.854375pt;}
.h24{height:167.698438pt;}
.h27{height:174.738437pt;}
.h1e{height:203.633125pt;}
.h18{height:1122.386587pt;}
.ha{height:1122.400000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w17{width:5.280000pt;}
.w14{width:5.440000pt;}
.w10{width:5.600000pt;}
.wf{width:5.760000pt;}
.w11{width:5.780000pt;}
.w1a{width:5.920000pt;}
.w22{width:17.906667pt;}
.w1e{width:19.346667pt;}
.w1c{width:22.546667pt;}
.w23{width:25.586667pt;}
.w21{width:25.618667pt;}
.w20{width:27.026667pt;}
.w1f{width:27.666667pt;}
.w24{width:32.466667pt;}
.w2c{width:59.986667pt;}
.w28{width:60.306667pt;}
.w2a{width:63.666667pt;}
.wd{width:64.466667pt;}
.w5{width:65.106667pt;}
.w29{width:67.378667pt;}
.wa{width:102.258667pt;}
.w26{width:112.178667pt;}
.w8{width:148.173333pt;}
.we{width:201.626667pt;}
.w16{width:234.600000pt;}
.w1d{width:280.853333pt;}
.w27{width:297.333333pt;}
.w13{width:301.480000pt;}
.w19{width:311.720000pt;}
.w7{width:333.813333pt;}
.w25{width:377.013333pt;}
.wb{width:389.026667pt;}
.w6{width:425.200000pt;}
.wc{width:425.680000pt;}
.w15{width:448.893333pt;}
.w1b{width:476.253333pt;}
.w2b{width:490.320000pt;}
.w18{width:538.493333pt;}
.w12{width:553.213333pt;}
.w2{width:566.928019pt;}
.w4{width:793.333333pt;}
.w9{width:793.580000pt;}
.w3{width:793.600000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x17{left:-1.293333pt;}
.x0{left:0.000000pt;}
.x37{left:3.346667pt;}
.x3b{left:5.426667pt;}
.x6{left:7.186667pt;}
.x42{left:9.120000pt;}
.x41{left:10.240000pt;}
.x14{left:12.800000pt;}
.x48{left:14.400000pt;}
.x45{left:15.986667pt;}
.x44{left:19.026667pt;}
.x43{left:19.986667pt;}
.x47{left:22.266667pt;}
.x46{left:24.146667pt;}
.x55{left:25.920000pt;}
.x53{left:27.986667pt;}
.x49{left:28.960000pt;}
.x56{left:43.386667pt;}
.x57{left:44.960000pt;}
.x5a{left:46.106667pt;}
.x4d{left:48.666667pt;}
.x58{left:54.706667pt;}
.x8{left:56.986667pt;}
.x4e{left:58.906667pt;}
.x50{left:75.506667pt;}
.x59{left:82.426667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4c{left:95.386667pt;}
.x51{left:117.466667pt;}
.x38{left:118.426667pt;}
.x5{left:151.240000pt;}
.x36{left:154.746667pt;}
.x31{left:157.946667pt;}
.xf{left:159.080000pt;}
.x4f{left:160.666667pt;}
.x20{left:161.946667pt;}
.xd{left:163.226667pt;}
.x30{left:167.386667pt;}
.x34{left:170.586667pt;}
.x4{left:180.874667pt;}
.x15{left:193.766667pt;}
.x5c{left:199.226667pt;}
.x16{left:201.480000pt;}
.x4a{left:203.866667pt;}
.x18{left:207.080000pt;}
.x19{left:212.520000pt;}
.x7{left:216.360000pt;}
.x1a{left:218.120000pt;}
.x1b{left:223.720000pt;}
.x2b{left:226.726667pt;}
.x1c{left:229.160000pt;}
.x1d{left:234.786667pt;}
.x9{left:238.946667pt;}
.x1e{left:240.386667pt;}
.x2c{left:244.706667pt;}
.xc{left:247.106667pt;}
.x2d{left:249.986667pt;}
.x1f{left:251.746667pt;}
.x12{left:253.506667pt;}
.x2e{left:255.106667pt;}
.x32{left:262.786667pt;}
.x2f{left:265.986667pt;}
.xa{left:269.506667pt;}
.x21{left:293.646667pt;}
.x22{left:301.346667pt;}
.x35{left:303.886667pt;}
.xe{left:307.106667pt;}
.x23{left:312.226667pt;}
.x24{left:317.666667pt;}
.x25{left:323.106667pt;}
.x33{left:324.866667pt;}
.x26{left:328.546667pt;}
.x27{left:333.986667pt;}
.x28{left:339.266667pt;}
.x11{left:343.266667pt;}
.x29{left:344.706667pt;}
.x5b{left:345.986667pt;}
.x2a{left:355.906667pt;}
.xb{left:396.893333pt;}
.x3{left:404.408000pt;}
.x52{left:449.546667pt;}
.x39{left:462.346667pt;}
.x3a{left:482.506667pt;}
.x10{left:493.706667pt;}
.x3c{left:510.826667pt;}
.x4b{left:529.706667pt;}
.x3d{left:538.506667pt;}
.x3e{left:564.933333pt;}
.x13{left:576.933333pt;}
.x54{left:578.213333pt;}
.x3f{left:583.493333pt;}
.x40{left:609.733333pt;}
}




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