
    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_59fc1e094123fea0f21e495f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_e760064d1f1d7eb1da0c8363.woff')format("woff");}.ff2{font-family:ff2;line-height:1.038086;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_188e559b46e99152ad1ef7bd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_490da5b6239ad972ba589757.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_7750408c1ef50359e95cc6e8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.854492;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_a24936f2b03dba24f1ebb307.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7776f3b82aa43d8849c02ac0.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_42daabae6ea8e290ddce0abf.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ef116bd1feddfb6eecd1716e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_0ce8b8a7f96205cffd200acc.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_53de9c5246e71589ac6ae22d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.758789;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_332e8213efd023b71530bb53.woff')format("woff");}.ffc{font-family:ffc;line-height:0.973145;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_3bb9bf8ea26927fe59e7257b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.774902;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_a3ce02f90ec0fe264e413e29.woff')format("woff");}.ffe{font-family:ffe;line-height:0.971191;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_baeeffb5ce82afebaef13867.woff')format("woff");}.fff{font-family:fff;line-height:1.055176;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_9562a63ce14afd82244956bb.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_adb14813a87a2a75e3e53a24.woff')format("woff");}.ff11{font-family:ff11;line-height:1.055176;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_72b1e3df00f78bba2ed7e20b.woff')format("woff");}.ff12{font-family:ff12;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_8e13ac66ebc3b35964966e1b.woff')format("woff");}.ff13{font-family:ff13;line-height:1.432129;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;}
.m2{transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,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);}
.v2{vertical-align:-21.060000px;}
.v6{vertical-align:-7.529385px;}
.v3{vertical-align:-5.760000px;}
.v7{vertical-align:-3.764693px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880000px;}
.v8{vertical-align:22.738743px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:27.336000px;}
.ls10{letter-spacing:-0.540000px;}
.ls2c{letter-spacing:-0.496200px;}
.ls32{letter-spacing:-0.470336px;}
.ls17{letter-spacing:-0.450600px;}
.ls23{letter-spacing:-0.305400px;}
.ls1d{letter-spacing:-0.288000px;}
.ls2a{letter-spacing:-0.262200px;}
.ls11{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.187200px;}
.ls29{letter-spacing:-0.152400px;}
.ls20{letter-spacing:-0.144000px;}
.ls24{letter-spacing:-0.109200px;}
.ls31{letter-spacing:-0.098886px;}
.ls1a{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.036000px;}
.lsf{letter-spacing:-0.028080px;}
.lsb{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012960px;}
.ls6{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.023040px;}
.ls22{letter-spacing:0.051840px;}
.ls26{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.100800px;}
.ls18{letter-spacing:0.126600px;}
.ls15{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.149760px;}
.lse{letter-spacing:0.150000px;}
.ls4{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.218400px;}
.ls2b{letter-spacing:0.223800px;}
.ls16{letter-spacing:0.269400px;}
.ls28{letter-spacing:0.336000px;}
.ls3{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.378000px;}
.ls12{letter-spacing:0.532800px;}
.ls25{letter-spacing:0.540000px;}
.ls2f{letter-spacing:0.568080px;}
.ls7{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.720000px;}
.ls27{letter-spacing:0.792000px;}
.ls30{letter-spacing:1.132545px;}
.ls8{letter-spacing:1.254000px;}
.ls1f{letter-spacing:2.160000px;}
.ls19{letter-spacing:2.520000px;}
.ls1b{letter-spacing:5.940000px;}
.ls2e{letter-spacing:7.488000px;}
.ls1e{letter-spacing:7.920000px;}
.ls5{letter-spacing:13.860000px;}
.ls2d{letter-spacing:19.440000px;}
.ls1c{letter-spacing:23.220000px;}
.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;}
}
.ws5{word-spacing:-21.031920px;}
.ws14{word-spacing:-18.216000px;}
.ws11{word-spacing:-18.144000px;}
.ws21{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.928000px;}
.wsa{word-spacing:-17.784000px;}
.ws13{word-spacing:-17.712000px;}
.ws1b{word-spacing:-16.560000px;}
.ws1a{word-spacing:-16.450800px;}
.ws1c{word-spacing:-16.407600px;}
.ws1d{word-spacing:-16.297800px;}
.ws19{word-spacing:-16.254600px;}
.ws18{word-spacing:-15.891840px;}
.ws17{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.300000px;}
.ws8{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.595840px;}
.ws0{word-spacing:-14.572800px;}
.ws22{word-spacing:-14.220000px;}
.ws16{word-spacing:-13.860000px;}
.ws15{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.273800px;}
.ws3{word-spacing:-13.160160px;}
.ws2{word-spacing:-13.147200px;}
.ws23{word-spacing:-12.593901px;}
.wsd{word-spacing:-12.329400px;}
.ws1f{word-spacing:-12.283800px;}
.ws12{word-spacing:-12.060000px;}
.wse{word-spacing:-11.609400px;}
.ws20{word-spacing:-11.563800px;}
.ws1e{word-spacing:-10.440000px;}
.ws9{word-spacing:-9.737280px;}
.ws6{word-spacing:-9.720000px;}
.wsb{word-spacing:-0.054000px;}
.wsc{word-spacing:0.000000px;}
.ws24{word-spacing:14.959257px;}
.ws25{word-spacing:15.373122px;}
.ws31{word-spacing:22.180063px;}
.ws32{word-spacing:22.280455px;}
.ws28{word-spacing:24.315397px;}
.ws2d{word-spacing:25.944755px;}
.ws2e{word-spacing:26.045147px;}
.ws30{word-spacing:26.095343px;}
.ws2a{word-spacing:29.759644px;}
.ws29{word-spacing:29.809840px;}
.ws2c{word-spacing:29.860036px;}
.ws26{word-spacing:45.232029px;}
.ws2b{word-spacing:48.992078px;}
.ws2f{word-spacing:53.020048px;}
.ws27{word-spacing:88.282669px;}
._5{margin-left:-5.677200px;}
._a{margin-left:-4.242960px;}
._7{margin-left:-2.564160px;}
._0{margin-left:-1.126080px;}
._1{width:1.613520px;}
._16{width:3.096000px;}
._d{width:4.242960px;}
._c{width:5.438160px;}
._3{width:6.812640px;}
._12{width:7.828560px;}
._4{width:9.817920px;}
._10{width:10.895040px;}
._f{width:12.360960px;}
._e{width:13.804560px;}
._17{width:15.167520px;}
._6{width:16.434000px;}
._11{width:17.928000px;}
._8{width:19.003680px;}
._b{width:20.019600px;}
._9{width:21.555120px;}
._13{width:22.724880px;}
._18{width:24.552000px;}
._19{width:25.560000px;}
._20{width:26.616000px;}
._1a{width:28.584000px;}
._1f{width:29.680560px;}
._14{width:37.872000px;}
._15{width:39.354480px;}
._1b{width:40.752000px;}
._1c{width:43.560000px;}
._1e{width:45.372000px;}
._22{width:53.712000px;}
._23{width:54.930480px;}
._21{width:57.816000px;}
._1d{width:59.088000px;}
._2{width:61.248000px;}
._25{width:101.588468px;}
._24{width:846.156000px;}
.fc7{color:transparent;}
.fc8{color:rgb(255,0,0);}
.fc6{color:rgb(23,54,93);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(54,95,145);}
.fc9{color:rgb(192,0,0);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(36,64,97);}
.fca{color:rgb(46,46,46);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:2.880000px;}
.fse{font-size:30.243030px;}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fsb{font-size:41.760000px;}
.fsd{font-size:45.301801px;}
.fs4{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fsc{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs9{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yf3{bottom:3.240000px;}
.y2{bottom:4.500000px;}
.yd{bottom:4.680000px;}
.y1d5{bottom:4.730970px;}
.y1d6{bottom:4.731029px;}
.y1d2{bottom:4.731040px;}
.y4{bottom:4.860000px;}
.y1b8{bottom:5.940000px;}
.yde{bottom:6.120000px;}
.yd6{bottom:6.300000px;}
.yec{bottom:6.330000px;}
.ye4{bottom:6.480000px;}
.y117{bottom:6.525000px;}
.y1d8{bottom:6.588293px;}
.y1df{bottom:6.613391px;}
.y1e4{bottom:6.619666px;}
.y1eb{bottom:6.619682px;}
.y1db{bottom:6.625940px;}
.y7{bottom:7.740000px;}
.y9{bottom:7.920000px;}
.y11c{bottom:8.100000px;}
.y11a{bottom:8.280000px;}
.y6{bottom:8.820000px;}
.y1b0{bottom:9.000000px;}
.yff{bottom:9.180000px;}
.yfd{bottom:9.360000px;}
.y38{bottom:12.240000px;}
.y1b2{bottom:14.220000px;}
.y1d4{bottom:19.827385px;}
.y1b4{bottom:22.320000px;}
.y1b7{bottom:22.365000px;}
.y1ac{bottom:22.500000px;}
.y1c2{bottom:22.530000px;}
.y1ca{bottom:22.545000px;}
.y1af{bottom:25.380000px;}
.y37{bottom:29.520000px;}
.y1bb{bottom:30.600000px;}
.y1bd{bottom:38.700000px;}
.y1b6{bottom:38.745000px;}
.y1ad{bottom:38.880000px;}
.y1c1{bottom:38.910000px;}
.y1c9{bottom:38.925000px;}
.y36{bottom:46.800000px;}
.yb{bottom:53.100000px;}
.y1ba{bottom:55.260000px;}
.yc{bottom:56.700000px;}
.y35{bottom:64.080000px;}
.y34{bottom:81.360000px;}
.y33{bottom:98.640000px;}
.y25{bottom:102.240000px;}
.y46{bottom:109.116000px;}
.ya9{bottom:113.076000px;}
.y32{bottom:115.740000px;}
.y24{bottom:119.520000px;}
.y8f{bottom:121.896000px;}
.yf9{bottom:122.256000px;}
.y166{bottom:122.976000px;}
.y79{bottom:128.196000px;}
.y31{bottom:133.020000px;}
.y120{bottom:135.936000px;}
.y23{bottom:139.710000px;}
.ya8{bottom:139.896000px;}
.y1ce{bottom:141.336000px;}
.yf8{bottom:142.956000px;}
.y45{bottom:143.676000px;}
.ye2{bottom:144.576000px;}
.y8e{bottom:148.536000px;}
.y78{bottom:148.896000px;}
.y30{bottom:150.330000px;}
.ye1{bottom:153.570000px;}
.y13d{bottom:154.470000px;}
.y1cd{bottom:158.430000px;}
.y22{bottom:160.050000px;}
.ya7{bottom:160.590000px;}
.yf7{bottom:163.650000px;}
.y165{bottom:164.370000px;}
.y44{bottom:165.270000px;}
.y18d{bottom:166.890000px;}
.y2f{bottom:167.610000px;}
.y8d{bottom:169.230000px;}
.y77{bottom:169.590000px;}
.y11f{bottom:171.030000px;}
.y13c{bottom:175.170000px;}
.ye0{bottom:177.690000px;}
.y21{bottom:180.210000px;}
.ya6{bottom:181.290000px;}
.yf6{bottom:184.530000px;}
.y2e{bottom:184.890000px;}
.y164{bottom:185.070000px;}
.y1a9{bottom:186.330000px;}
.y18c{bottom:187.590000px;}
.y11e{bottom:188.850000px;}
.y8c{bottom:189.930000px;}
.y76{bottom:190.290000px;}
.y13b{bottom:195.870000px;}
.y20{bottom:200.550000px;}
.ydf{bottom:201.810000px;}
.y2d{bottom:201.990000px;}
.y43{bottom:203.970000px;}
.y163{bottom:205.770000px;}
.y1a8{bottom:207.030000px;}
.y18b{bottom:208.290000px;}
.y8b{bottom:210.630000px;}
.y75{bottom:210.990000px;}
.y1cc{bottom:213.510000px;}
.y13a{bottom:216.570000px;}
.y11d{bottom:216.750000px;}
.yf5{bottom:216.930000px;}
.y2c{bottom:219.270000px;}
.y1f{bottom:222.330000px;}
.ydd{bottom:225.930000px;}
.y162{bottom:226.470000px;}
.y1a7{bottom:227.730000px;}
.ya5{bottom:228.630000px;}
.y18a{bottom:228.990000px;}
.y8a{bottom:231.330000px;}
.y74{bottom:231.690000px;}
.yf4{bottom:234.930000px;}
.y2b{bottom:236.550000px;}
.y139{bottom:237.270000px;}
.y42{bottom:240.330000px;}
.y11b{bottom:245.370000px;}
.y161{bottom:247.170000px;}
.y1a6{bottom:248.430000px;}
.y1e{bottom:248.610000px;}
.ya4{bottom:249.330000px;}
.y189{bottom:249.690000px;}
.ydc{bottom:249.870000px;}
.y89{bottom:252.030000px;}
.y73{bottom:252.390000px;}
.y2a{bottom:253.830000px;}
.y138{bottom:257.970000px;}
.y41{bottom:261.030000px;}
.y160{bottom:267.870000px;}
.y1cb{bottom:268.770000px;}
.y1a5{bottom:269.130000px;}
.ya3{bottom:270.030000px;}
.y1d{bottom:270.210000px;}
.y188{bottom:270.390000px;}
.y29{bottom:271.110000px;}
.y88{bottom:272.730000px;}
.y72{bottom:273.090000px;}
.y119{bottom:273.450000px;}
.ydb{bottom:273.990000px;}
.y137{bottom:278.670000px;}
.y40{bottom:281.730000px;}
.y28{bottom:288.390000px;}
.y15f{bottom:288.570000px;}
.y1a4{bottom:289.650000px;}
.ya2{bottom:290.730000px;}
.y187{bottom:291.090000px;}
.y1c{bottom:291.990000px;}
.y87{bottom:293.430000px;}
.y71{bottom:293.790000px;}
.yda{bottom:298.110000px;}
.y136{bottom:299.370000px;}
.y118{bottom:302.070000px;}
.y3f{bottom:302.430000px;}
.y27{bottom:305.490000px;}
.y15e{bottom:309.270000px;}
.y1a3{bottom:310.350000px;}
.ya1{bottom:311.430000px;}
.y186{bottom:311.790000px;}
.y1b{bottom:313.770000px;}
.y86{bottom:314.130000px;}
.y70{bottom:314.490000px;}
.y135{bottom:320.070000px;}
.yd9{bottom:322.230000px;}
.y26{bottom:322.770000px;}
.y3e{bottom:323.130000px;}
.y1c8{bottom:323.850000px;}
.y15d{bottom:329.970000px;}
.y116{bottom:330.690000px;}
.y1a2{bottom:331.050000px;}
.ya0{bottom:332.130000px;}
.y185{bottom:332.490000px;}
.y85{bottom:334.830000px;}
.y6f{bottom:335.190000px;}
.y1a{bottom:340.050000px;}
.y134{bottom:340.815000px;}
.y3d{bottom:343.875000px;}
.yd8{bottom:346.395000px;}
.y15c{bottom:350.715000px;}
.y1a1{bottom:351.795000px;}
.y9f{bottom:352.875000px;}
.y184{bottom:353.235000px;}
.y6e{bottom:355.935000px;}
.y84{bottom:361.515000px;}
.y3c{bottom:364.575000px;}
.y115{bottom:366.015000px;}
.yd7{bottom:370.515000px;}
.y15b{bottom:371.415000px;}
.y1a0{bottom:372.495000px;}
.y9e{bottom:373.575000px;}
.y183{bottom:373.935000px;}
.y6d{bottom:376.635000px;}
.y1c7{bottom:379.155000px;}
.y133{bottom:382.215000px;}
.y114{bottom:385.095000px;}
.y3b{bottom:385.275000px;}
.y83{bottom:388.335000px;}
.y15a{bottom:392.115000px;}
.y19f{bottom:393.195000px;}
.y9d{bottom:394.275000px;}
.y182{bottom:394.635000px;}
.yd5{bottom:395.355000px;}
.y6c{bottom:397.335000px;}
.y1c6{bottom:402.195000px;}
.y132{bottom:402.915000px;}
.y3a{bottom:405.975000px;}
.y159{bottom:412.815000px;}
.y19e{bottom:413.895000px;}
.y181{bottom:415.335000px;}
.y113{bottom:416.415000px;}
.yc3{bottom:418.035000px;}
.y9c{bottom:420.915000px;}
.y6b{bottom:423.975000px;}
.y1c5{bottom:425.415000px;}
.y131{bottom:429.555000px;}
.yd4{bottom:429.915000px;}
.y39{bottom:432.435000px;}
.y158{bottom:433.515000px;}
.y19d{bottom:434.595000px;}
.y180{bottom:436.035000px;}
.y112{bottom:437.115000px;}
.yc2{bottom:438.555000px;}
.y6a{bottom:444.675000px;}
.y130{bottom:450.255000px;}
.y9b{bottom:450.615000px;}
.y157{bottom:454.215000px;}
.y19c{bottom:455.295000px;}
.y17f{bottom:456.555000px;}
.y111{bottom:457.815000px;}
.yc1{bottom:459.255000px;}
.yd3{bottom:461.235000px;}
.y19{bottom:464.295000px;}
.y69{bottom:465.375000px;}
.y12f{bottom:470.955000px;}
.y9a{bottom:471.315000px;}
.y156{bottom:474.915000px;}
.y19b{bottom:475.995000px;}
.y17e{bottom:477.255000px;}
.y110{bottom:478.515000px;}
.yc0{bottom:479.955000px;}
.y1c4{bottom:480.495000px;}
.yd2{bottom:481.935000px;}
.y68{bottom:486.075000px;}
.y12e{bottom:491.655000px;}
.y99{bottom:492.015000px;}
.y155{bottom:495.615000px;}
.y19a{bottom:496.695000px;}
.y17d{bottom:497.955000px;}
.y10f{bottom:499.215000px;}
.ybf{bottom:500.655000px;}
.yd1{bottom:502.635000px;}
.y67{bottom:506.775000px;}
.y12d{bottom:512.355000px;}
.y98{bottom:512.715000px;}
.y154{bottom:516.315000px;}
.y199{bottom:517.395000px;}
.y17c{bottom:518.655000px;}
.y10e{bottom:519.915000px;}
.ybe{bottom:521.355000px;}
.yd0{bottom:523.335000px;}
.y66{bottom:527.475000px;}
.y12c{bottom:533.055000px;}
.y97{bottom:533.415000px;}
.y1c3{bottom:535.755000px;}
.y153{bottom:537.015000px;}
.y198{bottom:538.095000px;}
.y17b{bottom:539.355000px;}
.y10d{bottom:540.615000px;}
.ybd{bottom:542.055000px;}
.y65{bottom:548.175000px;}
.ycf{bottom:549.975000px;}
.y12b{bottom:553.755000px;}
.y96{bottom:554.115000px;}
.y152{bottom:557.715000px;}
.y197{bottom:558.795000px;}
.y17a{bottom:560.055000px;}
.ybc{bottom:562.755000px;}
.y10c{bottom:567.255000px;}
.y64{bottom:568.875000px;}
.y12a{bottom:574.455000px;}
.y95{bottom:574.815000px;}
.yf2{bottom:575.355000px;}
.y151{bottom:578.415000px;}
.y196{bottom:579.495000px;}
.y179{bottom:580.755000px;}
.ybb{bottom:583.455000px;}
.yce{bottom:584.535000px;}
.y63{bottom:589.575000px;}
.y1c0{bottom:590.835000px;}
.yf1{bottom:593.355000px;}
.y129{bottom:595.155000px;}
.y94{bottom:595.515000px;}
.y10b{bottom:596.955000px;}
.y150{bottom:599.115000px;}
.y195{bottom:600.195000px;}
.yeb{bottom:601.095000px;}
.y178{bottom:601.455000px;}
.yba{bottom:604.185000px;}
.y62{bottom:610.305000px;}
.y128{bottom:615.885000px;}
.y93{bottom:616.245000px;}
.y10a{bottom:617.685000px;}
.y14f{bottom:619.845000px;}
.y194{bottom:620.925000px;}
.y177{bottom:622.185000px;}
.yb9{bottom:624.885000px;}
.yea{bottom:626.685000px;}
.y61{bottom:631.005000px;}
.y127{bottom:636.585000px;}
.y92{bottom:636.945000px;}
.y109{bottom:638.385000px;}
.y14e{bottom:640.545000px;}
.y193{bottom:641.625000px;}
.y176{bottom:642.885000px;}
.yb8{bottom:645.585000px;}
.y1bf{bottom:646.125000px;}
.y60{bottom:651.705000px;}
.y126{bottom:657.285000px;}
.y91{bottom:657.645000px;}
.y108{bottom:659.085000px;}
.y14d{bottom:661.245000px;}
.y192{bottom:662.325000px;}
.y175{bottom:663.585000px;}
.yb7{bottom:666.285000px;}
.y5f{bottom:672.405000px;}
.ye9{bottom:677.445000px;}
.y125{bottom:677.985000px;}
.y82{bottom:678.345000px;}
.y14c{bottom:681.945000px;}
.y191{bottom:683.025000px;}
.y174{bottom:684.285000px;}
.y107{bottom:685.725000px;}
.yb6{bottom:686.985000px;}
.y5e{bottom:693.105000px;}
.y124{bottom:698.685000px;}
.y81{bottom:699.045000px;}
.y1be{bottom:701.925000px;}
.ye8{bottom:703.185000px;}
.y190{bottom:703.725000px;}
.y173{bottom:704.985000px;}
.yb5{bottom:707.685000px;}
.y14b{bottom:708.585000px;}
.y5d{bottom:713.805000px;}
.y106{bottom:715.605000px;}
.y123{bottom:719.385000px;}
.y80{bottom:719.745000px;}
.y18f{bottom:724.425000px;}
.y1bc{bottom:725.145000px;}
.y172{bottom:725.685000px;}
.ye7{bottom:728.205000px;}
.yb4{bottom:728.385000px;}
.y5c{bottom:734.505000px;}
.y105{bottom:736.305000px;}
.y122{bottom:740.085000px;}
.y7f{bottom:740.445000px;}
.y14a{bottom:744.405000px;}
.y18e{bottom:746.025000px;}
.y171{bottom:746.385000px;}
.yb3{bottom:749.085000px;}
.ye6{bottom:753.945000px;}
.y5b{bottom:755.205000px;}
.y104{bottom:757.005000px;}
.y7e{bottom:761.145000px;}
.y149{bottom:766.545000px;}
.y121{bottom:766.905000px;}
.y170{bottom:767.085000px;}
.yb2{bottom:769.785000px;}
.y5a{bottom:775.905000px;}
.y103{bottom:777.705000px;}
.ye5{bottom:779.685000px;}
.y1b9{bottom:780.225000px;}
.y7d{bottom:781.845000px;}
.y16f{bottom:787.785000px;}
.y1d0{bottom:789.045000px;}
.yb1{bottom:790.485000px;}
.y1ea{bottom:791.401848px;}
.y148{bottom:793.185000px;}
.y59{bottom:796.605000px;}
.y102{bottom:798.405000px;}
.y7c{bottom:802.545000px;}
.ye3{bottom:805.245000px;}
.y16e{bottom:808.485000px;}
.y1e9{bottom:810.288574px;}
.yb0{bottom:811.185000px;}
.y147{bottom:822.885000px;}
.y58{bottom:823.245000px;}
.y101{bottom:824.865000px;}
.y1e8{bottom:829.174782px;}
.y16d{bottom:829.185000px;}
.y18{bottom:832.065000px;}
.yaf{bottom:838.005000px;}
.ycd{bottom:840.705000px;}
.y146{bottom:843.585000px;}
.y57{bottom:843.945000px;}
.y1e7{bottom:848.029617px;}
.y16c{bottom:849.885000px;}
.y1b5{bottom:851.865000px;}
.y17{bottom:856.005000px;}
.y100{bottom:857.625000px;}
.yae{bottom:858.705000px;}
.ycc{bottom:859.785000px;}
.y145{bottom:864.285000px;}
.y56{bottom:864.645000px;}
.y1e6{bottom:866.915825px;}
.y16b{bottom:870.630000px;}
.y16{bottom:874.770000px;}
.yad{bottom:879.450000px;}
.y144{bottom:885.030000px;}
.y55{bottom:885.390000px;}
.y1e5{bottom:885.802033px;}
.y15{bottom:887.550000px;}
.ycb{bottom:891.150000px;}
.y16a{bottom:891.330000px;}
.yac{bottom:900.150000px;}
.y1e3{bottom:904.656868px;}
.y54{bottom:906.090000px;}
.y1b3{bottom:906.990000px;}
.y143{bottom:910.230000px;}
.yca{bottom:911.850000px;}
.y169{bottom:912.030000px;}
.yfe{bottom:913.290000px;}
.yab{bottom:920.850000px;}
.y1e2{bottom:923.536802px;}
.y13{bottom:926.250000px;}
.y53{bottom:926.790000px;}
.yc9{bottom:932.550000px;}
.y168{bottom:932.730000px;}
.y14{bottom:933.090000px;}
.y142{bottom:939.930000px;}
.yfc{bottom:941.010000px;}
.yaa{bottom:941.550000px;}
.y1e1{bottom:942.423010px;}
.yf0{bottom:942.810000px;}
.y52{bottom:947.490000px;}
.yc8{bottom:953.250000px;}
.y167{bottom:953.430000px;}
.y141{bottom:960.630000px;}
.y1e0{bottom:961.284119px;}
.y1b1{bottom:962.070000px;}
.y12{bottom:965.670000px;}
.y51{bottom:968.190000px;}
.yfb{bottom:969.630000px;}
.yc7{bottom:973.950000px;}
.yef{bottom:974.130000px;}
.y1de{bottom:980.170327px;}
.y140{bottom:981.330000px;}
.y50{bottom:988.890000px;}
.y11{bottom:989.790000px;}
.yee{bottom:994.830000px;}
.y1dd{bottom:999.056535px;}
.yc6{bottom:1000.590000px;}
.y1ae{bottom:1001.670000px;}
.y13f{bottom:1002.030000px;}
.yfa{bottom:1004.910000px;}
.y4f{bottom:1009.590000px;}
.y10{bottom:1013.910000px;}
.yed{bottom:1015.530000px;}
.y1dc{bottom:1017.905096px;}
.y13e{bottom:1027.230000px;}
.y4e{bottom:1030.290000px;}
.yc5{bottom:1036.230000px;}
.y1da{bottom:1036.791304px;}
.yf{bottom:1038.030000px;}
.y1ab{bottom:1044.150000px;}
.y4d{bottom:1050.990000px;}
.y1d9{bottom:1055.677512px;}
.yc4{bottom:1056.930000px;}
.ye{bottom:1061.610000px;}
.y4c{bottom:1071.690000px;}
.y1d7{bottom:1074.563720px;}
.y7b{bottom:1077.630000px;}
.ya{bottom:1082.850000px;}
.y4b{bottom:1092.390000px;}
.y1d1{bottom:1093.424829px;}
.y1d3{bottom:1093.424896px;}
.y7a{bottom:1098.330000px;}
.y8{bottom:1098.510000px;}
.y1aa{bottom:1110.030000px;}
.y90{bottom:1113.090000px;}
.y4a{bottom:1119.030000px;}
.y1{bottom:1125.150000px;}
.y49{bottom:1139.760000px;}
.y1cf{bottom:1139.940000px;}
.y5{bottom:1158.120000px;}
.y48{bottom:1162.980000px;}
.y47{bottom:1186.560000px;}
.y3{bottom:1188.000000px;}
.h2d{height:2.826563px;}
.h2a{height:2.902500px;}
.h2b{height:17.280000px;}
.h47{height:17.913744px;}
.h49{height:17.945107px;}
.h48{height:17.945116px;}
.h4{height:21.780000px;}
.h43{height:22.320000px;}
.h41{height:22.500000px;}
.h24{height:23.940000px;}
.h20{height:24.120000px;}
.h23{height:24.156000px;}
.h27{height:24.840000px;}
.h28{height:24.876000px;}
.h25{height:25.020000px;}
.h32{height:25.056000px;}
.h8{height:26.640000px;}
.h30{height:27.720000px;}
.h31{height:27.756000px;}
.h2f{height:27.900000px;}
.h34{height:28.080000px;}
.h33{height:28.620000px;}
.h6{height:29.880000px;}
.h46{height:30.211664px;}
.h44{height:30.211739px;}
.h7{height:32.976000px;}
.h15{height:35.806641px;}
.he{height:38.158594px;}
.h3c{height:38.880000px;}
.h3a{height:41.760000px;}
.h45{height:47.248363px;}
.hd{height:47.344922px;}
.h1a{height:50.229844px;}
.h18{height:50.326875px;}
.h19{height:50.364141px;}
.h17{height:50.597578px;}
.h3e{height:50.992031px;}
.h1f{height:52.998047px;}
.h13{height:53.573906px;}
.h3d{height:55.080000px;}
.h3f{height:55.116000px;}
.h38{height:55.260000px;}
.h42{height:55.296000px;}
.h39{height:55.824609px;}
.h5{height:56.084062px;}
.h3b{height:57.324375px;}
.hc{height:57.796523px;}
.h12{height:58.621992px;}
.hf{height:58.651172px;}
.h35{height:59.038594px;}
.h16{height:60.104531px;}
.h11{height:60.226875px;}
.h21{height:62.184375px;}
.h22{height:63.855000px;}
.h14{height:64.546875px;}
.h1e{height:64.978594px;}
.h26{height:65.010937px;}
.h3{height:65.884219px;}
.h1d{height:66.757500px;}
.h2e{height:68.324766px;}
.h37{height:70.628906px;}
.ha{height:70.664062px;}
.h36{height:71.613281px;}
.h40{height:71.640000px;}
.h9{height:72.562500px;}
.h1b{height:74.680922px;}
.h1c{height:74.704922px;}
.h2{height:84.636000px;}
.hb{height:84.898125px;}
.h2c{height:339.690000px;}
.h29{height:339.915000px;}
.h10{height:363.090000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w34{width:29.880000px;}
.w33{width:30.600000px;}
.w31{width:31.860000px;}
.w20{width:40.500000px;}
.w32{width:42.336000px;}
.w2e{width:42.480000px;}
.w8{width:49.680000px;}
.w13{width:51.120000px;}
.w38{width:53.737524px;}
.w1e{width:56.736000px;}
.w2d{width:59.220000px;}
.w25{width:63.720000px;}
.w18{width:63.900000px;}
.w19{width:63.936000px;}
.w17{width:64.296000px;}
.w1a{width:64.620000px;}
.w22{width:67.356000px;}
.w23{width:67.500000px;}
.w1f{width:71.280000px;}
.w2f{width:74.340000px;}
.w28{width:74.520000px;}
.w27{width:74.556000px;}
.wc{width:84.780000px;}
.wf{width:85.176000px;}
.w26{width:95.580000px;}
.w30{width:102.816000px;}
.w2a{width:106.020000px;}
.w24{width:106.200000px;}
.w29{width:106.596000px;}
.wd{width:116.676000px;}
.w12{width:117.000000px;}
.w11{width:126.360000px;}
.w10{width:127.296000px;}
.w15{width:127.836000px;}
.w14{width:128.196000px;}
.w4{width:128.376000px;}
.w16{width:128.520000px;}
.we{width:137.160000px;}
.w1d{width:159.480000px;}
.w2{width:169.200000px;}
.wa{width:169.560000px;}
.w21{width:214.230000px;}
.w1b{width:250.230000px;}
.w2c{width:262.110000px;}
.w1c{width:288.615000px;}
.w35{width:321.330000px;}
.w2b{width:361.515000px;}
.w5{width:382.935000px;}
.wb{width:510.945000px;}
.w3{width:511.305000px;}
.w39{width:605.988604px;}
.w37{width:678.542103px;}
.w6{width:680.505000px;}
.w36{width:682.845000px;}
.w9{width:892.979973px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:2.340000px;}
.x4b{left:3.780000px;}
.x3a{left:5.220000px;}
.x5{left:8.145000px;}
.x26{left:9.720000px;}
.xb{left:11.415000px;}
.x3d{left:12.420000px;}
.x15{left:13.860000px;}
.x2b{left:16.020000px;}
.x2d{left:17.820000px;}
.x17{left:19.800000px;}
.x1e{left:20.880000px;}
.x1f{left:24.690000px;}
.x19{left:28.110000px;}
.x24{left:29.370000px;}
.x1d{left:32.040000px;}
.x45{left:34.590000px;}
.x1b{left:36.900000px;}
.x52{left:40.530579px;}
.x21{left:41.940000px;}
.x25{left:44.460000px;}
.x2a{left:46.080000px;}
.x20{left:47.160000px;}
.x23{left:49.860000px;}
.x22{left:52.200000px;}
.x28{left:54.354000px;}
.x33{left:55.620000px;}
.x27{left:63.540000px;}
.x49{left:88.740000px;}
.x4{left:94.005000px;}
.x34{left:101.190000px;}
.x1{left:106.056000px;}
.x51{left:107.291102px;}
.x47{left:112.494000px;}
.x11{left:114.695987px;}
.x36{left:124.230000px;}
.x54{left:130.061746px;}
.x2{left:145.254000px;}
.x46{left:148.895987px;}
.x50{left:157.860000px;}
.x7{left:177.510000px;}
.x53{left:179.850875px;}
.x14{left:191.190000px;}
.x31{left:192.645000px;}
.x3e{left:212.610000px;}
.x29{left:223.410000px;}
.x35{left:242.145000px;}
.xd{left:245.729973px;}
.x8{left:249.195000px;}
.xe{left:251.669987px;}
.x13{left:262.829987px;}
.x37{left:265.890000px;}
.x3{left:275.250000px;}
.x3f{left:276.330000px;}
.x16{left:307.875000px;}
.x10{left:322.454987px;}
.x2c{left:338.835000px;}
.x40{left:340.275000px;}
.x12{left:390.674987px;}
.x38{left:393.915000px;}
.x6{left:403.635000px;}
.xa{left:422.460000px;}
.x32{left:427.395000px;}
.x39{left:434.415000px;}
.x41{left:435.855000px;}
.x18{left:445.035000px;}
.x2e{left:466.665000px;}
.x48{left:467.925000px;}
.x9{left:480.344987px;}
.x42{left:510.405000px;}
.x1a{left:530.205000px;}
.x4c{left:552.885000px;}
.x43{left:584.925000px;}
.x2f{left:594.465000px;}
.x4d{left:627.225000px;}
.x3b{left:648.645000px;}
.x1c{left:657.510000px;}
.x4e{left:669.570000px;}
.x44{left:691.530000px;}
.x4f{left:700.170000px;}
.x3c{left:716.010000px;}
.x30{left:723.030000px;}
.x4a{left:730.050000px;}
.xc{left:786.749987px;}
@media print{
.v2{vertical-align:-18.720000pt;}
.v6{vertical-align:-6.692787pt;}
.v3{vertical-align:-5.120000pt;}
.v7{vertical-align:-3.346393pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560000pt;}
.v8{vertical-align:20.212216pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:24.298667pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls2c{letter-spacing:-0.441067pt;}
.ls32{letter-spacing:-0.418076pt;}
.ls17{letter-spacing:-0.400533pt;}
.ls23{letter-spacing:-0.271467pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls2a{letter-spacing:-0.233067pt;}
.ls11{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.166400pt;}
.ls29{letter-spacing:-0.135467pt;}
.ls20{letter-spacing:-0.128000pt;}
.ls24{letter-spacing:-0.097067pt;}
.ls31{letter-spacing:-0.087899pt;}
.ls1a{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.032000pt;}
.lsf{letter-spacing:-0.024960pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011520pt;}
.ls6{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.020480pt;}
.ls22{letter-spacing:0.046080pt;}
.ls26{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.089600pt;}
.ls18{letter-spacing:0.112533pt;}
.ls15{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.133120pt;}
.lse{letter-spacing:0.133333pt;}
.ls4{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.194133pt;}
.ls2b{letter-spacing:0.198933pt;}
.ls16{letter-spacing:0.239467pt;}
.ls28{letter-spacing:0.298667pt;}
.ls3{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.336000pt;}
.ls12{letter-spacing:0.473600pt;}
.ls25{letter-spacing:0.480000pt;}
.ls2f{letter-spacing:0.504960pt;}
.ls7{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls27{letter-spacing:0.704000pt;}
.ls30{letter-spacing:1.006707pt;}
.ls8{letter-spacing:1.114667pt;}
.ls1f{letter-spacing:1.920000pt;}
.ls19{letter-spacing:2.240000pt;}
.ls1b{letter-spacing:5.280000pt;}
.ls2e{letter-spacing:6.656000pt;}
.ls1e{letter-spacing:7.040000pt;}
.ls5{letter-spacing:12.320000pt;}
.ls2d{letter-spacing:17.280000pt;}
.ls1c{letter-spacing:20.640000pt;}
.ws5{word-spacing:-18.695040pt;}
.ws14{word-spacing:-16.192000pt;}
.ws11{word-spacing:-16.128000pt;}
.ws21{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.936000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws13{word-spacing:-15.744000pt;}
.ws1b{word-spacing:-14.720000pt;}
.ws1a{word-spacing:-14.622933pt;}
.ws1c{word-spacing:-14.584533pt;}
.ws1d{word-spacing:-14.486933pt;}
.ws19{word-spacing:-14.448533pt;}
.ws18{word-spacing:-14.126080pt;}
.ws17{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.974080pt;}
.ws0{word-spacing:-12.953600pt;}
.ws22{word-spacing:-12.640000pt;}
.ws16{word-spacing:-12.320000pt;}
.ws15{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.798933pt;}
.ws3{word-spacing:-11.697920pt;}
.ws2{word-spacing:-11.686400pt;}
.ws23{word-spacing:-11.194578pt;}
.wsd{word-spacing:-10.959467pt;}
.ws1f{word-spacing:-10.918933pt;}
.ws12{word-spacing:-10.720000pt;}
.wse{word-spacing:-10.319467pt;}
.ws20{word-spacing:-10.278933pt;}
.ws1e{word-spacing:-9.280000pt;}
.ws9{word-spacing:-8.655360pt;}
.ws6{word-spacing:-8.640000pt;}
.wsb{word-spacing:-0.048000pt;}
.wsc{word-spacing:0.000000pt;}
.ws24{word-spacing:13.297117pt;}
.ws25{word-spacing:13.664998pt;}
.ws31{word-spacing:19.715611pt;}
.ws32{word-spacing:19.804849pt;}
.ws28{word-spacing:21.613686pt;}
.ws2d{word-spacing:23.062005pt;}
.ws2e{word-spacing:23.151242pt;}
.ws30{word-spacing:23.195861pt;}
.ws2a{word-spacing:26.453017pt;}
.ws29{word-spacing:26.497635pt;}
.ws2c{word-spacing:26.542254pt;}
.ws26{word-spacing:40.206248pt;}
.ws2b{word-spacing:43.548514pt;}
.ws2f{word-spacing:47.128932pt;}
.ws27{word-spacing:78.473483pt;}
._5{margin-left:-5.046400pt;}
._a{margin-left:-3.771520pt;}
._7{margin-left:-2.279253pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.434240pt;}
._16{width:2.752000pt;}
._d{width:3.771520pt;}
._c{width:4.833920pt;}
._3{width:6.055680pt;}
._12{width:6.958720pt;}
._4{width:8.727040pt;}
._10{width:9.684480pt;}
._f{width:10.987520pt;}
._e{width:12.270720pt;}
._17{width:13.482240pt;}
._6{width:14.608000pt;}
._11{width:15.936000pt;}
._8{width:16.892160pt;}
._b{width:17.795200pt;}
._9{width:19.160107pt;}
._13{width:20.199893pt;}
._18{width:21.824000pt;}
._19{width:22.720000pt;}
._20{width:23.658667pt;}
._1a{width:25.408000pt;}
._1f{width:26.382720pt;}
._14{width:33.664000pt;}
._15{width:34.981760pt;}
._1b{width:36.224000pt;}
._1c{width:38.720000pt;}
._1e{width:40.330667pt;}
._22{width:47.744000pt;}
._23{width:48.827093pt;}
._21{width:51.392000pt;}
._1d{width:52.522667pt;}
._2{width:54.442667pt;}
._25{width:90.300861pt;}
._24{width:752.138667pt;}
.fsa{font-size:2.560000pt;}
.fse{font-size:26.882694pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fsb{font-size:37.120000pt;}
.fsd{font-size:40.268267pt;}
.fs4{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fsc{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs9{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yf3{bottom:2.880000pt;}
.y2{bottom:4.000000pt;}
.yd{bottom:4.160000pt;}
.y1d5{bottom:4.205306pt;}
.y1d6{bottom:4.205359pt;}
.y1d2{bottom:4.205369pt;}
.y4{bottom:4.320000pt;}
.y1b8{bottom:5.280000pt;}
.yde{bottom:5.440000pt;}
.yd6{bottom:5.600000pt;}
.yec{bottom:5.626667pt;}
.ye4{bottom:5.760000pt;}
.y117{bottom:5.800000pt;}
.y1d8{bottom:5.856261pt;}
.y1df{bottom:5.878570pt;}
.y1e4{bottom:5.884147pt;}
.y1eb{bottom:5.884162pt;}
.y1db{bottom:5.889724pt;}
.y7{bottom:6.880000pt;}
.y9{bottom:7.040000pt;}
.y11c{bottom:7.200000pt;}
.y11a{bottom:7.360000pt;}
.y6{bottom:7.840000pt;}
.y1b0{bottom:8.000000pt;}
.yff{bottom:8.160000pt;}
.yfd{bottom:8.320000pt;}
.y38{bottom:10.880000pt;}
.y1b2{bottom:12.640000pt;}
.y1d4{bottom:17.624343pt;}
.y1b4{bottom:19.840000pt;}
.y1b7{bottom:19.880000pt;}
.y1ac{bottom:20.000000pt;}
.y1c2{bottom:20.026667pt;}
.y1ca{bottom:20.040000pt;}
.y1af{bottom:22.560000pt;}
.y37{bottom:26.240000pt;}
.y1bb{bottom:27.200000pt;}
.y1bd{bottom:34.400000pt;}
.y1b6{bottom:34.440000pt;}
.y1ad{bottom:34.560000pt;}
.y1c1{bottom:34.586667pt;}
.y1c9{bottom:34.600000pt;}
.y36{bottom:41.600000pt;}
.yb{bottom:47.200000pt;}
.y1ba{bottom:49.120000pt;}
.yc{bottom:50.400000pt;}
.y35{bottom:56.960000pt;}
.y34{bottom:72.320000pt;}
.y33{bottom:87.680000pt;}
.y25{bottom:90.880000pt;}
.y46{bottom:96.992000pt;}
.ya9{bottom:100.512000pt;}
.y32{bottom:102.880000pt;}
.y24{bottom:106.240000pt;}
.y8f{bottom:108.352000pt;}
.yf9{bottom:108.672000pt;}
.y166{bottom:109.312000pt;}
.y79{bottom:113.952000pt;}
.y31{bottom:118.240000pt;}
.y120{bottom:120.832000pt;}
.y23{bottom:124.186667pt;}
.ya8{bottom:124.352000pt;}
.y1ce{bottom:125.632000pt;}
.yf8{bottom:127.072000pt;}
.y45{bottom:127.712000pt;}
.ye2{bottom:128.512000pt;}
.y8e{bottom:132.032000pt;}
.y78{bottom:132.352000pt;}
.y30{bottom:133.626667pt;}
.ye1{bottom:136.506667pt;}
.y13d{bottom:137.306667pt;}
.y1cd{bottom:140.826667pt;}
.y22{bottom:142.266667pt;}
.ya7{bottom:142.746667pt;}
.yf7{bottom:145.466667pt;}
.y165{bottom:146.106667pt;}
.y44{bottom:146.906667pt;}
.y18d{bottom:148.346667pt;}
.y2f{bottom:148.986667pt;}
.y8d{bottom:150.426667pt;}
.y77{bottom:150.746667pt;}
.y11f{bottom:152.026667pt;}
.y13c{bottom:155.706667pt;}
.ye0{bottom:157.946667pt;}
.y21{bottom:160.186667pt;}
.ya6{bottom:161.146667pt;}
.yf6{bottom:164.026667pt;}
.y2e{bottom:164.346667pt;}
.y164{bottom:164.506667pt;}
.y1a9{bottom:165.626667pt;}
.y18c{bottom:166.746667pt;}
.y11e{bottom:167.866667pt;}
.y8c{bottom:168.826667pt;}
.y76{bottom:169.146667pt;}
.y13b{bottom:174.106667pt;}
.y20{bottom:178.266667pt;}
.ydf{bottom:179.386667pt;}
.y2d{bottom:179.546667pt;}
.y43{bottom:181.306667pt;}
.y163{bottom:182.906667pt;}
.y1a8{bottom:184.026667pt;}
.y18b{bottom:185.146667pt;}
.y8b{bottom:187.226667pt;}
.y75{bottom:187.546667pt;}
.y1cc{bottom:189.786667pt;}
.y13a{bottom:192.506667pt;}
.y11d{bottom:192.666667pt;}
.yf5{bottom:192.826667pt;}
.y2c{bottom:194.906667pt;}
.y1f{bottom:197.626667pt;}
.ydd{bottom:200.826667pt;}
.y162{bottom:201.306667pt;}
.y1a7{bottom:202.426667pt;}
.ya5{bottom:203.226667pt;}
.y18a{bottom:203.546667pt;}
.y8a{bottom:205.626667pt;}
.y74{bottom:205.946667pt;}
.yf4{bottom:208.826667pt;}
.y2b{bottom:210.266667pt;}
.y139{bottom:210.906667pt;}
.y42{bottom:213.626667pt;}
.y11b{bottom:218.106667pt;}
.y161{bottom:219.706667pt;}
.y1a6{bottom:220.826667pt;}
.y1e{bottom:220.986667pt;}
.ya4{bottom:221.626667pt;}
.y189{bottom:221.946667pt;}
.ydc{bottom:222.106667pt;}
.y89{bottom:224.026667pt;}
.y73{bottom:224.346667pt;}
.y2a{bottom:225.626667pt;}
.y138{bottom:229.306667pt;}
.y41{bottom:232.026667pt;}
.y160{bottom:238.106667pt;}
.y1cb{bottom:238.906667pt;}
.y1a5{bottom:239.226667pt;}
.ya3{bottom:240.026667pt;}
.y1d{bottom:240.186667pt;}
.y188{bottom:240.346667pt;}
.y29{bottom:240.986667pt;}
.y88{bottom:242.426667pt;}
.y72{bottom:242.746667pt;}
.y119{bottom:243.066667pt;}
.ydb{bottom:243.546667pt;}
.y137{bottom:247.706667pt;}
.y40{bottom:250.426667pt;}
.y28{bottom:256.346667pt;}
.y15f{bottom:256.506667pt;}
.y1a4{bottom:257.466667pt;}
.ya2{bottom:258.426667pt;}
.y187{bottom:258.746667pt;}
.y1c{bottom:259.546667pt;}
.y87{bottom:260.826667pt;}
.y71{bottom:261.146667pt;}
.yda{bottom:264.986667pt;}
.y136{bottom:266.106667pt;}
.y118{bottom:268.506667pt;}
.y3f{bottom:268.826667pt;}
.y27{bottom:271.546667pt;}
.y15e{bottom:274.906667pt;}
.y1a3{bottom:275.866667pt;}
.ya1{bottom:276.826667pt;}
.y186{bottom:277.146667pt;}
.y1b{bottom:278.906667pt;}
.y86{bottom:279.226667pt;}
.y70{bottom:279.546667pt;}
.y135{bottom:284.506667pt;}
.yd9{bottom:286.426667pt;}
.y26{bottom:286.906667pt;}
.y3e{bottom:287.226667pt;}
.y1c8{bottom:287.866667pt;}
.y15d{bottom:293.306667pt;}
.y116{bottom:293.946667pt;}
.y1a2{bottom:294.266667pt;}
.ya0{bottom:295.226667pt;}
.y185{bottom:295.546667pt;}
.y85{bottom:297.626667pt;}
.y6f{bottom:297.946667pt;}
.y1a{bottom:302.266667pt;}
.y134{bottom:302.946667pt;}
.y3d{bottom:305.666667pt;}
.yd8{bottom:307.906667pt;}
.y15c{bottom:311.746667pt;}
.y1a1{bottom:312.706667pt;}
.y9f{bottom:313.666667pt;}
.y184{bottom:313.986667pt;}
.y6e{bottom:316.386667pt;}
.y84{bottom:321.346667pt;}
.y3c{bottom:324.066667pt;}
.y115{bottom:325.346667pt;}
.yd7{bottom:329.346667pt;}
.y15b{bottom:330.146667pt;}
.y1a0{bottom:331.106667pt;}
.y9e{bottom:332.066667pt;}
.y183{bottom:332.386667pt;}
.y6d{bottom:334.786667pt;}
.y1c7{bottom:337.026667pt;}
.y133{bottom:339.746667pt;}
.y114{bottom:342.306667pt;}
.y3b{bottom:342.466667pt;}
.y83{bottom:345.186667pt;}
.y15a{bottom:348.546667pt;}
.y19f{bottom:349.506667pt;}
.y9d{bottom:350.466667pt;}
.y182{bottom:350.786667pt;}
.yd5{bottom:351.426667pt;}
.y6c{bottom:353.186667pt;}
.y1c6{bottom:357.506667pt;}
.y132{bottom:358.146667pt;}
.y3a{bottom:360.866667pt;}
.y159{bottom:366.946667pt;}
.y19e{bottom:367.906667pt;}
.y181{bottom:369.186667pt;}
.y113{bottom:370.146667pt;}
.yc3{bottom:371.586667pt;}
.y9c{bottom:374.146667pt;}
.y6b{bottom:376.866667pt;}
.y1c5{bottom:378.146667pt;}
.y131{bottom:381.826667pt;}
.yd4{bottom:382.146667pt;}
.y39{bottom:384.386667pt;}
.y158{bottom:385.346667pt;}
.y19d{bottom:386.306667pt;}
.y180{bottom:387.586667pt;}
.y112{bottom:388.546667pt;}
.yc2{bottom:389.826667pt;}
.y6a{bottom:395.266667pt;}
.y130{bottom:400.226667pt;}
.y9b{bottom:400.546667pt;}
.y157{bottom:403.746667pt;}
.y19c{bottom:404.706667pt;}
.y17f{bottom:405.826667pt;}
.y111{bottom:406.946667pt;}
.yc1{bottom:408.226667pt;}
.yd3{bottom:409.986667pt;}
.y19{bottom:412.706667pt;}
.y69{bottom:413.666667pt;}
.y12f{bottom:418.626667pt;}
.y9a{bottom:418.946667pt;}
.y156{bottom:422.146667pt;}
.y19b{bottom:423.106667pt;}
.y17e{bottom:424.226667pt;}
.y110{bottom:425.346667pt;}
.yc0{bottom:426.626667pt;}
.y1c4{bottom:427.106667pt;}
.yd2{bottom:428.386667pt;}
.y68{bottom:432.066667pt;}
.y12e{bottom:437.026667pt;}
.y99{bottom:437.346667pt;}
.y155{bottom:440.546667pt;}
.y19a{bottom:441.506667pt;}
.y17d{bottom:442.626667pt;}
.y10f{bottom:443.746667pt;}
.ybf{bottom:445.026667pt;}
.yd1{bottom:446.786667pt;}
.y67{bottom:450.466667pt;}
.y12d{bottom:455.426667pt;}
.y98{bottom:455.746667pt;}
.y154{bottom:458.946667pt;}
.y199{bottom:459.906667pt;}
.y17c{bottom:461.026667pt;}
.y10e{bottom:462.146667pt;}
.ybe{bottom:463.426667pt;}
.yd0{bottom:465.186667pt;}
.y66{bottom:468.866667pt;}
.y12c{bottom:473.826667pt;}
.y97{bottom:474.146667pt;}
.y1c3{bottom:476.226667pt;}
.y153{bottom:477.346667pt;}
.y198{bottom:478.306667pt;}
.y17b{bottom:479.426667pt;}
.y10d{bottom:480.546667pt;}
.ybd{bottom:481.826667pt;}
.y65{bottom:487.266667pt;}
.ycf{bottom:488.866667pt;}
.y12b{bottom:492.226667pt;}
.y96{bottom:492.546667pt;}
.y152{bottom:495.746667pt;}
.y197{bottom:496.706667pt;}
.y17a{bottom:497.826667pt;}
.ybc{bottom:500.226667pt;}
.y10c{bottom:504.226667pt;}
.y64{bottom:505.666667pt;}
.y12a{bottom:510.626667pt;}
.y95{bottom:510.946667pt;}
.yf2{bottom:511.426667pt;}
.y151{bottom:514.146667pt;}
.y196{bottom:515.106667pt;}
.y179{bottom:516.226667pt;}
.ybb{bottom:518.626667pt;}
.yce{bottom:519.586667pt;}
.y63{bottom:524.066667pt;}
.y1c0{bottom:525.186667pt;}
.yf1{bottom:527.426667pt;}
.y129{bottom:529.026667pt;}
.y94{bottom:529.346667pt;}
.y10b{bottom:530.626667pt;}
.y150{bottom:532.546667pt;}
.y195{bottom:533.506667pt;}
.yeb{bottom:534.306667pt;}
.y178{bottom:534.626667pt;}
.yba{bottom:537.053333pt;}
.y62{bottom:542.493333pt;}
.y128{bottom:547.453333pt;}
.y93{bottom:547.773333pt;}
.y10a{bottom:549.053333pt;}
.y14f{bottom:550.973333pt;}
.y194{bottom:551.933333pt;}
.y177{bottom:553.053333pt;}
.yb9{bottom:555.453333pt;}
.yea{bottom:557.053333pt;}
.y61{bottom:560.893333pt;}
.y127{bottom:565.853333pt;}
.y92{bottom:566.173333pt;}
.y109{bottom:567.453333pt;}
.y14e{bottom:569.373333pt;}
.y193{bottom:570.333333pt;}
.y176{bottom:571.453333pt;}
.yb8{bottom:573.853333pt;}
.y1bf{bottom:574.333333pt;}
.y60{bottom:579.293333pt;}
.y126{bottom:584.253333pt;}
.y91{bottom:584.573333pt;}
.y108{bottom:585.853333pt;}
.y14d{bottom:587.773333pt;}
.y192{bottom:588.733333pt;}
.y175{bottom:589.853333pt;}
.yb7{bottom:592.253333pt;}
.y5f{bottom:597.693333pt;}
.ye9{bottom:602.173333pt;}
.y125{bottom:602.653333pt;}
.y82{bottom:602.973333pt;}
.y14c{bottom:606.173333pt;}
.y191{bottom:607.133333pt;}
.y174{bottom:608.253333pt;}
.y107{bottom:609.533333pt;}
.yb6{bottom:610.653333pt;}
.y5e{bottom:616.093333pt;}
.y124{bottom:621.053333pt;}
.y81{bottom:621.373333pt;}
.y1be{bottom:623.933333pt;}
.ye8{bottom:625.053333pt;}
.y190{bottom:625.533333pt;}
.y173{bottom:626.653333pt;}
.yb5{bottom:629.053333pt;}
.y14b{bottom:629.853333pt;}
.y5d{bottom:634.493333pt;}
.y106{bottom:636.093333pt;}
.y123{bottom:639.453333pt;}
.y80{bottom:639.773333pt;}
.y18f{bottom:643.933333pt;}
.y1bc{bottom:644.573333pt;}
.y172{bottom:645.053333pt;}
.ye7{bottom:647.293333pt;}
.yb4{bottom:647.453333pt;}
.y5c{bottom:652.893333pt;}
.y105{bottom:654.493333pt;}
.y122{bottom:657.853333pt;}
.y7f{bottom:658.173333pt;}
.y14a{bottom:661.693333pt;}
.y18e{bottom:663.133333pt;}
.y171{bottom:663.453333pt;}
.yb3{bottom:665.853333pt;}
.ye6{bottom:670.173333pt;}
.y5b{bottom:671.293333pt;}
.y104{bottom:672.893333pt;}
.y7e{bottom:676.573333pt;}
.y149{bottom:681.373333pt;}
.y121{bottom:681.693333pt;}
.y170{bottom:681.853333pt;}
.yb2{bottom:684.253333pt;}
.y5a{bottom:689.693333pt;}
.y103{bottom:691.293333pt;}
.ye5{bottom:693.053333pt;}
.y1b9{bottom:693.533333pt;}
.y7d{bottom:694.973333pt;}
.y16f{bottom:700.253333pt;}
.y1d0{bottom:701.373333pt;}
.yb1{bottom:702.653333pt;}
.y1ea{bottom:703.468309pt;}
.y148{bottom:705.053333pt;}
.y59{bottom:708.093333pt;}
.y102{bottom:709.693333pt;}
.y7c{bottom:713.373333pt;}
.ye3{bottom:715.773333pt;}
.y16e{bottom:718.653333pt;}
.y1e9{bottom:720.256510pt;}
.yb0{bottom:721.053333pt;}
.y147{bottom:731.453333pt;}
.y58{bottom:731.773333pt;}
.y101{bottom:733.213333pt;}
.y1e8{bottom:737.044251pt;}
.y16d{bottom:737.053333pt;}
.y18{bottom:739.613333pt;}
.yaf{bottom:744.893333pt;}
.ycd{bottom:747.293333pt;}
.y146{bottom:749.853333pt;}
.y57{bottom:750.173333pt;}
.y1e7{bottom:753.804104pt;}
.y16c{bottom:755.453333pt;}
.y1b5{bottom:757.213333pt;}
.y17{bottom:760.893333pt;}
.y100{bottom:762.333333pt;}
.yae{bottom:763.293333pt;}
.ycc{bottom:764.253333pt;}
.y145{bottom:768.253333pt;}
.y56{bottom:768.573333pt;}
.y1e6{bottom:770.591845pt;}
.y16b{bottom:773.893333pt;}
.y16{bottom:777.573333pt;}
.yad{bottom:781.733333pt;}
.y144{bottom:786.693333pt;}
.y55{bottom:787.013333pt;}
.y1e5{bottom:787.379585pt;}
.y15{bottom:788.933333pt;}
.ycb{bottom:792.133333pt;}
.y16a{bottom:792.293333pt;}
.yac{bottom:800.133333pt;}
.y1e3{bottom:804.139439pt;}
.y54{bottom:805.413333pt;}
.y1b3{bottom:806.213333pt;}
.y143{bottom:809.093333pt;}
.yca{bottom:810.533333pt;}
.y169{bottom:810.693333pt;}
.yfe{bottom:811.813333pt;}
.yab{bottom:818.533333pt;}
.y1e2{bottom:820.921602pt;}
.y13{bottom:823.333333pt;}
.y53{bottom:823.813333pt;}
.yc9{bottom:828.933333pt;}
.y168{bottom:829.093333pt;}
.y14{bottom:829.413333pt;}
.y142{bottom:835.493333pt;}
.yfc{bottom:836.453333pt;}
.yaa{bottom:836.933333pt;}
.y1e1{bottom:837.709342pt;}
.yf0{bottom:838.053333pt;}
.y52{bottom:842.213333pt;}
.yc8{bottom:847.333333pt;}
.y167{bottom:847.493333pt;}
.y141{bottom:853.893333pt;}
.y1e0{bottom:854.474773pt;}
.y1b1{bottom:855.173333pt;}
.y12{bottom:858.373333pt;}
.y51{bottom:860.613333pt;}
.yfb{bottom:861.893333pt;}
.yc7{bottom:865.733333pt;}
.yef{bottom:865.893333pt;}
.y1de{bottom:871.262513pt;}
.y140{bottom:872.293333pt;}
.y50{bottom:879.013333pt;}
.y11{bottom:879.813333pt;}
.yee{bottom:884.293333pt;}
.y1dd{bottom:888.050253pt;}
.yc6{bottom:889.413333pt;}
.y1ae{bottom:890.373333pt;}
.y13f{bottom:890.693333pt;}
.yfa{bottom:893.253333pt;}
.y4f{bottom:897.413333pt;}
.y10{bottom:901.253333pt;}
.yed{bottom:902.693333pt;}
.y1dc{bottom:904.804530pt;}
.y13e{bottom:913.093333pt;}
.y4e{bottom:915.813333pt;}
.yc5{bottom:921.093333pt;}
.y1da{bottom:921.592270pt;}
.yf{bottom:922.693333pt;}
.y1ab{bottom:928.133333pt;}
.y4d{bottom:934.213333pt;}
.y1d9{bottom:938.380010pt;}
.yc4{bottom:939.493333pt;}
.ye{bottom:943.653333pt;}
.y4c{bottom:952.613333pt;}
.y1d7{bottom:955.167751pt;}
.y7b{bottom:957.893333pt;}
.ya{bottom:962.533333pt;}
.y4b{bottom:971.013333pt;}
.y1d1{bottom:971.933182pt;}
.y1d3{bottom:971.933241pt;}
.y7a{bottom:976.293333pt;}
.y8{bottom:976.453333pt;}
.y1aa{bottom:986.693333pt;}
.y90{bottom:989.413333pt;}
.y4a{bottom:994.693333pt;}
.y1{bottom:1000.133333pt;}
.y49{bottom:1013.120000pt;}
.y1cf{bottom:1013.280000pt;}
.y5{bottom:1029.440000pt;}
.y48{bottom:1033.760000pt;}
.y47{bottom:1054.720000pt;}
.y3{bottom:1056.000000pt;}
.h2d{height:2.512500pt;}
.h2a{height:2.580000pt;}
.h2b{height:15.360000pt;}
.h47{height:15.923328pt;}
.h49{height:15.951207pt;}
.h48{height:15.951214pt;}
.h4{height:19.360000pt;}
.h43{height:19.840000pt;}
.h41{height:20.000000pt;}
.h24{height:21.280000pt;}
.h20{height:21.440000pt;}
.h23{height:21.472000pt;}
.h27{height:22.080000pt;}
.h28{height:22.112000pt;}
.h25{height:22.240000pt;}
.h32{height:22.272000pt;}
.h8{height:23.680000pt;}
.h30{height:24.640000pt;}
.h31{height:24.672000pt;}
.h2f{height:24.800000pt;}
.h34{height:24.960000pt;}
.h33{height:25.440000pt;}
.h6{height:26.560000pt;}
.h46{height:26.854813pt;}
.h44{height:26.854879pt;}
.h7{height:29.312000pt;}
.h15{height:31.828125pt;}
.he{height:33.918750pt;}
.h3c{height:34.560000pt;}
.h3a{height:37.120000pt;}
.h45{height:41.998545pt;}
.hd{height:42.084375pt;}
.h1a{height:44.648750pt;}
.h18{height:44.735000pt;}
.h19{height:44.768125pt;}
.h17{height:44.975625pt;}
.h3e{height:45.326250pt;}
.h1f{height:47.109375pt;}
.h13{height:47.621250pt;}
.h3d{height:48.960000pt;}
.h3f{height:48.992000pt;}
.h38{height:49.120000pt;}
.h42{height:49.152000pt;}
.h39{height:49.621875pt;}
.h5{height:49.852500pt;}
.h3b{height:50.955000pt;}
.hc{height:51.374687pt;}
.h12{height:52.108438pt;}
.hf{height:52.134375pt;}
.h35{height:52.478750pt;}
.h16{height:53.426250pt;}
.h11{height:53.535000pt;}
.h21{height:55.275000pt;}
.h22{height:56.760000pt;}
.h14{height:57.375000pt;}
.h1e{height:57.758750pt;}
.h26{height:57.787500pt;}
.h3{height:58.563750pt;}
.h1d{height:59.340000pt;}
.h2e{height:60.733125pt;}
.h37{height:62.781250pt;}
.ha{height:62.812500pt;}
.h36{height:63.656250pt;}
.h40{height:63.680000pt;}
.h9{height:64.500000pt;}
.h1b{height:66.383042pt;}
.h1c{height:66.404375pt;}
.h2{height:75.232000pt;}
.hb{height:75.465000pt;}
.h2c{height:301.946667pt;}
.h29{height:302.146667pt;}
.h10{height:322.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w34{width:26.560000pt;}
.w33{width:27.200000pt;}
.w31{width:28.320000pt;}
.w20{width:36.000000pt;}
.w32{width:37.632000pt;}
.w2e{width:37.760000pt;}
.w8{width:44.160000pt;}
.w13{width:45.440000pt;}
.w38{width:47.766688pt;}
.w1e{width:50.432000pt;}
.w2d{width:52.640000pt;}
.w25{width:56.640000pt;}
.w18{width:56.800000pt;}
.w19{width:56.832000pt;}
.w17{width:57.152000pt;}
.w1a{width:57.440000pt;}
.w22{width:59.872000pt;}
.w23{width:60.000000pt;}
.w1f{width:63.360000pt;}
.w2f{width:66.080000pt;}
.w28{width:66.240000pt;}
.w27{width:66.272000pt;}
.wc{width:75.360000pt;}
.wf{width:75.712000pt;}
.w26{width:84.960000pt;}
.w30{width:91.392000pt;}
.w2a{width:94.240000pt;}
.w24{width:94.400000pt;}
.w29{width:94.752000pt;}
.wd{width:103.712000pt;}
.w12{width:104.000000pt;}
.w11{width:112.320000pt;}
.w10{width:113.152000pt;}
.w15{width:113.632000pt;}
.w14{width:113.952000pt;}
.w4{width:114.112000pt;}
.w16{width:114.240000pt;}
.we{width:121.920000pt;}
.w1d{width:141.760000pt;}
.w2{width:150.400000pt;}
.wa{width:150.720000pt;}
.w21{width:190.426667pt;}
.w1b{width:222.426667pt;}
.w2c{width:232.986667pt;}
.w1c{width:256.546667pt;}
.w35{width:285.626667pt;}
.w2b{width:321.346667pt;}
.w5{width:340.386667pt;}
.wb{width:454.173333pt;}
.w3{width:454.493333pt;}
.w39{width:538.656537pt;}
.w37{width:603.148536pt;}
.w6{width:604.893333pt;}
.w36{width:606.973333pt;}
.w9{width:793.759976pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:2.080000pt;}
.x4b{left:3.360000pt;}
.x3a{left:4.640000pt;}
.x5{left:7.240000pt;}
.x26{left:8.640000pt;}
.xb{left:10.146667pt;}
.x3d{left:11.040000pt;}
.x15{left:12.320000pt;}
.x2b{left:14.240000pt;}
.x2d{left:15.840000pt;}
.x17{left:17.600000pt;}
.x1e{left:18.560000pt;}
.x1f{left:21.946667pt;}
.x19{left:24.986667pt;}
.x24{left:26.106667pt;}
.x1d{left:28.480000pt;}
.x45{left:30.746667pt;}
.x1b{left:32.800000pt;}
.x52{left:36.027181pt;}
.x21{left:37.280000pt;}
.x25{left:39.520000pt;}
.x2a{left:40.960000pt;}
.x20{left:41.920000pt;}
.x23{left:44.320000pt;}
.x22{left:46.400000pt;}
.x28{left:48.314667pt;}
.x33{left:49.440000pt;}
.x27{left:56.480000pt;}
.x49{left:78.880000pt;}
.x4{left:83.560000pt;}
.x34{left:89.946667pt;}
.x1{left:94.272000pt;}
.x51{left:95.369869pt;}
.x47{left:99.994667pt;}
.x11{left:101.951988pt;}
.x36{left:110.426667pt;}
.x54{left:115.610441pt;}
.x2{left:129.114667pt;}
.x46{left:132.351988pt;}
.x50{left:140.320000pt;}
.x7{left:157.786667pt;}
.x53{left:159.867444pt;}
.x14{left:169.946667pt;}
.x31{left:171.240000pt;}
.x3e{left:188.986667pt;}
.x29{left:198.586667pt;}
.x35{left:215.240000pt;}
.xd{left:218.426643pt;}
.x8{left:221.506667pt;}
.xe{left:223.706655pt;}
.x13{left:233.626655pt;}
.x37{left:236.346667pt;}
.x3{left:244.666667pt;}
.x3f{left:245.626667pt;}
.x16{left:273.666667pt;}
.x10{left:286.626655pt;}
.x2c{left:301.186667pt;}
.x40{left:302.466667pt;}
.x12{left:347.266655pt;}
.x38{left:350.146667pt;}
.x6{left:358.786667pt;}
.xa{left:375.520000pt;}
.x32{left:379.906667pt;}
.x39{left:386.146667pt;}
.x41{left:387.426667pt;}
.x18{left:395.586667pt;}
.x2e{left:414.813333pt;}
.x48{left:415.933333pt;}
.x9{left:426.973322pt;}
.x42{left:453.693333pt;}
.x1a{left:471.293333pt;}
.x4c{left:491.453333pt;}
.x43{left:519.933333pt;}
.x2f{left:528.413333pt;}
.x4d{left:557.533333pt;}
.x3b{left:576.573333pt;}
.x1c{left:584.453333pt;}
.x4e{left:595.173333pt;}
.x44{left:614.693333pt;}
.x4f{left:622.373333pt;}
.x3c{left:636.453333pt;}
.x30{left:642.693333pt;}
.x4a{left:648.933333pt;}
.xc{left:699.333322pt;}
}




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