
    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_ffaae2d9e05127cfc9fc9cae.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_c30e8bf221c4e868db5d0091.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_dc8db3c1811a76bddcdc32db.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_57c530dbc8eee362e1156056.woff')format("woff");}.ff4{font-family:ff4;line-height:1.044434;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_bc368d507deb857277fa6986.woff')format("woff");}.ff5{font-family:ff5;line-height:1.044434;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_0b83ea6fc7fd204a2b566377.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_345cbafea77371ff855d63bd.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_89484af84fc7e0ee608db41a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.090332;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_6ec991cdc411e42159612123.woff')format("woff");}.ff9{font-family:ff9;line-height:0.767578;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_c2b301fc91a19b855bace547.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7780e3100e277b2f7e46d74f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.899414;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_82fc621763fd5dcb41562bf4.woff')format("woff");}.ffc{font-family:ffc;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5f28ec0959249cdc9f3b7443.woff')format("woff");}.ffd{font-family:ffd;line-height:0.899414;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);}
.v3{vertical-align:-71.700000px;}
.v2{vertical-align:-65.220000px;}
.v1{vertical-align:-45.660000px;}
.v4{vertical-align:-19.560000px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-1.008000px;}
.ls48{letter-spacing:-0.720000px;}
.ls37{letter-spacing:-0.504000px;}
.ls71{letter-spacing:-0.432000px;}
.ls3c{letter-spacing:-0.306000px;}
.lse{letter-spacing:-0.288000px;}
.ls57{letter-spacing:-0.272400px;}
.ls50{letter-spacing:-0.249000px;}
.ls10{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.207600px;}
.ls75{letter-spacing:-0.144000px;}
.ls3a{letter-spacing:-0.090000px;}
.ls36{letter-spacing:-0.072000px;}
.ls6b{letter-spacing:-0.018000px;}
.lsb{letter-spacing:-0.004320px;}
.ls38{letter-spacing:-0.000720px;}
.lsc{letter-spacing:-0.000003px;}
.lsa{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.000001px;}
.ls29{letter-spacing:0.015840px;}
.ls7e{letter-spacing:0.048000px;}
.ls43{letter-spacing:0.049680px;}
.ls44{letter-spacing:0.055440px;}
.ls12{letter-spacing:0.063600px;}
.lsf{letter-spacing:0.072000px;}
.ls69{letter-spacing:0.106560px;}
.ls23{letter-spacing:0.108000px;}
.ls2c{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.150000px;}
.ls3d{letter-spacing:0.162000px;}
.ls42{letter-spacing:0.172080px;}
.ls35{letter-spacing:0.172800px;}
.ls28{letter-spacing:0.174240px;}
.ls2a{letter-spacing:0.180000px;}
.ls6c{letter-spacing:0.192000px;}
.ls1b{letter-spacing:0.216000px;}
.ls72{letter-spacing:0.252000px;}
.ls13{letter-spacing:0.259800px;}
.ls53{letter-spacing:0.264000px;}
.ls0{letter-spacing:0.288000px;}
.ls47{letter-spacing:0.334800px;}
.ls3b{letter-spacing:0.342000px;}
.ls9{letter-spacing:0.360000px;}
.ls79{letter-spacing:0.408000px;}
.lsd{letter-spacing:0.432000px;}
.ls63{letter-spacing:0.450720px;}
.ls18{letter-spacing:0.468000px;}
.ls49{letter-spacing:0.471000px;}
.ls46{letter-spacing:0.487440px;}
.ls39{letter-spacing:0.519600px;}
.ls2f{letter-spacing:0.648000px;}
.ls76{letter-spacing:0.720000px;}
.ls31{letter-spacing:0.735840px;}
.ls7f{letter-spacing:0.768000px;}
.ls14{letter-spacing:0.786000px;}
.ls83{letter-spacing:0.792000px;}
.ls5d{letter-spacing:0.828000px;}
.ls80{letter-spacing:0.864000px;}
.ls4b{letter-spacing:0.936000px;}
.ls65{letter-spacing:0.990000px;}
.ls66{letter-spacing:1.008000px;}
.ls41{letter-spacing:1.368000px;}
.ls5f{letter-spacing:1.903440px;}
.ls56{letter-spacing:1.927440px;}
.ls21{letter-spacing:2.088000px;}
.ls55{letter-spacing:2.310240px;}
.ls8{letter-spacing:2.334240px;}
.ls4e{letter-spacing:2.376000px;}
.ls60{letter-spacing:2.647440px;}
.ls6{letter-spacing:2.808000px;}
.ls5c{letter-spacing:2.928000px;}
.ls77{letter-spacing:3.096000px;}
.ls2{letter-spacing:3.528000px;}
.ls3f{letter-spacing:3.816000px;}
.ls4c{letter-spacing:4.063440px;}
.ls5{letter-spacing:4.248000px;}
.ls54{letter-spacing:4.536000px;}
.ls64{letter-spacing:4.807440px;}
.ls68{letter-spacing:4.968000px;}
.ls25{letter-spacing:5.256000px;}
.ls20{letter-spacing:5.688000px;}
.ls4d{letter-spacing:5.976000px;}
.ls3{letter-spacing:6.408000px;}
.ls78{letter-spacing:6.696000px;}
.ls32{letter-spacing:6.967440px;}
.ls22{letter-spacing:7.128000px;}
.ls5a{letter-spacing:7.416000px;}
.ls33{letter-spacing:7.687440px;}
.ls4{letter-spacing:7.848000px;}
.ls67{letter-spacing:8.136000px;}
.ls45{letter-spacing:8.407440px;}
.ls30{letter-spacing:8.568000px;}
.ls61{letter-spacing:9.127440px;}
.ls82{letter-spacing:9.264000px;}
.ls24{letter-spacing:9.288000px;}
.ls62{letter-spacing:9.847440px;}
.ls2e{letter-spacing:10.008000px;}
.ls26{letter-spacing:10.728000px;}
.ls58{letter-spacing:11.016000px;}
.ls1f{letter-spacing:11.448000px;}
.ls4f{letter-spacing:11.628000px;}
.ls7a{letter-spacing:12.168000px;}
.ls19{letter-spacing:12.727440px;}
.ls6d{letter-spacing:12.888000px;}
.ls17{letter-spacing:13.608000px;}
.ls59{letter-spacing:14.328000px;}
.ls1{letter-spacing:15.048000px;}
.ls2b{letter-spacing:15.768000px;}
.ls6e{letter-spacing:16.488000px;}
.ls6f{letter-spacing:17.184000px;}
.ls5b{letter-spacing:17.208000px;}
.ls81{letter-spacing:17.496000px;}
.ls34{letter-spacing:17.767440px;}
.ls5e{letter-spacing:17.928000px;}
.ls52{letter-spacing:18.216000px;}
.ls73{letter-spacing:18.624000px;}
.ls74{letter-spacing:18.648000px;}
.ls7b{letter-spacing:20.088000px;}
.ls1d{letter-spacing:21.528000px;}
.ls1e{letter-spacing:21.648000px;}
.ls2d{letter-spacing:21.816000px;}
.ls7d{letter-spacing:22.248000px;}
.ls15{letter-spacing:22.968000px;}
.ls51{letter-spacing:23.808000px;}
.ls40{letter-spacing:24.408000px;}
.ls27{letter-spacing:26.568000px;}
.ls70{letter-spacing:27.288000px;}
.ls16{letter-spacing:28.224000px;}
.ls3e{letter-spacing:28.728000px;}
.ls6a{letter-spacing:29.448000px;}
.ls4a{letter-spacing:30.888000px;}
.ls7c{letter-spacing:35.928000px;}
.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;}
}
.ws0{word-spacing:-23.671440px;}
.wsb{word-spacing:-20.592000px;}
.ws9{word-spacing:-20.448000px;}
.ws2e{word-spacing:-20.376000px;}
.ws2{word-spacing:-20.304000px;}
.wsa{word-spacing:-20.232001px;}
.ws1{word-spacing:-20.232000px;}
.ws1d{word-spacing:-20.231997px;}
.wsd{word-spacing:-20.160000px;}
.ws2f{word-spacing:-20.088000px;}
.ws3{word-spacing:-20.016000px;}
.ws20{word-spacing:-19.944000px;}
.ws2d{word-spacing:-19.728000px;}
.ws1c{word-spacing:-19.512000px;}
.ws21{word-spacing:-18.613440px;}
.ws1e{word-spacing:-18.072000px;}
.wsc{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.784000px;}
.ws1b{word-spacing:-17.712000px;}
.ws5{word-spacing:-17.152560px;}
.ws6{word-spacing:-17.052360px;}
.wse{word-spacing:-16.792560px;}
.ws1f{word-spacing:-16.543560px;}
.ws7{word-spacing:-14.760720px;}
.ws8{word-spacing:0.000000px;}
.ws17{word-spacing:26.826000px;}
.ws27{word-spacing:44.166000px;}
.ws14{word-spacing:67.782000px;}
.ws19{word-spacing:68.274000px;}
.ws16{word-spacing:68.322000px;}
.ws13{word-spacing:68.478000px;}
.ws12{word-spacing:69.126000px;}
.ws18{word-spacing:69.138000px;}
.ws15{word-spacing:69.678000px;}
.ws1a{word-spacing:69.870000px;}
.ws22{word-spacing:77.166000px;}
.ws23{word-spacing:77.838000px;}
.ws24{word-spacing:79.482000px;}
.ws2b{word-spacing:80.400000px;}
.ws28{word-spacing:80.478000px;}
.ws25{word-spacing:82.818000px;}
.ws2a{word-spacing:83.370000px;}
.ws29{word-spacing:83.994000px;}
.wsf{word-spacing:84.150000px;}
.ws11{word-spacing:84.210000px;}
.ws10{word-spacing:84.270000px;}
.ws26{word-spacing:86.982000px;}
.ws2c{word-spacing:88.950000px;}
._22{margin-left:-19.180800px;}
._21{margin-left:-18.165600px;}
._1a{margin-left:-5.688000px;}
._6{margin-left:-4.128000px;}
._7{margin-left:-3.108000px;}
._3{margin-left:-1.447920px;}
._0{width:1.135440px;}
._e{width:2.544000px;}
._b{width:4.296000px;}
._c{width:5.836560px;}
._f{width:7.190880px;}
._10{width:8.227920px;}
._11{width:9.280080px;}
._12{width:10.652400px;}
._16{width:11.964000px;}
._d{width:13.536000px;}
._a{width:14.976000px;}
._8{width:15.984000px;}
._9{width:17.383920px;}
._13{width:18.525600px;}
._24{width:19.626960px;}
._15{width:21.915840px;}
._14{width:23.472000px;}
._19{width:25.079040px;}
._18{width:26.520480px;}
._17{width:27.552000px;}
._1d{width:29.424000px;}
._1e{width:31.104000px;}
._1c{width:32.809200px;}
._1b{width:34.048560px;}
._23{width:35.376000px;}
._4{width:37.656000px;}
._5{width:38.764560px;}
._1f{width:42.192000px;}
._26{width:84.240000px;}
._25{width:85.248000px;}
._27{width:86.676000px;}
._28{width:130.440000px;}
._20{width:264.630000px;}
._1{width:346.026000px;}
._2{width:691.068720px;}
._29{width:844.068000px;}
.fc7{color:rgb(38,38,35);}
.fc6{color:rgb(0,112,192);}
.fc4{color:transparent;}
.fc1{color:rgb(0,32,96);}
.fc5{color:rgb(38,38,38);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs9{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:74.880000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.ycf{bottom:17.745000px;}
.y1af{bottom:27.360000px;}
.y192{bottom:47.520000px;}
.yce{bottom:47.625000px;}
.y5{bottom:58.536000px;}
.y18b{bottom:65.085000px;}
.yc7{bottom:65.190000px;}
.y35{bottom:78.156000px;}
.y4{bottom:78.696000px;}
.yc6{bottom:85.965000px;}
.y34{bottom:94.896000px;}
.y3{bottom:98.316000px;}
.yc4{bottom:99.000000px;}
.y18c{bottom:104.835000px;}
.yc8{bottom:108.030000px;}
.y33{bottom:114.336000px;}
.y2{bottom:115.056000px;}
.y173{bottom:130.716000px;}
.y59{bottom:131.076000px;}
.y8f{bottom:131.256000px;}
.y1{bottom:134.496000px;}
.y8e{bottom:136.476000px;}
.y159{bottom:137.016000px;}
.y79{bottom:139.356000px;}
.yc5{bottom:139.710000px;}
.y18d{bottom:144.540000px;}
.y1c3{bottom:147.276000px;}
.y58{bottom:147.996000px;}
.y158{bottom:148.176000px;}
.y17b{bottom:149.796000px;}
.y8d{bottom:149.976000px;}
.yc9{bottom:150.915000px;}
.y2e{bottom:151.230000px;}
.y1a5{bottom:151.770000px;}
.y13d{bottom:153.210000px;}
.y57{bottom:153.930000px;}
.y189{bottom:156.990000px;}
.y172{bottom:161.670000px;}
.yc0{bottom:164.730000px;}
.y157{bottom:164.910000px;}
.y56{bottom:165.090000px;}
.y13c{bottom:166.710000px;}
.y2d{bottom:167.970000px;}
.y1b7{bottom:168.150000px;}
.y78{bottom:169.590000px;}
.yf8{bottom:170.670000px;}
.y1c2{bottom:177.330000px;}
.y1eb{bottom:178.590000px;}
.yc3{bottom:178.815000px;}
.y171{bottom:179.850000px;}
.y17a{bottom:180.030000px;}
.yf7{bottom:181.470000px;}
.ybf{bottom:181.650000px;}
.y1a4{bottom:182.010000px;}
.y156{bottom:182.190000px;}
.y18e{bottom:184.290000px;}
.y2c{bottom:185.070000px;}
.ybe{bottom:186.870000px;}
.y188{bottom:187.590000px;}
.y20c{bottom:188.310000px;}
.yca{bottom:193.755000px;}
.y1db{bottom:196.410000px;}
.y170{bottom:198.030000px;}
.yf6{bottom:198.210000px;}
.y1b6{bottom:198.570000px;}
.y77{bottom:199.830000px;}
.ybd{bottom:200.370000px;}
.y2b{bottom:201.990000px;}
.yf5{bottom:204.150000px;}
.y13b{bottom:206.130000px;}
.y1c1{bottom:207.750000px;}
.y1ea{bottom:208.650000px;}
.y179{bottom:210.270000px;}
.y1a3{bottom:212.250000px;}
.y55{bottom:212.430000px;}
.yf4{bottom:215.130000px;}
.y128{bottom:215.490000px;}
.y16f{bottom:216.210000px;}
.y187{bottom:217.830000px;}
.y2a{bottom:218.730000px;}
.y18f{bottom:224.025000px;}
.y29{bottom:224.670000px;}
.y1da{bottom:226.650000px;}
.y1b5{bottom:228.990000px;}
.y76{bottom:230.070000px;}
.yf3{bottom:232.050000px;}
.y16e{bottom:234.570000px;}
.y28{bottom:235.650000px;}
.y139{bottom:236.190000px;}
.ycb{bottom:236.595000px;}
.yf2{bottom:237.990000px;}
.y110{bottom:238.170000px;}
.y1c0{bottom:238.350000px;}
.y155{bottom:238.710000px;}
.y1e9{bottom:239.070000px;}
.y178{bottom:240.330000px;}
.ybc{bottom:240.870000px;}
.y8c{bottom:241.230000px;}
.y1a2{bottom:242.490000px;}
.y54{bottom:242.670000px;}
.y13a{bottom:243.750000px;}
.y186{bottom:248.070000px;}
.yf1{bottom:248.970000px;}
.y20b{bottom:249.330000px;}
.y27{bottom:252.390000px;}
.y16d{bottom:252.930000px;}
.y1d9{bottom:256.710000px;}
.y1b4{bottom:259.410000px;}
.y75{bottom:260.310000px;}
.y190{bottom:263.775000px;}
.yf0{bottom:265.710000px;}
.y138{bottom:266.430000px;}
.y10f{bottom:268.410000px;}
.y153{bottom:269.130000px;}
.y26{bottom:269.490000px;}
.y1e8{bottom:269.670000px;}
.ya8{bottom:270.570000px;}
.y16c{bottom:271.110000px;}
.ybb{bottom:271.290000px;}
.yef{bottom:271.650000px;}
.y8b{bottom:271.830000px;}
.y1a1{bottom:272.775000px;}
.y53{bottom:272.955000px;}
.y127{bottom:274.575000px;}
.y25{bottom:274.755000px;}
.y154{bottom:276.735000px;}
.y185{bottom:278.355000px;}
.ycc{bottom:279.435000px;}
.y20a{bottom:279.615000px;}
.y193{bottom:280.155000px;}
.yee{bottom:283.035000px;}
.y1d8{bottom:287.175000px;}
.y24{bottom:288.255000px;}
.y16b{bottom:289.515000px;}
.y1b3{bottom:290.055000px;}
.y74{bottom:290.415000px;}
.y16a{bottom:295.455000px;}
.y137{bottom:296.535000px;}
.y10e{bottom:298.515000px;}
.y1bf{bottom:298.875000px;}
.y152{bottom:299.775000px;}
.y1e7{bottom:300.135000px;}
.ya7{bottom:300.855000px;}
.yba{bottom:301.755000px;}
.y8a{bottom:301.935000px;}
.y1a0{bottom:302.835000px;}
.y52{bottom:303.195000px;}
.y191{bottom:303.480000px;}
.y126{bottom:305.175000px;}
.yc2{bottom:305.925000px;}
.y169{bottom:306.975000px;}
.y184{bottom:308.595000px;}
.y209{bottom:309.855000px;}
.y1d7{bottom:317.595000px;}
.y1b2{bottom:320.115000px;}
.y73{bottom:320.655000px;}
.ycd{bottom:322.305000px;}
.yed{bottom:327.855000px;}
.y10d{bottom:328.935000px;}
.y1be{bottom:329.295000px;}
.y151{bottom:330.015000px;}
.y136{bottom:330.375000px;}
.ya6{bottom:331.095000px;}
.yb9{bottom:332.175000px;}
.y89{bottom:332.535000px;}
.y19f{bottom:333.075000px;}
.y51{bottom:333.435000px;}
.y125{bottom:335.595000px;}
.y183{bottom:338.655000px;}
.y208{bottom:340.095000px;}
.y22{bottom:346.755000px;}
.y1d6{bottom:348.195000px;}
.y1b1{bottom:350.535000px;}
.y72{bottom:350.895000px;}
.y23{bottom:354.315000px;}
.yec{bottom:358.095000px;}
.y10c{bottom:359.355000px;}
.y1bd{bottom:359.715000px;}
.y150{bottom:360.075000px;}
.y135{bottom:360.435000px;}
.y1e6{bottom:360.615000px;}
.ya5{bottom:361.335000px;}
.yb8{bottom:362.595000px;}
.y88{bottom:362.775000px;}
.y19e{bottom:363.315000px;}
.y50{bottom:363.675000px;}
.y124{bottom:366.015000px;}
.y182{bottom:368.895000px;}
.y207{bottom:370.335000px;}
.y20{bottom:376.995000px;}
.y1d5{bottom:378.435000px;}
.y71{bottom:381.135000px;}
.y21{bottom:384.555000px;}
.yeb{bottom:388.335000px;}
.y10b{bottom:389.775000px;}
.y168{bottom:390.315000px;}
.y14f{bottom:390.495000px;}
.y1e5{bottom:390.675000px;}
.y134{bottom:390.855000px;}
.ya4{bottom:391.575000px;}
.y87{bottom:392.835000px;}
.y19d{bottom:393.555000px;}
.y4f{bottom:393.915000px;}
.y123{bottom:396.435000px;}
.y181{bottom:397.695000px;}
.y206{bottom:400.395000px;}
.yb7{bottom:405.255000px;}
.y1f{bottom:407.235000px;}
.y1d4{bottom:408.495000px;}
.y70{bottom:411.195000px;}
.yea{bottom:418.395000px;}
.y109{bottom:420.195000px;}
.y167{bottom:420.555000px;}
.y1bc{bottom:420.735000px;}
.y14e{bottom:420.915000px;}
.y1e4{bottom:421.275000px;}
.y133{bottom:421.455000px;}
.ya3{bottom:421.815000px;}
.y86{bottom:423.435000px;}
.y19c{bottom:423.795000px;}
.y4e{bottom:423.975000px;}
.y180{bottom:425.415000px;}
.y121{bottom:426.855000px;}
.y10a{bottom:427.755000px;}
.y205{bottom:430.635000px;}
.y122{bottom:434.415000px;}
.yb6{bottom:435.495000px;}
.y1e{bottom:437.295000px;}
.y1d3{bottom:438.915000px;}
.y1b0{bottom:441.615000px;}
.y6f{bottom:441.795000px;}
.ye8{bottom:448.815000px;}
.y108{bottom:450.615000px;}
.y166{bottom:450.975000px;}
.y1e3{bottom:451.335000px;}
.y132{bottom:451.515000px;}
.y1ef{bottom:451.875000px;}
.ya2{bottom:452.055000px;}
.y17f{bottom:453.135000px;}
.y85{bottom:453.495000px;}
.y19b{bottom:454.035000px;}
.y4d{bottom:454.215000px;}
.ye9{bottom:456.375000px;}
.y1ae{bottom:456.915000px;}
.y11f{bottom:457.275000px;}
.y204{bottom:460.875000px;}
.y120{bottom:464.835000px;}
.yb5{bottom:465.735000px;}
.y1d{bottom:467.715000px;}
.y1d2{bottom:469.515000px;}
.y6e{bottom:472.035000px;}
.y17e{bottom:476.175000px;}
.y18a{bottom:476.460000px;}
.ye6{bottom:479.235000px;}
.y107{bottom:481.215000px;}
.y165{bottom:481.395000px;}
.y14d{bottom:481.755000px;}
.y1e2{bottom:481.935000px;}
.ya1{bottom:482.115000px;}
.y84{bottom:483.735000px;}
.y19a{bottom:484.275000px;}
.y4c{bottom:484.455000px;}
.ye7{bottom:486.795000px;}
.y11e{bottom:487.695000px;}
.y203{bottom:491.115000px;}
.yb4{bottom:495.795000px;}
.y1c{bottom:498.315000px;}
.y1d1{bottom:499.575000px;}
.y6d{bottom:502.275000px;}
.ye5{bottom:509.835000px;}
.y106{bottom:511.635000px;}
.y164{bottom:511.815000px;}
.y14c{bottom:511.995000px;}
.y1e1{bottom:512.175000px;}
.ya0{bottom:512.355000px;}
.y131{bottom:512.535000px;}
.y83{bottom:514.155000px;}
.y199{bottom:514.335000px;}
.y1ad{bottom:514.515000px;}
.y4b{bottom:514.695000px;}
.y11d{bottom:518.295000px;}
.y202{bottom:521.355000px;}
.yb3{bottom:526.035000px;}
.y1b{bottom:528.555000px;}
.y1d0{bottom:529.995000px;}
.y6c{bottom:532.515000px;}
.ye4{bottom:540.255000px;}
.y105{bottom:541.875000px;}
.y14b{bottom:542.235000px;}
.y1e0{bottom:542.415000px;}
.y9f{bottom:542.595000px;}
.y130{bottom:542.775000px;}
.y82{bottom:544.395000px;}
.y198{bottom:544.575000px;}
.y1ac{bottom:544.755000px;}
.y4a{bottom:544.935000px;}
.y11c{bottom:548.715000px;}
.y201{bottom:551.595000px;}
.yb2{bottom:556.305000px;}
.y1a{bottom:558.825000px;}
.y1cf{bottom:560.625000px;}
.y6b{bottom:562.785000px;}
.ye3{bottom:570.705000px;}
.y1bb{bottom:571.965000px;}
.y104{bottom:572.325000px;}
.y1df{bottom:572.505000px;}
.y163{bottom:572.685000px;}
.y9e{bottom:572.865000px;}
.y12f{bottom:573.045000px;}
.y80{bottom:574.485000px;}
.y197{bottom:574.845000px;}
.y49{bottom:575.205000px;}
.y11b{bottom:579.345000px;}
.y200{bottom:581.865000px;}
.y81{bottom:582.045000px;}
.yb1{bottom:586.545000px;}
.y19{bottom:588.885000px;}
.y1ce{bottom:590.685000px;}
.y6a{bottom:592.845000px;}
.ye2{bottom:601.125000px;}
.y14a{bottom:602.565000px;}
.y103{bottom:602.745000px;}
.y1de{bottom:602.925000px;}
.y9d{bottom:603.105000px;}
.y12e{bottom:603.285000px;}
.y213{bottom:604.905000px;}
.y7f{bottom:605.085000px;}
.y48{bottom:605.445000px;}
.y1ff{bottom:612.105000px;}
.yb0{bottom:616.785000px;}
.y18{bottom:619.125000px;}
.y1cd{bottom:621.285000px;}
.y11a{bottom:621.465000px;}
.y69{bottom:623.085000px;}
.ye1{bottom:631.545000px;}
.y149{bottom:632.805000px;}
.y1ba{bottom:632.985000px;}
.y102{bottom:633.165000px;}
.y9c{bottom:633.345000px;}
.y162{bottom:633.525000px;}
.y212{bottom:635.145000px;}
.y7e{bottom:635.325000px;}
.y47{bottom:635.505000px;}
.y1fe{bottom:642.165000px;}
.yaf{bottom:646.845000px;}
.y17{bottom:649.365000px;}
.y1cc{bottom:651.345000px;}
.y68{bottom:653.325000px;}
.ye0{bottom:661.965000px;}
.y148{bottom:663.045000px;}
.y9b{bottom:663.405000px;}
.y101{bottom:663.585000px;}
.y119{bottom:663.765000px;}
.y12d{bottom:663.945000px;}
.y211{bottom:665.385000px;}
.y7d{bottom:665.565000px;}
.y46{bottom:665.745000px;}
.y1fd{bottom:672.405000px;}
.yae{bottom:677.445000px;}
.y16{bottom:679.605000px;}
.y1cb{bottom:681.945000px;}
.y67{bottom:683.565000px;}
.ydf{bottom:692.385000px;}
.y147{bottom:693.285000px;}
.y1b9{bottom:693.645000px;}
.y118{bottom:693.825000px;}
.y9a{bottom:694.005000px;}
.y100{bottom:694.185000px;}
.y1ee{bottom:694.365000px;}
.y210{bottom:695.625000px;}
.y7c{bottom:695.805000px;}
.y45{bottom:695.985000px;}
.y1fc{bottom:702.645000px;}
.yad{bottom:707.685000px;}
.y15{bottom:709.845000px;}
.y1ca{bottom:712.005000px;}
.y66{bottom:713.805000px;}
.yde{bottom:722.985000px;}
.y146{bottom:723.525000px;}
.y177{bottom:723.885000px;}
.y99{bottom:724.065000px;}
.yff{bottom:724.245000px;}
.y12c{bottom:724.425000px;}
.y20f{bottom:725.865000px;}
.y7b{bottom:726.045000px;}
.y44{bottom:726.225000px;}
.y1fb{bottom:732.885000px;}
.yac{bottom:737.925000px;}
.y14{bottom:740.085000px;}
.y1c9{bottom:742.425000px;}
.y65{bottom:744.045000px;}
.ydd{bottom:753.405000px;}
.y145{bottom:753.585000px;}
.y176{bottom:754.125000px;}
.y98{bottom:754.485000px;}
.yfe{bottom:754.665000px;}
.y12b{bottom:755.025000px;}
.y20e{bottom:755.925000px;}
.y7a{bottom:756.105000px;}
.y1ab{bottom:756.285000px;}
.y43{bottom:756.465000px;}
.y1fa{bottom:763.125000px;}
.yaa{bottom:766.725000px;}
.y13{bottom:770.325000px;}
.y1c8{bottom:773.025000px;}
.yab{bottom:773.565000px;}
.y64{bottom:774.285000px;}
.ydc{bottom:783.825000px;}
.y144{bottom:784.005000px;}
.y175{bottom:784.365000px;}
.y161{bottom:784.905000px;}
.y97{bottom:785.085000px;}
.yfd{bottom:785.265000px;}
.y1dd{bottom:785.445000px;}
.y20d{bottom:786.165000px;}
.y196{bottom:786.345000px;}
.y1aa{bottom:786.525000px;}
.y42{bottom:786.705000px;}
.ya9{bottom:789.765000px;}
.yc1{bottom:791.460000px;}
.y1f9{bottom:793.365000px;}
.y12{bottom:800.565000px;}
.y1c7{bottom:803.085000px;}
.ydb{bottom:814.245000px;}
.y143{bottom:814.425000px;}
.y174{bottom:814.605000px;}
.y96{bottom:815.145000px;}
.y1ed{bottom:815.325000px;}
.yfc{bottom:815.505000px;}
.y117{bottom:815.685000px;}
.y1dc{bottom:816.045000px;}
.y63{bottom:816.405000px;}
.y195{bottom:816.585000px;}
.y41{bottom:816.945000px;}
.y1f8{bottom:823.605000px;}
.y11{bottom:830.625000px;}
.y1c6{bottom:833.685000px;}
.yda{bottom:844.710000px;}
.y142{bottom:844.890000px;}
.y160{bottom:845.250000px;}
.y95{bottom:845.610000px;}
.y17d{bottom:845.790000px;}
.y116{bottom:846.150000px;}
.y62{bottom:846.690000px;}
.y1a9{bottom:846.870000px;}
.y40{bottom:847.230000px;}
.y1f7{bottom:853.890000px;}
.y10{bottom:860.730000px;}
.yd8{bottom:875.130000px;}
.y141{bottom:875.490000px;}
.y15f{bottom:875.670000px;}
.y1b8{bottom:875.850000px;}
.y94{bottom:876.030000px;}
.y115{bottom:876.390000px;}
.y61{bottom:876.930000px;}
.y194{bottom:877.110000px;}
.y3f{bottom:877.290000px;}
.yd9{bottom:882.690000px;}
.y1f6{bottom:883.950000px;}
.yf{bottom:891.150000px;}
.yd7{bottom:905.550000px;}
.y140{bottom:905.910000px;}
.y15d{bottom:906.090000px;}
.y17c{bottom:906.270000px;}
.y12a{bottom:906.450000px;}
.y93{bottom:906.630000px;}
.y1ec{bottom:906.810000px;}
.y60{bottom:907.170000px;}
.y1a8{bottom:907.350000px;}
.y3e{bottom:907.530000px;}
.y15e{bottom:913.650000px;}
.y1f5{bottom:914.190000px;}
.ye{bottom:933.450000px;}
.yd6{bottom:936.150000px;}
.y13f{bottom:936.330000px;}
.y15c{bottom:936.510000px;}
.y114{bottom:936.690000px;}
.yfb{bottom:936.870000px;}
.y92{bottom:937.050000px;}
.y5f{bottom:937.410000px;}
.y1a7{bottom:937.590000px;}
.y3c{bottom:937.770000px;}
.y1f4{bottom:944.430000px;}
.y3d{bottom:945.330000px;}
.yd{bottom:963.690000px;}
.yd5{bottom:966.570000px;}
.y13e{bottom:966.750000px;}
.y15b{bottom:966.930000px;}
.yfa{bottom:967.110000px;}
.y91{bottom:967.290000px;}
.y5e{bottom:967.470000px;}
.y1a6{bottom:967.650000px;}
.y3b{bottom:968.010000px;}
.y1f3{bottom:974.670000px;}
.y113{bottom:974.850000px;}
.yc{bottom:993.930000px;}
.yd4{bottom:996.990000px;}
.y1c5{bottom:997.170000px;}
.yf9{bottom:997.350000px;}
.y90{bottom:997.710000px;}
.y5d{bottom:998.070000px;}
.y3a{bottom:998.250000px;}
.y1f2{bottom:1004.910000px;}
.yb{bottom:1024.170000px;}
.yd3{bottom:1027.410000px;}
.y1c4{bottom:1027.590000px;}
.y112{bottom:1027.950000px;}
.y129{bottom:1028.130000px;}
.y5c{bottom:1028.310000px;}
.y39{bottom:1028.490000px;}
.y1f1{bottom:1035.150000px;}
.ya{bottom:1056.570000px;}
.yd2{bottom:1057.830000px;}
.y15a{bottom:1058.010000px;}
.y111{bottom:1058.190000px;}
.y5b{bottom:1058.370000px;}
.y38{bottom:1058.730000px;}
.y1f0{bottom:1076.910000px;}
.yd1{bottom:1088.250000px;}
.y5a{bottom:1088.610000px;}
.y37{bottom:1088.970000px;}
.y9{bottom:1091.850000px;}
.y8{bottom:1115.790000px;}
.yd0{bottom:1118.670000px;}
.y36{bottom:1119.030000px;}
.y32{bottom:1138.680000px;}
.y7{bottom:1152.000000px;}
.y31{bottom:1161.000000px;}
.y30{bottom:1177.740000px;}
.y6{bottom:1184.040000px;}
.y2f{bottom:1195.020000px;}
.hd{height:30.568359px;}
.h11{height:33.013828px;}
.h9{height:35.459297px;}
.hb{height:38.671172px;}
.h16{height:42.285000px;}
.h14{height:47.988281px;}
.h2{height:50.743477px;}
.h13{height:53.709961px;}
.he{height:56.245781px;}
.h4{height:58.218750px;}
.hc{height:59.439023px;}
.h5{height:61.136719px;}
.h10{height:61.423863px;}
.h3{height:65.884219px;}
.h7{height:71.529961px;}
.hf{height:74.004654px;}
.h6{height:76.420898px;}
.ha{height:76.964840px;}
.h15{height:323.820000px;}
.h12{height:342.540000px;}
.h8{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:87.516000px;}
.w4{width:540.000000px;}
.w3{width:657.360000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:9.900000px;}
.x1c{left:16.740000px;}
.x35{left:73.725000px;}
.x1{left:84.960000px;}
.x17{left:102.855000px;}
.x10{left:111.996000px;}
.x37{left:117.036000px;}
.x3a{left:125.496000px;}
.x9{left:127.453500px;}
.xa{left:132.336000px;}
.x3{left:138.096000px;}
.x13{left:142.956000px;}
.x28{left:147.096000px;}
.x18{left:153.690000px;}
.x21{left:160.927500px;}
.x22{left:166.170000px;}
.x14{left:169.590000px;}
.x1f{left:170.745000px;}
.x6{left:177.847500px;}
.x36{left:181.470000px;}
.x7{left:183.090000px;}
.x3b{left:201.990000px;}
.x19{left:207.930000px;}
.x2d{left:262.110000px;}
.x25{left:264.787500px;}
.xb{left:270.390000px;}
.x29{left:275.070000px;}
.x2{left:276.330000px;}
.x8{left:301.035000px;}
.x1e{left:345.060000px;}
.x1a{left:407.775000px;}
.x11{left:409.192500px;}
.x12{left:414.435000px;}
.x30{left:423.592500px;}
.x31{left:434.235000px;}
.x2a{left:441.772500px;}
.x20{left:445.552500px;}
.x4{left:451.672500px;}
.x5{left:456.915000px;}
.x1b{left:462.030000px;}
.x3e{left:513.105000px;}
.x23{left:554.122500px;}
.x24{left:559.365000px;}
.xd{left:561.345000px;}
.x26{left:572.842500px;}
.x27{left:583.125000px;}
.x3d{left:603.285000px;}
.x2e{left:619.642500px;}
.x32{left:626.122500px;}
.x2f{left:630.105000px;}
.x3f{left:632.625000px;}
.x33{left:636.765000px;}
.x39{left:645.585000px;}
.x3c{left:648.645000px;}
.x38{left:656.565000px;}
.x34{left:667.590000px;}
.xe{left:696.187500px;}
.xf{left:701.610000px;}
.x2b{left:725.347500px;}
.x2c{left:735.810000px;}
.x15{left:739.567500px;}
.x16{left:744.450000px;}
.xc{left:786.750000px;}
@media print{
.v3{vertical-align:-63.733333pt;}
.v2{vertical-align:-57.973333pt;}
.v1{vertical-align:-40.586667pt;}
.v4{vertical-align:-17.386667pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.896000pt;}
.ls48{letter-spacing:-0.640000pt;}
.ls37{letter-spacing:-0.448000pt;}
.ls71{letter-spacing:-0.384000pt;}
.ls3c{letter-spacing:-0.272000pt;}
.lse{letter-spacing:-0.256000pt;}
.ls57{letter-spacing:-0.242133pt;}
.ls50{letter-spacing:-0.221333pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.184533pt;}
.ls75{letter-spacing:-0.128000pt;}
.ls3a{letter-spacing:-0.080000pt;}
.ls36{letter-spacing:-0.064000pt;}
.ls6b{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:-0.003840pt;}
.ls38{letter-spacing:-0.000640pt;}
.lsc{letter-spacing:-0.000003pt;}
.lsa{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.000001pt;}
.ls29{letter-spacing:0.014080pt;}
.ls7e{letter-spacing:0.042667pt;}
.ls43{letter-spacing:0.044160pt;}
.ls44{letter-spacing:0.049280pt;}
.ls12{letter-spacing:0.056533pt;}
.lsf{letter-spacing:0.064000pt;}
.ls69{letter-spacing:0.094720pt;}
.ls23{letter-spacing:0.096000pt;}
.ls2c{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.133333pt;}
.ls3d{letter-spacing:0.144000pt;}
.ls42{letter-spacing:0.152960pt;}
.ls35{letter-spacing:0.153600pt;}
.ls28{letter-spacing:0.154880pt;}
.ls2a{letter-spacing:0.160000pt;}
.ls6c{letter-spacing:0.170667pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls72{letter-spacing:0.224000pt;}
.ls13{letter-spacing:0.230933pt;}
.ls53{letter-spacing:0.234667pt;}
.ls0{letter-spacing:0.256000pt;}
.ls47{letter-spacing:0.297600pt;}
.ls3b{letter-spacing:0.304000pt;}
.ls9{letter-spacing:0.320000pt;}
.ls79{letter-spacing:0.362667pt;}
.lsd{letter-spacing:0.384000pt;}
.ls63{letter-spacing:0.400640pt;}
.ls18{letter-spacing:0.416000pt;}
.ls49{letter-spacing:0.418667pt;}
.ls46{letter-spacing:0.433280pt;}
.ls39{letter-spacing:0.461867pt;}
.ls2f{letter-spacing:0.576000pt;}
.ls76{letter-spacing:0.640000pt;}
.ls31{letter-spacing:0.654080pt;}
.ls7f{letter-spacing:0.682667pt;}
.ls14{letter-spacing:0.698667pt;}
.ls83{letter-spacing:0.704000pt;}
.ls5d{letter-spacing:0.736000pt;}
.ls80{letter-spacing:0.768000pt;}
.ls4b{letter-spacing:0.832000pt;}
.ls65{letter-spacing:0.880000pt;}
.ls66{letter-spacing:0.896000pt;}
.ls41{letter-spacing:1.216000pt;}
.ls5f{letter-spacing:1.691947pt;}
.ls56{letter-spacing:1.713280pt;}
.ls21{letter-spacing:1.856000pt;}
.ls55{letter-spacing:2.053547pt;}
.ls8{letter-spacing:2.074880pt;}
.ls4e{letter-spacing:2.112000pt;}
.ls60{letter-spacing:2.353280pt;}
.ls6{letter-spacing:2.496000pt;}
.ls5c{letter-spacing:2.602667pt;}
.ls77{letter-spacing:2.752000pt;}
.ls2{letter-spacing:3.136000pt;}
.ls3f{letter-spacing:3.392000pt;}
.ls4c{letter-spacing:3.611947pt;}
.ls5{letter-spacing:3.776000pt;}
.ls54{letter-spacing:4.032000pt;}
.ls64{letter-spacing:4.273280pt;}
.ls68{letter-spacing:4.416000pt;}
.ls25{letter-spacing:4.672000pt;}
.ls20{letter-spacing:5.056000pt;}
.ls4d{letter-spacing:5.312000pt;}
.ls3{letter-spacing:5.696000pt;}
.ls78{letter-spacing:5.952000pt;}
.ls32{letter-spacing:6.193280pt;}
.ls22{letter-spacing:6.336000pt;}
.ls5a{letter-spacing:6.592000pt;}
.ls33{letter-spacing:6.833280pt;}
.ls4{letter-spacing:6.976000pt;}
.ls67{letter-spacing:7.232000pt;}
.ls45{letter-spacing:7.473280pt;}
.ls30{letter-spacing:7.616000pt;}
.ls61{letter-spacing:8.113280pt;}
.ls82{letter-spacing:8.234667pt;}
.ls24{letter-spacing:8.256000pt;}
.ls62{letter-spacing:8.753280pt;}
.ls2e{letter-spacing:8.896000pt;}
.ls26{letter-spacing:9.536000pt;}
.ls58{letter-spacing:9.792000pt;}
.ls1f{letter-spacing:10.176000pt;}
.ls4f{letter-spacing:10.336000pt;}
.ls7a{letter-spacing:10.816000pt;}
.ls19{letter-spacing:11.313280pt;}
.ls6d{letter-spacing:11.456000pt;}
.ls17{letter-spacing:12.096000pt;}
.ls59{letter-spacing:12.736000pt;}
.ls1{letter-spacing:13.376000pt;}
.ls2b{letter-spacing:14.016000pt;}
.ls6e{letter-spacing:14.656000pt;}
.ls6f{letter-spacing:15.274667pt;}
.ls5b{letter-spacing:15.296000pt;}
.ls81{letter-spacing:15.552000pt;}
.ls34{letter-spacing:15.793280pt;}
.ls5e{letter-spacing:15.936000pt;}
.ls52{letter-spacing:16.192000pt;}
.ls73{letter-spacing:16.554667pt;}
.ls74{letter-spacing:16.576000pt;}
.ls7b{letter-spacing:17.856000pt;}
.ls1d{letter-spacing:19.136000pt;}
.ls1e{letter-spacing:19.242667pt;}
.ls2d{letter-spacing:19.392000pt;}
.ls7d{letter-spacing:19.776000pt;}
.ls15{letter-spacing:20.416000pt;}
.ls51{letter-spacing:21.162667pt;}
.ls40{letter-spacing:21.696000pt;}
.ls27{letter-spacing:23.616000pt;}
.ls70{letter-spacing:24.256000pt;}
.ls16{letter-spacing:25.088000pt;}
.ls3e{letter-spacing:25.536000pt;}
.ls6a{letter-spacing:26.176000pt;}
.ls4a{letter-spacing:27.456000pt;}
.ls7c{letter-spacing:31.936000pt;}
.ws0{word-spacing:-21.041280pt;}
.wsb{word-spacing:-18.304000pt;}
.ws9{word-spacing:-18.176000pt;}
.ws2e{word-spacing:-18.112000pt;}
.ws2{word-spacing:-18.048000pt;}
.wsa{word-spacing:-17.984001pt;}
.ws1{word-spacing:-17.984000pt;}
.ws1d{word-spacing:-17.983997pt;}
.wsd{word-spacing:-17.920000pt;}
.ws2f{word-spacing:-17.856000pt;}
.ws3{word-spacing:-17.792000pt;}
.ws20{word-spacing:-17.728000pt;}
.ws2d{word-spacing:-17.536000pt;}
.ws1c{word-spacing:-17.344000pt;}
.ws21{word-spacing:-16.545280pt;}
.ws1e{word-spacing:-16.064000pt;}
.wsc{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws1b{word-spacing:-15.744000pt;}
.ws5{word-spacing:-15.246720pt;}
.ws6{word-spacing:-15.157653pt;}
.wse{word-spacing:-14.926720pt;}
.ws1f{word-spacing:-14.705387pt;}
.ws7{word-spacing:-13.120640pt;}
.ws8{word-spacing:0.000000pt;}
.ws17{word-spacing:23.845333pt;}
.ws27{word-spacing:39.258667pt;}
.ws14{word-spacing:60.250667pt;}
.ws19{word-spacing:60.688000pt;}
.ws16{word-spacing:60.730667pt;}
.ws13{word-spacing:60.869333pt;}
.ws12{word-spacing:61.445333pt;}
.ws18{word-spacing:61.456000pt;}
.ws15{word-spacing:61.936000pt;}
.ws1a{word-spacing:62.106667pt;}
.ws22{word-spacing:68.592000pt;}
.ws23{word-spacing:69.189333pt;}
.ws24{word-spacing:70.650667pt;}
.ws2b{word-spacing:71.466667pt;}
.ws28{word-spacing:71.536000pt;}
.ws25{word-spacing:73.616000pt;}
.ws2a{word-spacing:74.106667pt;}
.ws29{word-spacing:74.661333pt;}
.wsf{word-spacing:74.800000pt;}
.ws11{word-spacing:74.853333pt;}
.ws10{word-spacing:74.906667pt;}
.ws26{word-spacing:77.317333pt;}
.ws2c{word-spacing:79.066667pt;}
._22{margin-left:-17.049600pt;}
._21{margin-left:-16.147200pt;}
._1a{margin-left:-5.056000pt;}
._6{margin-left:-3.669333pt;}
._7{margin-left:-2.762667pt;}
._3{margin-left:-1.287040pt;}
._0{width:1.009280pt;}
._e{width:2.261333pt;}
._b{width:3.818667pt;}
._c{width:5.188053pt;}
._f{width:6.391893pt;}
._10{width:7.313707pt;}
._11{width:8.248960pt;}
._12{width:9.468800pt;}
._16{width:10.634667pt;}
._d{width:12.032000pt;}
._a{width:13.312000pt;}
._8{width:14.208000pt;}
._9{width:15.452373pt;}
._13{width:16.467200pt;}
._24{width:17.446187pt;}
._15{width:19.480747pt;}
._14{width:20.864000pt;}
._19{width:22.292480pt;}
._18{width:23.573760pt;}
._17{width:24.490667pt;}
._1d{width:26.154667pt;}
._1e{width:27.648000pt;}
._1c{width:29.163733pt;}
._1b{width:30.265387pt;}
._23{width:31.445333pt;}
._4{width:33.472000pt;}
._5{width:34.457387pt;}
._1f{width:37.504000pt;}
._26{width:74.880000pt;}
._25{width:75.776000pt;}
._27{width:77.045333pt;}
._28{width:115.946667pt;}
._20{width:235.226667pt;}
._1{width:307.578667pt;}
._2{width:614.283307pt;}
._29{width:750.282667pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs9{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:66.560000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.ycf{bottom:15.773333pt;}
.y1af{bottom:24.320000pt;}
.y192{bottom:42.240000pt;}
.yce{bottom:42.333333pt;}
.y5{bottom:52.032000pt;}
.y18b{bottom:57.853333pt;}
.yc7{bottom:57.946667pt;}
.y35{bottom:69.472000pt;}
.y4{bottom:69.952000pt;}
.yc6{bottom:76.413333pt;}
.y34{bottom:84.352000pt;}
.y3{bottom:87.392000pt;}
.yc4{bottom:88.000000pt;}
.y18c{bottom:93.186667pt;}
.yc8{bottom:96.026667pt;}
.y33{bottom:101.632000pt;}
.y2{bottom:102.272000pt;}
.y173{bottom:116.192000pt;}
.y59{bottom:116.512000pt;}
.y8f{bottom:116.672000pt;}
.y1{bottom:119.552000pt;}
.y8e{bottom:121.312000pt;}
.y159{bottom:121.792000pt;}
.y79{bottom:123.872000pt;}
.yc5{bottom:124.186667pt;}
.y18d{bottom:128.480000pt;}
.y1c3{bottom:130.912000pt;}
.y58{bottom:131.552000pt;}
.y158{bottom:131.712000pt;}
.y17b{bottom:133.152000pt;}
.y8d{bottom:133.312000pt;}
.yc9{bottom:134.146667pt;}
.y2e{bottom:134.426667pt;}
.y1a5{bottom:134.906667pt;}
.y13d{bottom:136.186667pt;}
.y57{bottom:136.826667pt;}
.y189{bottom:139.546667pt;}
.y172{bottom:143.706667pt;}
.yc0{bottom:146.426667pt;}
.y157{bottom:146.586667pt;}
.y56{bottom:146.746667pt;}
.y13c{bottom:148.186667pt;}
.y2d{bottom:149.306667pt;}
.y1b7{bottom:149.466667pt;}
.y78{bottom:150.746667pt;}
.yf8{bottom:151.706667pt;}
.y1c2{bottom:157.626667pt;}
.y1eb{bottom:158.746667pt;}
.yc3{bottom:158.946667pt;}
.y171{bottom:159.866667pt;}
.y17a{bottom:160.026667pt;}
.yf7{bottom:161.306667pt;}
.ybf{bottom:161.466667pt;}
.y1a4{bottom:161.786667pt;}
.y156{bottom:161.946667pt;}
.y18e{bottom:163.813333pt;}
.y2c{bottom:164.506667pt;}
.ybe{bottom:166.106667pt;}
.y188{bottom:166.746667pt;}
.y20c{bottom:167.386667pt;}
.yca{bottom:172.226667pt;}
.y1db{bottom:174.586667pt;}
.y170{bottom:176.026667pt;}
.yf6{bottom:176.186667pt;}
.y1b6{bottom:176.506667pt;}
.y77{bottom:177.626667pt;}
.ybd{bottom:178.106667pt;}
.y2b{bottom:179.546667pt;}
.yf5{bottom:181.466667pt;}
.y13b{bottom:183.226667pt;}
.y1c1{bottom:184.666667pt;}
.y1ea{bottom:185.466667pt;}
.y179{bottom:186.906667pt;}
.y1a3{bottom:188.666667pt;}
.y55{bottom:188.826667pt;}
.yf4{bottom:191.226667pt;}
.y128{bottom:191.546667pt;}
.y16f{bottom:192.186667pt;}
.y187{bottom:193.626667pt;}
.y2a{bottom:194.426667pt;}
.y18f{bottom:199.133333pt;}
.y29{bottom:199.706667pt;}
.y1da{bottom:201.466667pt;}
.y1b5{bottom:203.546667pt;}
.y76{bottom:204.506667pt;}
.yf3{bottom:206.266667pt;}
.y16e{bottom:208.506667pt;}
.y28{bottom:209.466667pt;}
.y139{bottom:209.946667pt;}
.ycb{bottom:210.306667pt;}
.yf2{bottom:211.546667pt;}
.y110{bottom:211.706667pt;}
.y1c0{bottom:211.866667pt;}
.y155{bottom:212.186667pt;}
.y1e9{bottom:212.506667pt;}
.y178{bottom:213.626667pt;}
.ybc{bottom:214.106667pt;}
.y8c{bottom:214.426667pt;}
.y1a2{bottom:215.546667pt;}
.y54{bottom:215.706667pt;}
.y13a{bottom:216.666667pt;}
.y186{bottom:220.506667pt;}
.yf1{bottom:221.306667pt;}
.y20b{bottom:221.626667pt;}
.y27{bottom:224.346667pt;}
.y16d{bottom:224.826667pt;}
.y1d9{bottom:228.186667pt;}
.y1b4{bottom:230.586667pt;}
.y75{bottom:231.386667pt;}
.y190{bottom:234.466667pt;}
.yf0{bottom:236.186667pt;}
.y138{bottom:236.826667pt;}
.y10f{bottom:238.586667pt;}
.y153{bottom:239.226667pt;}
.y26{bottom:239.546667pt;}
.y1e8{bottom:239.706667pt;}
.ya8{bottom:240.506667pt;}
.y16c{bottom:240.986667pt;}
.ybb{bottom:241.146667pt;}
.yef{bottom:241.466667pt;}
.y8b{bottom:241.626667pt;}
.y1a1{bottom:242.466667pt;}
.y53{bottom:242.626667pt;}
.y127{bottom:244.066667pt;}
.y25{bottom:244.226667pt;}
.y154{bottom:245.986667pt;}
.y185{bottom:247.426667pt;}
.ycc{bottom:248.386667pt;}
.y20a{bottom:248.546667pt;}
.y193{bottom:249.026667pt;}
.yee{bottom:251.586667pt;}
.y1d8{bottom:255.266667pt;}
.y24{bottom:256.226667pt;}
.y16b{bottom:257.346667pt;}
.y1b3{bottom:257.826667pt;}
.y74{bottom:258.146667pt;}
.y16a{bottom:262.626667pt;}
.y137{bottom:263.586667pt;}
.y10e{bottom:265.346667pt;}
.y1bf{bottom:265.666667pt;}
.y152{bottom:266.466667pt;}
.y1e7{bottom:266.786667pt;}
.ya7{bottom:267.426667pt;}
.yba{bottom:268.226667pt;}
.y8a{bottom:268.386667pt;}
.y1a0{bottom:269.186667pt;}
.y52{bottom:269.506667pt;}
.y191{bottom:269.760000pt;}
.y126{bottom:271.266667pt;}
.yc2{bottom:271.933333pt;}
.y169{bottom:272.866667pt;}
.y184{bottom:274.306667pt;}
.y209{bottom:275.426667pt;}
.y1d7{bottom:282.306667pt;}
.y1b2{bottom:284.546667pt;}
.y73{bottom:285.026667pt;}
.ycd{bottom:286.493333pt;}
.yed{bottom:291.426667pt;}
.y10d{bottom:292.386667pt;}
.y1be{bottom:292.706667pt;}
.y151{bottom:293.346667pt;}
.y136{bottom:293.666667pt;}
.ya6{bottom:294.306667pt;}
.yb9{bottom:295.266667pt;}
.y89{bottom:295.586667pt;}
.y19f{bottom:296.066667pt;}
.y51{bottom:296.386667pt;}
.y125{bottom:298.306667pt;}
.y183{bottom:301.026667pt;}
.y208{bottom:302.306667pt;}
.y22{bottom:308.226667pt;}
.y1d6{bottom:309.506667pt;}
.y1b1{bottom:311.586667pt;}
.y72{bottom:311.906667pt;}
.y23{bottom:314.946667pt;}
.yec{bottom:318.306667pt;}
.y10c{bottom:319.426667pt;}
.y1bd{bottom:319.746667pt;}
.y150{bottom:320.066667pt;}
.y135{bottom:320.386667pt;}
.y1e6{bottom:320.546667pt;}
.ya5{bottom:321.186667pt;}
.yb8{bottom:322.306667pt;}
.y88{bottom:322.466667pt;}
.y19e{bottom:322.946667pt;}
.y50{bottom:323.266667pt;}
.y124{bottom:325.346667pt;}
.y182{bottom:327.906667pt;}
.y207{bottom:329.186667pt;}
.y20{bottom:335.106667pt;}
.y1d5{bottom:336.386667pt;}
.y71{bottom:338.786667pt;}
.y21{bottom:341.826667pt;}
.yeb{bottom:345.186667pt;}
.y10b{bottom:346.466667pt;}
.y168{bottom:346.946667pt;}
.y14f{bottom:347.106667pt;}
.y1e5{bottom:347.266667pt;}
.y134{bottom:347.426667pt;}
.ya4{bottom:348.066667pt;}
.y87{bottom:349.186667pt;}
.y19d{bottom:349.826667pt;}
.y4f{bottom:350.146667pt;}
.y123{bottom:352.386667pt;}
.y181{bottom:353.506667pt;}
.y206{bottom:355.906667pt;}
.yb7{bottom:360.226667pt;}
.y1f{bottom:361.986667pt;}
.y1d4{bottom:363.106667pt;}
.y70{bottom:365.506667pt;}
.yea{bottom:371.906667pt;}
.y109{bottom:373.506667pt;}
.y167{bottom:373.826667pt;}
.y1bc{bottom:373.986667pt;}
.y14e{bottom:374.146667pt;}
.y1e4{bottom:374.466667pt;}
.y133{bottom:374.626667pt;}
.ya3{bottom:374.946667pt;}
.y86{bottom:376.386667pt;}
.y19c{bottom:376.706667pt;}
.y4e{bottom:376.866667pt;}
.y180{bottom:378.146667pt;}
.y121{bottom:379.426667pt;}
.y10a{bottom:380.226667pt;}
.y205{bottom:382.786667pt;}
.y122{bottom:386.146667pt;}
.yb6{bottom:387.106667pt;}
.y1e{bottom:388.706667pt;}
.y1d3{bottom:390.146667pt;}
.y1b0{bottom:392.546667pt;}
.y6f{bottom:392.706667pt;}
.ye8{bottom:398.946667pt;}
.y108{bottom:400.546667pt;}
.y166{bottom:400.866667pt;}
.y1e3{bottom:401.186667pt;}
.y132{bottom:401.346667pt;}
.y1ef{bottom:401.666667pt;}
.ya2{bottom:401.826667pt;}
.y17f{bottom:402.786667pt;}
.y85{bottom:403.106667pt;}
.y19b{bottom:403.586667pt;}
.y4d{bottom:403.746667pt;}
.ye9{bottom:405.666667pt;}
.y1ae{bottom:406.146667pt;}
.y11f{bottom:406.466667pt;}
.y204{bottom:409.666667pt;}
.y120{bottom:413.186667pt;}
.yb5{bottom:413.986667pt;}
.y1d{bottom:415.746667pt;}
.y1d2{bottom:417.346667pt;}
.y6e{bottom:419.586667pt;}
.y17e{bottom:423.266667pt;}
.y18a{bottom:423.520000pt;}
.ye6{bottom:425.986667pt;}
.y107{bottom:427.746667pt;}
.y165{bottom:427.906667pt;}
.y14d{bottom:428.226667pt;}
.y1e2{bottom:428.386667pt;}
.ya1{bottom:428.546667pt;}
.y84{bottom:429.986667pt;}
.y19a{bottom:430.466667pt;}
.y4c{bottom:430.626667pt;}
.ye7{bottom:432.706667pt;}
.y11e{bottom:433.506667pt;}
.y203{bottom:436.546667pt;}
.yb4{bottom:440.706667pt;}
.y1c{bottom:442.946667pt;}
.y1d1{bottom:444.066667pt;}
.y6d{bottom:446.466667pt;}
.ye5{bottom:453.186667pt;}
.y106{bottom:454.786667pt;}
.y164{bottom:454.946667pt;}
.y14c{bottom:455.106667pt;}
.y1e1{bottom:455.266667pt;}
.ya0{bottom:455.426667pt;}
.y131{bottom:455.586667pt;}
.y83{bottom:457.026667pt;}
.y199{bottom:457.186667pt;}
.y1ad{bottom:457.346667pt;}
.y4b{bottom:457.506667pt;}
.y11d{bottom:460.706667pt;}
.y202{bottom:463.426667pt;}
.yb3{bottom:467.586667pt;}
.y1b{bottom:469.826667pt;}
.y1d0{bottom:471.106667pt;}
.y6c{bottom:473.346667pt;}
.ye4{bottom:480.226667pt;}
.y105{bottom:481.666667pt;}
.y14b{bottom:481.986667pt;}
.y1e0{bottom:482.146667pt;}
.y9f{bottom:482.306667pt;}
.y130{bottom:482.466667pt;}
.y82{bottom:483.906667pt;}
.y198{bottom:484.066667pt;}
.y1ac{bottom:484.226667pt;}
.y4a{bottom:484.386667pt;}
.y11c{bottom:487.746667pt;}
.y201{bottom:490.306667pt;}
.yb2{bottom:494.493333pt;}
.y1a{bottom:496.733333pt;}
.y1cf{bottom:498.333333pt;}
.y6b{bottom:500.253333pt;}
.ye3{bottom:507.293333pt;}
.y1bb{bottom:508.413333pt;}
.y104{bottom:508.733333pt;}
.y1df{bottom:508.893333pt;}
.y163{bottom:509.053333pt;}
.y9e{bottom:509.213333pt;}
.y12f{bottom:509.373333pt;}
.y80{bottom:510.653333pt;}
.y197{bottom:510.973333pt;}
.y49{bottom:511.293333pt;}
.y11b{bottom:514.973333pt;}
.y200{bottom:517.213333pt;}
.y81{bottom:517.373333pt;}
.yb1{bottom:521.373333pt;}
.y19{bottom:523.453333pt;}
.y1ce{bottom:525.053333pt;}
.y6a{bottom:526.973333pt;}
.ye2{bottom:534.333333pt;}
.y14a{bottom:535.613333pt;}
.y103{bottom:535.773333pt;}
.y1de{bottom:535.933333pt;}
.y9d{bottom:536.093333pt;}
.y12e{bottom:536.253333pt;}
.y213{bottom:537.693333pt;}
.y7f{bottom:537.853333pt;}
.y48{bottom:538.173333pt;}
.y1ff{bottom:544.093333pt;}
.yb0{bottom:548.253333pt;}
.y18{bottom:550.333333pt;}
.y1cd{bottom:552.253333pt;}
.y11a{bottom:552.413333pt;}
.y69{bottom:553.853333pt;}
.ye1{bottom:561.373333pt;}
.y149{bottom:562.493333pt;}
.y1ba{bottom:562.653333pt;}
.y102{bottom:562.813333pt;}
.y9c{bottom:562.973333pt;}
.y162{bottom:563.133333pt;}
.y212{bottom:564.573333pt;}
.y7e{bottom:564.733333pt;}
.y47{bottom:564.893333pt;}
.y1fe{bottom:570.813333pt;}
.yaf{bottom:574.973333pt;}
.y17{bottom:577.213333pt;}
.y1cc{bottom:578.973333pt;}
.y68{bottom:580.733333pt;}
.ye0{bottom:588.413333pt;}
.y148{bottom:589.373333pt;}
.y9b{bottom:589.693333pt;}
.y101{bottom:589.853333pt;}
.y119{bottom:590.013333pt;}
.y12d{bottom:590.173333pt;}
.y211{bottom:591.453333pt;}
.y7d{bottom:591.613333pt;}
.y46{bottom:591.773333pt;}
.y1fd{bottom:597.693333pt;}
.yae{bottom:602.173333pt;}
.y16{bottom:604.093333pt;}
.y1cb{bottom:606.173333pt;}
.y67{bottom:607.613333pt;}
.ydf{bottom:615.453333pt;}
.y147{bottom:616.253333pt;}
.y1b9{bottom:616.573333pt;}
.y118{bottom:616.733333pt;}
.y9a{bottom:616.893333pt;}
.y100{bottom:617.053333pt;}
.y1ee{bottom:617.213333pt;}
.y210{bottom:618.333333pt;}
.y7c{bottom:618.493333pt;}
.y45{bottom:618.653333pt;}
.y1fc{bottom:624.573333pt;}
.yad{bottom:629.053333pt;}
.y15{bottom:630.973333pt;}
.y1ca{bottom:632.893333pt;}
.y66{bottom:634.493333pt;}
.yde{bottom:642.653333pt;}
.y146{bottom:643.133333pt;}
.y177{bottom:643.453333pt;}
.y99{bottom:643.613333pt;}
.yff{bottom:643.773333pt;}
.y12c{bottom:643.933333pt;}
.y20f{bottom:645.213333pt;}
.y7b{bottom:645.373333pt;}
.y44{bottom:645.533333pt;}
.y1fb{bottom:651.453333pt;}
.yac{bottom:655.933333pt;}
.y14{bottom:657.853333pt;}
.y1c9{bottom:659.933333pt;}
.y65{bottom:661.373333pt;}
.ydd{bottom:669.693333pt;}
.y145{bottom:669.853333pt;}
.y176{bottom:670.333333pt;}
.y98{bottom:670.653333pt;}
.yfe{bottom:670.813333pt;}
.y12b{bottom:671.133333pt;}
.y20e{bottom:671.933333pt;}
.y7a{bottom:672.093333pt;}
.y1ab{bottom:672.253333pt;}
.y43{bottom:672.413333pt;}
.y1fa{bottom:678.333333pt;}
.yaa{bottom:681.533333pt;}
.y13{bottom:684.733333pt;}
.y1c8{bottom:687.133333pt;}
.yab{bottom:687.613333pt;}
.y64{bottom:688.253333pt;}
.ydc{bottom:696.733333pt;}
.y144{bottom:696.893333pt;}
.y175{bottom:697.213333pt;}
.y161{bottom:697.693333pt;}
.y97{bottom:697.853333pt;}
.yfd{bottom:698.013333pt;}
.y1dd{bottom:698.173333pt;}
.y20d{bottom:698.813333pt;}
.y196{bottom:698.973333pt;}
.y1aa{bottom:699.133333pt;}
.y42{bottom:699.293333pt;}
.ya9{bottom:702.013333pt;}
.yc1{bottom:703.520000pt;}
.y1f9{bottom:705.213333pt;}
.y12{bottom:711.613333pt;}
.y1c7{bottom:713.853333pt;}
.ydb{bottom:723.773333pt;}
.y143{bottom:723.933333pt;}
.y174{bottom:724.093333pt;}
.y96{bottom:724.573333pt;}
.y1ed{bottom:724.733333pt;}
.yfc{bottom:724.893333pt;}
.y117{bottom:725.053333pt;}
.y1dc{bottom:725.373333pt;}
.y63{bottom:725.693333pt;}
.y195{bottom:725.853333pt;}
.y41{bottom:726.173333pt;}
.y1f8{bottom:732.093333pt;}
.y11{bottom:738.333333pt;}
.y1c6{bottom:741.053333pt;}
.yda{bottom:750.853333pt;}
.y142{bottom:751.013333pt;}
.y160{bottom:751.333333pt;}
.y95{bottom:751.653333pt;}
.y17d{bottom:751.813333pt;}
.y116{bottom:752.133333pt;}
.y62{bottom:752.613333pt;}
.y1a9{bottom:752.773333pt;}
.y40{bottom:753.093333pt;}
.y1f7{bottom:759.013333pt;}
.y10{bottom:765.093333pt;}
.yd8{bottom:777.893333pt;}
.y141{bottom:778.213333pt;}
.y15f{bottom:778.373333pt;}
.y1b8{bottom:778.533333pt;}
.y94{bottom:778.693333pt;}
.y115{bottom:779.013333pt;}
.y61{bottom:779.493333pt;}
.y194{bottom:779.653333pt;}
.y3f{bottom:779.813333pt;}
.yd9{bottom:784.613333pt;}
.y1f6{bottom:785.733333pt;}
.yf{bottom:792.133333pt;}
.yd7{bottom:804.933333pt;}
.y140{bottom:805.253333pt;}
.y15d{bottom:805.413333pt;}
.y17c{bottom:805.573333pt;}
.y12a{bottom:805.733333pt;}
.y93{bottom:805.893333pt;}
.y1ec{bottom:806.053333pt;}
.y60{bottom:806.373333pt;}
.y1a8{bottom:806.533333pt;}
.y3e{bottom:806.693333pt;}
.y15e{bottom:812.133333pt;}
.y1f5{bottom:812.613333pt;}
.ye{bottom:829.733333pt;}
.yd6{bottom:832.133333pt;}
.y13f{bottom:832.293333pt;}
.y15c{bottom:832.453333pt;}
.y114{bottom:832.613333pt;}
.yfb{bottom:832.773333pt;}
.y92{bottom:832.933333pt;}
.y5f{bottom:833.253333pt;}
.y1a7{bottom:833.413333pt;}
.y3c{bottom:833.573333pt;}
.y1f4{bottom:839.493333pt;}
.y3d{bottom:840.293333pt;}
.yd{bottom:856.613333pt;}
.yd5{bottom:859.173333pt;}
.y13e{bottom:859.333333pt;}
.y15b{bottom:859.493333pt;}
.yfa{bottom:859.653333pt;}
.y91{bottom:859.813333pt;}
.y5e{bottom:859.973333pt;}
.y1a6{bottom:860.133333pt;}
.y3b{bottom:860.453333pt;}
.y1f3{bottom:866.373333pt;}
.y113{bottom:866.533333pt;}
.yc{bottom:883.493333pt;}
.yd4{bottom:886.213333pt;}
.y1c5{bottom:886.373333pt;}
.yf9{bottom:886.533333pt;}
.y90{bottom:886.853333pt;}
.y5d{bottom:887.173333pt;}
.y3a{bottom:887.333333pt;}
.y1f2{bottom:893.253333pt;}
.yb{bottom:910.373333pt;}
.yd3{bottom:913.253333pt;}
.y1c4{bottom:913.413333pt;}
.y112{bottom:913.733333pt;}
.y129{bottom:913.893333pt;}
.y5c{bottom:914.053333pt;}
.y39{bottom:914.213333pt;}
.y1f1{bottom:920.133333pt;}
.ya{bottom:939.173333pt;}
.yd2{bottom:940.293333pt;}
.y15a{bottom:940.453333pt;}
.y111{bottom:940.613333pt;}
.y5b{bottom:940.773333pt;}
.y38{bottom:941.093333pt;}
.y1f0{bottom:957.253333pt;}
.yd1{bottom:967.333333pt;}
.y5a{bottom:967.653333pt;}
.y37{bottom:967.973333pt;}
.y9{bottom:970.533333pt;}
.y8{bottom:991.813333pt;}
.yd0{bottom:994.373333pt;}
.y36{bottom:994.693333pt;}
.y32{bottom:1012.160000pt;}
.y7{bottom:1024.000000pt;}
.y31{bottom:1032.000000pt;}
.y30{bottom:1046.880000pt;}
.y6{bottom:1052.480000pt;}
.y2f{bottom:1062.240000pt;}
.hd{height:27.171875pt;}
.h11{height:29.345625pt;}
.h9{height:31.519375pt;}
.hb{height:34.374375pt;}
.h16{height:37.586667pt;}
.h14{height:42.656250pt;}
.h2{height:45.105313pt;}
.h13{height:47.742188pt;}
.he{height:49.996250pt;}
.h4{height:51.750000pt;}
.hc{height:52.834688pt;}
.h5{height:54.343750pt;}
.h10{height:54.598989pt;}
.h3{height:58.563750pt;}
.h7{height:63.582187pt;}
.hf{height:65.781915pt;}
.h6{height:67.929688pt;}
.ha{height:68.413191pt;}
.h15{height:287.840000pt;}
.h12{height:304.480000pt;}
.h8{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:77.792000pt;}
.w4{width:480.000000pt;}
.w3{width:584.320000pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:8.800000pt;}
.x1c{left:14.880000pt;}
.x35{left:65.533333pt;}
.x1{left:75.520000pt;}
.x17{left:91.426667pt;}
.x10{left:99.552000pt;}
.x37{left:104.032000pt;}
.x3a{left:111.552000pt;}
.x9{left:113.292000pt;}
.xa{left:117.632000pt;}
.x3{left:122.752000pt;}
.x13{left:127.072000pt;}
.x28{left:130.752000pt;}
.x18{left:136.613333pt;}
.x21{left:143.046667pt;}
.x22{left:147.706667pt;}
.x14{left:150.746667pt;}
.x1f{left:151.773333pt;}
.x6{left:158.086667pt;}
.x36{left:161.306667pt;}
.x7{left:162.746667pt;}
.x3b{left:179.546667pt;}
.x19{left:184.826667pt;}
.x2d{left:232.986667pt;}
.x25{left:235.366667pt;}
.xb{left:240.346667pt;}
.x29{left:244.506667pt;}
.x2{left:245.626667pt;}
.x8{left:267.586667pt;}
.x1e{left:306.720000pt;}
.x1a{left:362.466667pt;}
.x11{left:363.726667pt;}
.x12{left:368.386667pt;}
.x30{left:376.526667pt;}
.x31{left:385.986667pt;}
.x2a{left:392.686667pt;}
.x20{left:396.046667pt;}
.x4{left:401.486667pt;}
.x5{left:406.146667pt;}
.x1b{left:410.693333pt;}
.x3e{left:456.093333pt;}
.x23{left:492.553333pt;}
.x24{left:497.213333pt;}
.xd{left:498.973333pt;}
.x26{left:509.193333pt;}
.x27{left:518.333333pt;}
.x3d{left:536.253333pt;}
.x2e{left:550.793333pt;}
.x32{left:556.553333pt;}
.x2f{left:560.093333pt;}
.x3f{left:562.333333pt;}
.x33{left:566.013333pt;}
.x39{left:573.853333pt;}
.x3c{left:576.573333pt;}
.x38{left:583.613333pt;}
.x34{left:593.413333pt;}
.xe{left:618.833333pt;}
.xf{left:623.653333pt;}
.x2b{left:644.753333pt;}
.x2c{left:654.053333pt;}
.x15{left:657.393333pt;}
.x16{left:661.733333pt;}
.xc{left:699.333333pt;}
}




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