
    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_42bfa3cadd4bc30774de8fe2.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_01cdec0a38eb2bcfd1cc4ae4.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_01f3926a839053c0228e0c7d.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7fd45ceed762db6fcd1e7b54.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4385bd11022111319d9e48a4.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8d8a9b4f4e8da264dcabc543.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_dd9c66135bd9a3a08d8ddec8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.052734;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_51b7a3f32973e27dabeb5baf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.147461;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_abf9d41d8db8417fd0ab0074.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8c039b5541b42aa9863ec8f5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962402;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v9{vertical-align:-76.296000px;}
.vb{vertical-align:-74.880000px;}
.v6{vertical-align:-14.400004px;}
.v3{vertical-align:-12.240000px;}
.va{vertical-align:-5.760000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.440000px;}
.vc{vertical-align:5.760000px;}
.v5{vertical-align:17.999971px;}
.v4{vertical-align:22.320000px;}
.v7{vertical-align:62.040000px;}
.v8{vertical-align:69.000000px;}
.ls59{letter-spacing:-1.176000px;}
.ls5a{letter-spacing:-0.984000px;}
.ls52{letter-spacing:-0.828000px;}
.ls57{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.630000px;}
.ls43{letter-spacing:-0.414600px;}
.ls11{letter-spacing:-0.360000px;}
.ls48{letter-spacing:-0.339600px;}
.ls32{letter-spacing:-0.306600px;}
.ls4d{letter-spacing:-0.305400px;}
.ls56{letter-spacing:-0.262200px;}
.ls40{letter-spacing:-0.259800px;}
.ls13{letter-spacing:-0.240000px;}
.lsf{letter-spacing:-0.180000px;}
.ls4f{letter-spacing:-0.178800px;}
.lse{letter-spacing:-0.144000px;}
.ls29{letter-spacing:-0.143400px;}
.ls1a{letter-spacing:-0.109200px;}
.ls33{letter-spacing:-0.108000px;}
.ls1c{letter-spacing:-0.106800px;}
.ls17{letter-spacing:-0.053280px;}
.ls15{letter-spacing:-0.042000px;}
.ls2b{letter-spacing:-0.040320px;}
.ls3c{letter-spacing:-0.017280px;}
.ls14{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.012960px;}
.ls1b{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.090000px;}
.ls8{letter-spacing:0.114000px;}
.ls3f{letter-spacing:0.138240px;}
.lsc{letter-spacing:0.144000px;}
.ls31{letter-spacing:0.162000px;}
.ls44{letter-spacing:0.162720px;}
.ls38{letter-spacing:0.164880px;}
.ls3e{letter-spacing:0.174960px;}
.ls12{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.186000px;}
.lsd{letter-spacing:0.192000px;}
.ls28{letter-spacing:0.195000px;}
.ls2{letter-spacing:0.204000px;}
.ls47{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.234000px;}
.ls22{letter-spacing:0.237600px;}
.ls55{letter-spacing:0.244800px;}
.lsb{letter-spacing:0.252000px;}
.ls39{letter-spacing:0.259920px;}
.ls50{letter-spacing:0.262080px;}
.ls51{letter-spacing:0.262200px;}
.lsa{letter-spacing:0.264000px;}
.ls4{letter-spacing:0.288000px;}
.ls58{letter-spacing:0.305280px;}
.ls4e{letter-spacing:0.305400px;}
.ls27{letter-spacing:0.306600px;}
.ls3a{letter-spacing:0.306720px;}
.ls30{letter-spacing:0.342000px;}
.ls24{letter-spacing:0.357600px;}
.ls19{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.366000px;}
.ls3b{letter-spacing:0.413400px;}
.ls3d{letter-spacing:0.460080px;}
.ls2c{letter-spacing:0.576000px;}
.ls54{letter-spacing:0.610560px;}
.ls18{letter-spacing:0.612000px;}
.ls3{letter-spacing:0.648000px;}
.ls26{letter-spacing:0.666000px;}
.ls16{letter-spacing:0.666720px;}
.ls2d{letter-spacing:0.702720px;}
.ls5{letter-spacing:0.810000px;}
.ls42{letter-spacing:0.914400px;}
.ls6{letter-spacing:1.080000px;}
.ls53{letter-spacing:1.134000px;}
.ls4a{letter-spacing:1.386720px;}
.ls1f{letter-spacing:2.460960px;}
.ls2e{letter-spacing:2.826720px;}
.ls20{letter-spacing:3.180960px;}
.ls49{letter-spacing:4.986720px;}
.ls34{letter-spacing:9.306720px;}
.ls2f{letter-spacing:13.626720px;}
.ls1d{letter-spacing:16.140960px;}
.ls46{letter-spacing:16.462081px;}
.ls45{letter-spacing:16.582081px;}
.ls25{letter-spacing:17.279280px;}
.ls35{letter-spacing:19.200960px;}
.ls1e{letter-spacing:19.740960px;}
.ls21{letter-spacing:20.460960px;}
.ls4b{letter-spacing:83.105280px;}
.ls36{letter-spacing:113.706720px;}
.ls37{letter-spacing:199.386720px;}
.ls4c{letter-spacing:521.705280px;}
.ls41{letter-spacing:1349.165280px;}
.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;}
}
.ws39{word-spacing:-59.760000px;}
.ws3{word-spacing:-24.296892px;}
.ws0{word-spacing:-24.026892px;}
.ws5{word-spacing:-23.306892px;}
.ws6{word-spacing:-22.976892px;}
.ws2{word-spacing:-22.856892px;}
.ws1{word-spacing:-22.586892px;}
.ws8{word-spacing:-20.304000px;}
.wsc{word-spacing:-20.160000px;}
.ws7{word-spacing:-20.130000px;}
.ws40{word-spacing:-18.720120px;}
.ws41{word-spacing:-18.676920px;}
.ws43{word-spacing:-18.558720px;}
.ws46{word-spacing:-18.414720px;}
.ws34{word-spacing:-18.305520px;}
.ws3d{word-spacing:-18.109320px;}
.ws44{word-spacing:-18.000120px;}
.ws45{word-spacing:-17.747280px;}
.ws48{word-spacing:-17.694720px;}
.ws42{word-spacing:-17.586720px;}
.ws49{word-spacing:-17.430720px;}
.ws29{word-spacing:-17.279280px;}
.ws47{word-spacing:-17.238720px;}
.ws31{word-spacing:-17.225280px;}
.ws32{word-spacing:-17.026680px;}
.ws16{word-spacing:-16.973280px;}
.ws1c{word-spacing:-16.919880px;}
.ws19{word-spacing:-16.666560px;}
.ws15{word-spacing:-16.613280px;}
.ws17{word-spacing:-16.560000px;}
.ws1b{word-spacing:-16.506480px;}
.ws33{word-spacing:-16.353480px;}
.ws2a{word-spacing:-16.306680px;}
.ws3a{word-spacing:-16.273680px;}
.ws2b{word-spacing:-15.012000px;}
.ws2d{word-spacing:-14.904000px;}
.ws24{word-spacing:-13.513200px;}
.ws1e{word-spacing:-13.342200px;}
.ws23{word-spacing:-13.160160px;}
.ws2e{word-spacing:-13.147200px;}
.ws25{word-spacing:-13.106880px;}
.ws27{word-spacing:-13.003800px;}
.ws3e{word-spacing:-11.609280px;}
.ws18{word-spacing:-10.808640px;}
.wsa{word-spacing:-1.704000px;}
.wsd{word-spacing:-1.560000px;}
.ws4{word-spacing:-1.163514px;}
.ws11{word-spacing:-0.864000px;}
.wsb{word-spacing:-0.540000px;}
.ws14{word-spacing:-0.144000px;}
.wsf{word-spacing:-0.090000px;}
.ws3f{word-spacing:-0.066240px;}
.ws10{word-spacing:-0.060000px;}
.ws1d{word-spacing:-0.059760px;}
.ws2f{word-spacing:-0.007920px;}
.ws26{word-spacing:-0.000360px;}
.ws1a{word-spacing:0.000000px;}
.wse{word-spacing:0.072000px;}
.ws9{word-spacing:0.174000px;}
.ws12{word-spacing:0.318000px;}
.ws13{word-spacing:0.360000px;}
.ws21{word-spacing:0.532080px;}
.ws20{word-spacing:0.804600px;}
.ws22{word-spacing:3.412080px;}
.ws1f{word-spacing:3.733920px;}
.ws28{word-spacing:4.132080px;}
.ws30{word-spacing:4.404600px;}
.ws2c{word-spacing:146.100000px;}
.ws3b{word-spacing:177.648720px;}
.ws38{word-spacing:198.780000px;}
.ws36{word-spacing:231.463440px;}
.ws3c{word-spacing:231.474000px;}
.ws35{word-spacing:363.560160px;}
.ws37{word-spacing:397.700160px;}
._1f{margin-left:-4.231410px;}
._11{margin-left:-3.201120px;}
._2{margin-left:-2.160000px;}
._0{margin-left:-1.152000px;}
._3{width:1.419738px;}
._4{width:2.672448px;}
._f{width:3.705120px;}
._d{width:4.840560px;}
._e{width:5.947302px;}
._13{width:7.254102px;}
._19{width:8.847138px;}
._18{width:10.242828px;}
._10{width:11.491404px;}
._b{width:13.392822px;}
._c{width:14.396160px;}
._21{width:15.566466px;}
._7{width:16.992000px;}
._6{width:18.000000px;}
._5{width:19.152000px;}
._8{width:21.024000px;}
._2a{width:22.169280px;}
._28{width:23.316480px;}
._2b{width:24.427062px;}
._29{width:26.270982px;}
._12{width:41.904480px;}
._1d{width:44.987520px;}
._1e{width:50.137440px;}
._23{width:61.530000px;}
._2c{width:101.005920px;}
._25{width:115.524000px;}
._24{width:122.976000px;}
._17{width:124.343178px;}
._16{width:155.694924px;}
._14{width:165.269964px;}
._1a{width:166.427040px;}
._26{width:175.074000px;}
._15{width:199.386720px;}
._20{width:203.344800px;}
._22{width:205.668000px;}
._27{width:209.773680px;}
._1b{width:217.746000px;}
._a{width:221.235840px;}
._1c{width:241.146000px;}
._1{width:1311.978000px;}
._9{width:1367.885280px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs7{font-size:40.320000px;}
.fs5{font-size:41.760000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.514000px;}
.y0{bottom:0.000000px;}
.y1ef{bottom:3.600000px;}
.y202{bottom:3.645000px;}
.y1fa{bottom:3.780000px;}
.y15{bottom:3.960000px;}
.yf{bottom:3.961500px;}
.yd{bottom:4.681500px;}
.ya{bottom:5.041500px;}
.y14a{bottom:5.370000px;}
.y169{bottom:7.995000px;}
.y1a6{bottom:8.205000px;}
.y183{bottom:13.650000px;}
.y6c{bottom:14.250000px;}
.y13a{bottom:16.485000px;}
.ye7{bottom:16.845000px;}
.y112{bottom:17.460000px;}
.y1ee{bottom:22.500000px;}
.y1f7{bottom:22.545000px;}
.y226{bottom:22.674000px;}
.y1f1{bottom:22.680000px;}
.y1a5{bottom:25.455000px;}
.y148{bottom:25.590000px;}
.y182{bottom:29.160000px;}
.y167{bottom:29.805000px;}
.y6b{bottom:37.650000px;}
.y110{bottom:39.270000px;}
.y225{bottom:41.574000px;}
.y1f4{bottom:41.580000px;}
.y21f{bottom:41.610000px;}
.y1f6{bottom:41.625000px;}
.y1f9{bottom:41.760000px;}
.ye6{bottom:42.690000px;}
.y195{bottom:43.350000px;}
.y13f{bottom:43.485000px;}
.y139{bottom:44.070000px;}
.y17a{bottom:45.255000px;}
.y15e{bottom:47.700000px;}
.y138{bottom:54.870000px;}
.y149{bottom:56.310000px;}
.y108{bottom:57.165000px;}
.y168{bottom:58.140000px;}
.y224{bottom:60.474000px;}
.y20b{bottom:60.525000px;}
.y209{bottom:60.660000px;}
.ye4{bottom:64.515000px;}
.y136{bottom:65.445000px;}
.y185{bottom:65.550000px;}
.y6a{bottom:65.880000px;}
.y137{bottom:69.270000px;}
.y140{bottom:70.305000px;}
.y19d{bottom:75.570000px;}
.y15f{bottom:77.250000px;}
.y7{bottom:78.481500px;}
.y223{bottom:79.554000px;}
.y1a8{bottom:80.640000px;}
.y129{bottom:81.540000px;}
.y17b{bottom:81.975000px;}
.ydc{bottom:82.410000px;}
.y196{bottom:84.780000px;}
.y68{bottom:87.270000px;}
.y184{bottom:92.190000px;}
.y109{bottom:93.855000px;}
.y141{bottom:97.170000px;}
.y118{bottom:97.560000px;}
.y5d{bottom:103.320000px;}
.y130{bottom:103.605000px;}
.y6{bottom:103.681500px;}
.y111{bottom:105.765000px;}
.y160{bottom:106.815000px;}
.y19e{bottom:107.820000px;}
.y1a7{bottom:108.720000px;}
.ye5{bottom:110.130000px;}
.y193{bottom:112.716000px;}
.ydd{bottom:113.115000px;}
.y12a{bottom:114.630000px;}
.y1e3{bottom:114.876000px;}
.yc0{bottom:117.216000px;}
.y117{bottom:117.870000px;}
.y17c{bottom:118.650000px;}
.y142{bottom:123.990000px;}
.y4b{bottom:124.056000px;}
.y5b{bottom:125.316000px;}
.y131{bottom:125.670000px;}
.y5e{bottom:125.745000px;}
.y197{bottom:126.255000px;}
.y82{bottom:127.116000px;}
.y106{bottom:127.476000px;}
.yda{bottom:129.996000px;}
.y33{bottom:130.356000px;}
.y10a{bottom:130.530000px;}
.y222{bottom:134.676000px;}
.yf6{bottom:134.856000px;}
.y15c{bottom:135.036000px;}
.y161{bottom:136.410000px;}
.y116{bottom:138.165000px;}
.y99{bottom:138.636000px;}
.y19f{bottom:140.070000px;}
.yde{bottom:143.820000px;}
.y192{bottom:147.276000px;}
.y1b5{bottom:147.456000px;}
.y12b{bottom:147.750000px;}
.y5f{bottom:148.215000px;}
.y1e2{bottom:149.436000px;}
.y188{bottom:149.940000px;}
.y143{bottom:150.840000px;}
.y1e8{bottom:151.770000px;}
.ybf{bottom:152.130000px;}
.y1d6{bottom:153.030000px;}
.y217{bottom:153.570000px;}
.y17d{bottom:155.370000px;}
.y115{bottom:158.475000px;}
.y4a{bottom:158.610000px;}
.y5a{bottom:159.330000px;}
.y32{bottom:161.130000px;}
.y105{bottom:161.850000px;}
.y81{bottom:162.210000px;}
.yd0{bottom:162.390000px;}
.y204{bottom:164.010000px;}
.yd9{bottom:164.550000px;}
.y162{bottom:165.960000px;}
.y1b4{bottom:166.530000px;}
.y10b{bottom:167.220000px;}
.y198{bottom:167.730000px;}
.y15b{bottom:169.410000px;}
.y187{bottom:169.635000px;}
.y132{bottom:169.815000px;}
.y60{bottom:170.640000px;}
.y127{bottom:171.750000px;}
.y1a0{bottom:172.290000px;}
.yf5{bottom:172.650000px;}
.y98{bottom:172.830000px;}
.ydf{bottom:174.495000px;}
.y144{bottom:177.660000px;}
.y114{bottom:178.770000px;}
.y12c{bottom:180.870000px;}
.y191{bottom:181.830000px;}
.y69{bottom:182.085000px;}
.y1e1{bottom:183.990000px;}
.ybe{bottom:186.330000px;}
.y186{bottom:189.360000px;}
.y1d5{bottom:190.830000px;}
.y216{bottom:191.550000px;}
.y133{bottom:191.910000px;}
.y17e{bottom:192.090000px;}
.y49{bottom:192.990000px;}
.y61{bottom:193.065000px;}
.y59{bottom:193.890000px;}
.y1b3{bottom:195.150000px;}
.y163{bottom:195.510000px;}
.y104{bottom:196.410000px;}
.y1ab{bottom:197.250000px;}
.yd8{bottom:198.930000px;}
.y113{bottom:199.080000px;}
.y10c{bottom:203.910000px;}
.y15a{bottom:203.970000px;}
.y145{bottom:204.480000px;}
.y1a1{bottom:204.555000px;}
.ye0{bottom:205.200000px;}
.y126{bottom:206.130000px;}
.y178{bottom:206.850000px;}
.y97{bottom:207.390000px;}
.y31{bottom:207.570000px;}
.ycf{bottom:208.830000px;}
.y199{bottom:209.160000px;}
.yad{bottom:210.450000px;}
.y12d{bottom:213.990000px;}
.y80{bottom:214.770000px;}
.y62{bottom:215.490000px;}
.y190{bottom:216.210000px;}
.y1aa{bottom:219.930000px;}
.ybd{bottom:220.710000px;}
.y203{bottom:220.890000px;}
.yf4{bottom:221.070000px;}
.y164{bottom:225.105000px;}
.y48{bottom:227.550000px;}
.y1c5{bottom:228.090000px;}
.y58{bottom:228.450000px;}
.y17f{bottom:228.810000px;}
.y221{bottom:229.530000px;}
.y1e0{bottom:230.610000px;}
.y103{bottom:231.330000px;}
.yd7{bottom:233.490000px;}
.ye1{bottom:235.905000px;}
.y134{bottom:236.055000px;}
.y1a2{bottom:236.805000px;}
.y63{bottom:237.930000px;}
.y159{bottom:238.530000px;}
.y10d{bottom:240.585000px;}
.y125{bottom:240.690000px;}
.y30{bottom:241.770000px;}
.y96{bottom:241.950000px;}
.y1a9{bottom:242.610000px;}
.yac{bottom:244.830000px;}
.y12e{bottom:247.110000px;}
.y215{bottom:248.430000px;}
.y19a{bottom:250.635000px;}
.y18f{bottom:250.770000px;}
.y177{bottom:253.290000px;}
.y165{bottom:254.670000px;}
.yce{bottom:255.090000px;}
.yf3{bottom:255.270000px;}
.y11{bottom:256.320000px;}
.y135{bottom:258.120000px;}
.y146{bottom:258.150000px;}
.y64{bottom:260.355000px;}
.y57{bottom:262.830000px;}
.y1df{bottom:264.990000px;}
.y180{bottom:265.500000px;}
.y102{bottom:265.530000px;}
.y1c4{bottom:265.890000px;}
.ye2{bottom:266.610000px;}
.y1d4{bottom:267.150000px;}
.ybc{bottom:267.510000px;}
.y7f{bottom:267.690000px;}
.yd6{bottom:268.050000px;}
.y1a3{bottom:269.070000px;}
.y47{bottom:274.710000px;}
.y95{bottom:276.870000px;}
.y10e{bottom:277.275000px;}
.y10{bottom:277.920000px;}
.y201{bottom:277.950000px;}
.yab{bottom:279.390000px;}
.y12f{bottom:280.185000px;}
.y65{bottom:282.780000px;}
.y166{bottom:284.220000px;}
.y147{bottom:285.015000px;}
.y158{bottom:285.195000px;}
.y214{bottom:286.455000px;}
.y124{bottom:287.355000px;}
.y176{bottom:287.535000px;}
.y2f{bottom:288.795000px;}
.yf2{bottom:289.695000px;}
.ycd{bottom:289.875000px;}
.y19b{bottom:292.065000px;}
.ye{bottom:295.558500px;}
.ye3{bottom:297.330000px;}
.y1de{bottom:299.415000px;}
.y101{bottom:299.955000px;}
.y18e{bottom:300.315000px;}
.y1a4{bottom:301.290000px;}
.y7e{bottom:301.755000px;}
.y1e7{bottom:301.935000px;}
.y181{bottom:302.220000px;}
.yd5{bottom:302.475000px;}
.y1c3{bottom:303.915000px;}
.y1d3{bottom:304.815000px;}
.y66{bottom:305.205000px;}
.y94{bottom:310.935000px;}
.y56{bottom:312.375000px;}
.yaa{bottom:313.815000px;}
.y10f{bottom:313.995000px;}
.y157{bottom:319.395000px;}
.y123{bottom:321.735000px;}
.y46{bottom:322.095000px;}
.ycc{bottom:324.075000px;}
.yf1{bottom:324.255000px;}
.y67{bottom:327.630000px;}
.y19c{bottom:333.540000px;}
.y1dd{bottom:333.975000px;}
.y3{bottom:334.798500px;}
.y18d{bottom:334.875000px;}
.y2e{bottom:335.055000px;}
.y7d{bottom:336.315000px;}
.yd4{bottom:337.035000px;}
.y1c2{bottom:341.895000px;}
.y1d2{bottom:342.795000px;}
.y213{bottom:343.335000px;}
.y93{bottom:345.495000px;}
.y55{bottom:346.935000px;}
.ya9{bottom:348.375000px;}
.y156{bottom:353.955000px;}
.y122{bottom:356.295000px;}
.y175{bottom:356.655000px;}
.ycb{bottom:358.635000px;}
.yf0{bottom:358.815000px;}
.y1dc{bottom:368.535000px;}
.y45{bottom:369.255000px;}
.y2d{bottom:369.435000px;}
.ybb{bottom:370.875000px;}
.y7c{bottom:371.235000px;}
.y1c1{bottom:379.875000px;}
.y92{bottom:380.415000px;}
.y1d1{bottom:380.775000px;}
.y54{bottom:381.675000px;}
.ya8{bottom:382.935000px;}
.yd3{bottom:386.895000px;}
.y155{bottom:388.335000px;}
.y121{bottom:390.675000px;}
.y174{bottom:391.035000px;}
.y200{bottom:391.755000px;}
.yca{bottom:393.015000px;}
.yef{bottom:393.195000px;}
.y100{bottom:396.435000px;}
.y212{bottom:400.215000px;}
.y2c{bottom:403.815000px;}
.y18c{bottom:403.995000px;}
.yba{bottom:405.255000px;}
.y7b{bottom:405.435000px;}
.y13d{bottom:405.795000px;}
.y5{bottom:413.640000px;}
.y17{bottom:414.000000px;}
.y91{bottom:414.615000px;}
.y1db{bottom:415.335000px;}
.y44{bottom:416.055000px;}
.ya7{bottom:417.495000px;}
.y1c0{bottom:417.675000px;}
.yd2{bottom:421.275000px;}
.y154{bottom:422.895000px;}
.y120{bottom:425.235000px;}
.y173{bottom:425.595000px;}
.y53{bottom:426.495000px;}
.y5c{bottom:426.600000px;}
.yee{bottom:427.755000px;}
.yc9{bottom:427.935000px;}
.y18b{bottom:429.915000px;}
.y194{bottom:430.560000px;}
.yff{bottom:430.635000px;}
.y1d0{bottom:430.815000px;}
.y211{bottom:438.195000px;}
.y2b{bottom:438.375000px;}
.y7a{bottom:439.815000px;}
.y13c{bottom:440.355000px;}
.yd1{bottom:447.195000px;}
.y1da{bottom:447.915000px;}
.ydb{bottom:448.380000px;}
.y1ff{bottom:448.635000px;}
.y90{bottom:448.995000px;}
.ya6{bottom:451.875000px;}
.y1bf{bottom:455.655000px;}
.y220{bottom:457.275000px;}
.y153{bottom:457.455000px;}
.y11f{bottom:459.795000px;}
.y172{bottom:460.155000px;}
.yc8{bottom:462.135000px;}
.yed{bottom:462.315000px;}
.y43{bottom:462.675000px;}
.yfe{bottom:465.195000px;}
.y13b{bottom:466.275000px;}
.y13e{bottom:466.380000px;}
.y1d9{bottom:466.815000px;}
.y16{bottom:468.000000px;}
.y1cf{bottom:468.615000px;}
.y4{bottom:468.718500px;}
.y2a{bottom:472.935000px;}
.yb9{bottom:474.195000px;}
.y79{bottom:474.375000px;}
.y8f{bottom:483.555000px;}
.ya5{bottom:486.435000px;}
.yfd{bottom:491.115000px;}
.y107{bottom:491.220000px;}
.y1be{bottom:493.635000px;}
.y171{bottom:494.535000px;}
.y210{bottom:495.255000px;}
.yec{bottom:496.695000px;}
.y42{bottom:496.875000px;}
.yc7{bottom:497.055000px;}
.y152{bottom:504.075000px;}
.y1fe{bottom:505.515000px;}
.y11e{bottom:506.415000px;}
.y1ce{bottom:506.595000px;}
.y29{bottom:507.315000px;}
.y1e6{bottom:508.755000px;}
.y78{bottom:508.935000px;}
.yb8{bottom:509.295000px;}
.y1d8{bottom:512.895000px;}
.y21e{bottom:514.155000px;}
.ya4{bottom:520.815000px;}
.y170{bottom:529.095000px;}
.y8e{bottom:530.175000px;}
.y41{bottom:531.435000px;}
.y1bd{bottom:531.615000px;}
.y151{bottom:538.455000px;}
.y11d{bottom:540.825000px;}
.y28{bottom:541.905000px;}
.y77{bottom:543.345000px;}
.yb4{bottom:543.525000px;}
.yeb{bottom:543.705000px;}
.y14{bottom:543.958500px;}
.y1cd{bottom:544.605000px;}
.y2{bottom:548.638500px;}
.y20f{bottom:552.165000px;}
.ya3{bottom:555.405000px;}
.y1e5{bottom:555.585000px;}
.y16f{bottom:563.685000px;}
.y8d{bottom:564.585000px;}
.y40{bottom:565.845000px;}
.y21d{bottom:571.065000px;}
.y150{bottom:572.865000px;}
.y11c{bottom:575.205000px;}
.y27{bottom:576.465000px;}
.yc6{bottom:577.725000px;}
.yb3{bottom:577.905000px;}
.yb7{bottom:578.085000px;}
.y1fd{bottom:581.505000px;}
.y1bc{bottom:581.685000px;}
.y1cc{bottom:582.585000px;}
.y13{bottom:589.320000px;}
.y8{bottom:590.040000px;}
.y76{bottom:590.145000px;}
.y1e4{bottom:590.325000px;}
.y1b2{bottom:590.505000px;}
.y16e{bottom:598.065000px;}
.y8c{bottom:598.965000px;}
.ya2{bottom:602.025000px;}
.y14f{bottom:607.425000px;}
.y20e{bottom:609.045000px;}
.y26{bottom:610.845000px;}
.yb2{bottom:612.285000px;}
.y3f{bottom:612.645000px;}
.yea{bottom:612.825000px;}
.y1bb{bottom:619.485000px;}
.y22a{bottom:619.665000px;}
.y1cb{bottom:620.385000px;}
.y75{bottom:624.345000px;}
.y11b{bottom:624.705000px;}
.yb6{bottom:627.585000px;}
.y21c{bottom:627.945000px;}
.y1b1{bottom:628.125000px;}
.y1{bottom:629.278500px;}
.y12{bottom:630.000000px;}
.y16d{bottom:632.625000px;}
.y8b{bottom:633.525000px;}
.ya1{bottom:636.405000px;}
.y1fc{bottom:638.385000px;}
.y25{bottom:645.405000px;}
.y3e{bottom:646.845000px;}
.y229{bottom:650.625000px;}
.y1ca{bottom:653.145000px;}
.yb5{bottom:653.505000px;}
.y14e{bottom:654.225000px;}
.y1ba{bottom:657.465000px;}
.y74{bottom:658.905000px;}
.y11a{bottom:659.445000px;}
.y20d{bottom:665.925000px;}
.y1b0{bottom:666.105000px;}
.y8a{bottom:668.085000px;}
.ya0{bottom:670.965000px;}
.y1fb{bottom:676.365000px;}
.y24{bottom:679.965000px;}
.y3d{bottom:681.405000px;}
.yb1{bottom:681.765000px;}
.y16c{bottom:682.125000px;}
.y119{bottom:685.365000px;}
.y128{bottom:685.440000px;}
.y1c9{bottom:687.345000px;}
.y73{bottom:693.465000px;}
.y1b9{bottom:695.445000px;}
.y89{bottom:702.465000px;}
.y14d{bottom:703.905000px;}
.y1af{bottom:704.085000px;}
.y9f{bottom:705.345000px;}
.y1c8{bottom:706.065000px;}
.y23{bottom:714.345000px;}
.y3c{bottom:715.965000px;}
.y16b{bottom:716.865000px;}
.y20c{bottom:722.805000px;}
.y1c7{bottom:725.325000px;}
.y72{bottom:727.845000px;}
.ye9{bottom:728.025000px;}
.y1f8{bottom:733.245000px;}
.y1b8{bottom:733.425000px;}
.y88{bottom:737.025000px;}
.y14c{bottom:738.105000px;}
.y9e{bottom:739.905000px;}
.y21b{bottom:741.885000px;}
.y1ae{bottom:742.065000px;}
.y16a{bottom:742.785000px;}
.y179{bottom:743.400000px;}
.y22{bottom:748.905000px;}
.y3b{bottom:750.345000px;}
.yc5{bottom:762.225000px;}
.y71{bottom:762.405000px;}
.y14b{bottom:767.085000px;}
.y15d{bottom:767.160000px;}
.y1c6{bottom:769.785000px;}
.y87{bottom:771.585000px;}
.y9d{bottom:774.465000px;}
.y20a{bottom:779.865000px;}
.y1ad{bottom:780.045000px;}
.y21{bottom:783.465000px;}
.yb0{bottom:784.905000px;}
.y1f5{bottom:790.305000px;}
.yc4{bottom:796.785000px;}
.y70{bottom:796.965000px;}
.y3a{bottom:797.145000px;}
.y21a{bottom:798.810000px;}
.yc{bottom:805.318500px;}
.y86{bottom:806.010000px;}
.y9c{bottom:808.890000px;}
.y52{bottom:809.070000px;}
.y228{bottom:817.710000px;}
.yaf{bottom:819.510000px;}
.y1ec{bottom:819.690000px;}
.y1b7{bottom:821.310000px;}
.y20{bottom:830.310000px;}
.yc3{bottom:831.210000px;}
.y39{bottom:831.390000px;}
.y18a{bottom:831.570000px;}
.y51{bottom:843.270000px;}
.y9b{bottom:843.450000px;}
.y1f3{bottom:847.230000px;}
.y1eb{bottom:853.890000px;}
.y208{bottom:855.690000px;}
.y85{bottom:859.110000px;}
.y1b6{bottom:859.290000px;}
.yfc{bottom:859.470000px;}
.yc2{bottom:865.770000px;}
.y38{bottom:865.950000px;}
.yae{bottom:866.130000px;}
.y1f{bottom:876.750000px;}
.y50{bottom:877.830000px;}
.y9a{bottom:878.010000px;}
.y1ac{bottom:878.190000px;}
.y1ea{bottom:888.450000px;}
.y227{bottom:893.670000px;}
.yfb{bottom:897.270000px;}
.y37{bottom:900.330000px;}
.y1f2{bottom:904.110000px;}
.y84{bottom:911.850000px;}
.y4f{bottom:912.390000px;}
.y6f{bottom:912.570000px;}
.y219{bottom:912.750000px;}
.yb{bottom:919.800000px;}
.y1e{bottom:923.190000px;}
.y207{bottom:931.650000px;}
.y36{bottom:934.890000px;}
.yfa{bottom:935.070000px;}
.y189{bottom:935.250000px;}
.y9{bottom:939.958500px;}
.y1f0{bottom:942.090000px;}
.y83{bottom:946.230000px;}
.y4e{bottom:946.770000px;}
.y6e{bottom:946.950000px;}
.y218{bottom:950.550000px;}
.y1d{bottom:957.570000px;}
.y35{bottom:969.450000px;}
.y206{bottom:969.630000px;}
.yf9{bottom:973.050000px;}
.y1ed{bottom:980.070000px;}
.y4d{bottom:981.330000px;}
.y1e9{bottom:981.510000px;}
.y34{bottom:1003.830000px;}
.y1c{bottom:1004.010000px;}
.y205{bottom:1007.610000px;}
.yf8{bottom:1011.030000px;}
.y1d7{bottom:1011.210000px;}
.y4c{bottom:1015.890000px;}
.ye8{bottom:1016.070000px;}
.yc1{bottom:1016.250000px;}
.yf7{bottom:1049.010000px;}
.y6d{bottom:1050.450000px;}
.y1b{bottom:1050.810000px;}
.y1a{bottom:1081.620000px;}
.y19{bottom:1100.700000px;}
.y18{bottom:1119.600000px;}
.h7{height:18.360000px;}
.h1d{height:18.900000px;}
.h6{height:21.598500px;}
.h5{height:21.958500px;}
.h15{height:37.800000px;}
.h16{height:37.980000px;}
.h1a{height:38.016000px;}
.hc{height:56.320312px;}
.h17{height:56.880000px;}
.h18{height:56.916000px;}
.h19{height:57.060000px;}
.ha{height:62.327813px;}
.h9{height:69.086250px;}
.h3{height:75.093750px;}
.h1c{height:75.816000px;}
.h1b{height:75.960000px;}
.h2{height:76.533750px;}
.h4{height:87.102492px;}
.h1e{height:94.860000px;}
.h12{height:118.360312px;}
.h14{height:131.327812px;}
.h10{height:297.360000px;}
.hf{height:298.080000px;}
.hd{height:316.080000px;}
.h11{height:321.120000px;}
.he{height:333.540000px;}
.hb{height:349.920000px;}
.h13{height:368.460000px;}
.h8{height:1188.000000px;}
.h0{height:1262.878500px;}
.h1{height:1263.000000px;}
.w1e{width:28.078500px;}
.w19{width:29.158500px;}
.w6{width:30.958500px;}
.w17{width:34.920000px;}
.w13{width:36.000000px;}
.w15{width:37.078500px;}
.w9{width:42.478500px;}
.w2c{width:43.776000px;}
.w1f{width:44.998500px;}
.wf{width:56.880000px;}
.w16{width:57.958500px;}
.we{width:60.118500px;}
.wb{width:63.360000px;}
.w8{width:64.800000px;}
.w1a{width:69.840000px;}
.w1b{width:73.078500px;}
.w11{width:83.520000px;}
.w1c{width:83.880000px;}
.w20{width:86.038500px;}
.wd{width:86.758500px;}
.w1d{width:88.200000px;}
.w2{width:89.280000px;}
.w18{width:90.000000px;}
.w10{width:90.360000px;}
.w12{width:93.960000px;}
.wa{width:95.040000px;}
.w3{width:101.878500px;}
.w5{width:103.318500px;}
.w14{width:105.118500px;}
.w4{width:105.480000px;}
.wc{width:109.078500px;}
.w7{width:113.758500px;}
.w28{width:370.620000px;}
.w27{width:378.000000px;}
.w29{width:393.300000px;}
.w24{width:394.200000px;}
.w25{width:397.080000px;}
.w26{width:412.560000px;}
.w2b{width:554.580000px;}
.w2a{width:620.460000px;}
.w2d{width:712.365000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.w23{width:917.999973px;}
.w22{width:917.999986px;}
.w21{width:918.000000px;}
.x0{left:0.000000px;}
.x5c{left:8.100000px;}
.x46{left:17.604000px;}
.x32{left:18.972000px;}
.x3c{left:22.320000px;}
.x4a{left:23.580000px;}
.x45{left:25.308000px;}
.x31{left:26.676000px;}
.x3a{left:30.024000px;}
.x48{left:31.284000px;}
.x44{left:33.660000px;}
.x2c{left:35.639973px;}
.x30{left:37.944000px;}
.x47{left:39.636000px;}
.x39{left:42.516000px;}
.x2a{left:44.819973px;}
.x36{left:47.304000px;}
.x49{left:52.560000px;}
.x2b{left:53.999986px;}
.x2{left:56.158500px;}
.x1{left:58.320000px;}
.x3b{left:59.616000px;}
.x37{left:64.404000px;}
.x5{left:65.518500px;}
.x42{left:70.845000px;}
.x29{left:80.999986px;}
.x23{left:85.318500px;}
.x55{left:103.110000px;}
.x40{left:105.015000px;}
.x43{left:108.000000px;}
.x27{left:112.318500px;}
.x33{left:118.695000px;}
.x5d{left:124.776000px;}
.x58{left:129.525000px;}
.x34{left:134.315986px;}
.x3{left:140.397000px;}
.x10{left:141.478500px;}
.x18{left:144.358500px;}
.x6{left:148.318500px;}
.x24{left:149.398500px;}
.x51{left:153.900000px;}
.x4c{left:154.980000px;}
.x4{left:158.397000px;}
.x22{left:166.317000px;}
.x25{left:169.198500px;}
.x19{left:172.078500px;}
.x3d{left:173.670000px;}
.x53{left:181.620000px;}
.x2f{left:189.029986px;}
.x26{left:211.318500px;}
.x11{left:235.798500px;}
.x2d{left:243.029986px;}
.x7{left:251.278500px;}
.x1a{left:269.278500px;}
.x4d{left:286.305000px;}
.x12{left:293.038500px;}
.x1b{left:298.078500px;}
.x3f{left:317.595000px;}
.x1c{left:348.118500px;}
.x8{left:350.278500px;}
.x41{left:364.170000px;}
.x56{left:374.685000px;}
.xf{left:375.840000px;}
.x4e{left:378.975000px;}
.x28{left:382.318500px;}
.x5b{left:389.414986px;}
.x13{left:400.318500px;}
.x5a{left:427.574986px;}
.x59{left:441.614986px;}
.x9{left:452.880000px;}
.x1d{left:457.200000px;}
.x3e{left:459.074986px;}
.x4f{left:473.505000px;}
.x2e{left:475.274986px;}
.x1e{left:478.438500px;}
.x14{left:480.958500px;}
.x54{left:487.470000px;}
.x38{left:493.634986px;}
.x15{left:533.158500px;}
.x57{left:535.215000px;}
.x1f{left:540.360000px;}
.xa{left:556.918500px;}
.x16{left:583.558500px;}
.xb{left:587.158500px;}
.x50{left:594.825000px;}
.x20{left:604.438500px;}
.x35{left:664.664986px;}
.x17{left:673.558500px;}
.x21{left:685.438500px;}
.xc{left:701.638500px;}
.xd{left:727.198500px;}
.x52{left:736.349986px;}
.x4b{left:769.649986px;}
.xe{left:788.040000px;}
@media print{
.v9{vertical-align:-67.818667pt;}
.vb{vertical-align:-66.560000pt;}
.v6{vertical-align:-12.800004pt;}
.v3{vertical-align:-10.880000pt;}
.va{vertical-align:-5.120000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280000pt;}
.vc{vertical-align:5.120000pt;}
.v5{vertical-align:15.999974pt;}
.v4{vertical-align:19.840000pt;}
.v7{vertical-align:55.146667pt;}
.v8{vertical-align:61.333333pt;}
.ls59{letter-spacing:-1.045333pt;}
.ls5a{letter-spacing:-0.874667pt;}
.ls52{letter-spacing:-0.736000pt;}
.ls57{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.560000pt;}
.ls43{letter-spacing:-0.368533pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls48{letter-spacing:-0.301867pt;}
.ls32{letter-spacing:-0.272533pt;}
.ls4d{letter-spacing:-0.271467pt;}
.ls56{letter-spacing:-0.233067pt;}
.ls40{letter-spacing:-0.230933pt;}
.ls13{letter-spacing:-0.213333pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls4f{letter-spacing:-0.158933pt;}
.lse{letter-spacing:-0.128000pt;}
.ls29{letter-spacing:-0.127467pt;}
.ls1a{letter-spacing:-0.097067pt;}
.ls33{letter-spacing:-0.096000pt;}
.ls1c{letter-spacing:-0.094933pt;}
.ls17{letter-spacing:-0.047360pt;}
.ls15{letter-spacing:-0.037333pt;}
.ls2b{letter-spacing:-0.035840pt;}
.ls3c{letter-spacing:-0.015360pt;}
.ls14{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.011520pt;}
.ls1b{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.080000pt;}
.ls8{letter-spacing:0.101333pt;}
.ls3f{letter-spacing:0.122880pt;}
.lsc{letter-spacing:0.128000pt;}
.ls31{letter-spacing:0.144000pt;}
.ls44{letter-spacing:0.144640pt;}
.ls38{letter-spacing:0.146560pt;}
.ls3e{letter-spacing:0.155520pt;}
.ls12{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.165333pt;}
.lsd{letter-spacing:0.170667pt;}
.ls28{letter-spacing:0.173333pt;}
.ls2{letter-spacing:0.181333pt;}
.ls47{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.208000pt;}
.ls22{letter-spacing:0.211200pt;}
.ls55{letter-spacing:0.217600pt;}
.lsb{letter-spacing:0.224000pt;}
.ls39{letter-spacing:0.231040pt;}
.ls50{letter-spacing:0.232960pt;}
.ls51{letter-spacing:0.233067pt;}
.lsa{letter-spacing:0.234667pt;}
.ls4{letter-spacing:0.256000pt;}
.ls58{letter-spacing:0.271360pt;}
.ls4e{letter-spacing:0.271467pt;}
.ls27{letter-spacing:0.272533pt;}
.ls3a{letter-spacing:0.272640pt;}
.ls30{letter-spacing:0.304000pt;}
.ls24{letter-spacing:0.317867pt;}
.ls19{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.325333pt;}
.ls3b{letter-spacing:0.367467pt;}
.ls3d{letter-spacing:0.408960pt;}
.ls2c{letter-spacing:0.512000pt;}
.ls54{letter-spacing:0.542720pt;}
.ls18{letter-spacing:0.544000pt;}
.ls3{letter-spacing:0.576000pt;}
.ls26{letter-spacing:0.592000pt;}
.ls16{letter-spacing:0.592640pt;}
.ls2d{letter-spacing:0.624640pt;}
.ls5{letter-spacing:0.720000pt;}
.ls42{letter-spacing:0.812800pt;}
.ls6{letter-spacing:0.960000pt;}
.ls53{letter-spacing:1.008000pt;}
.ls4a{letter-spacing:1.232640pt;}
.ls1f{letter-spacing:2.187520pt;}
.ls2e{letter-spacing:2.512640pt;}
.ls20{letter-spacing:2.827520pt;}
.ls49{letter-spacing:4.432640pt;}
.ls34{letter-spacing:8.272640pt;}
.ls2f{letter-spacing:12.112640pt;}
.ls1d{letter-spacing:14.347520pt;}
.ls46{letter-spacing:14.632961pt;}
.ls45{letter-spacing:14.739627pt;}
.ls25{letter-spacing:15.359360pt;}
.ls35{letter-spacing:17.067520pt;}
.ls1e{letter-spacing:17.547520pt;}
.ls21{letter-spacing:18.187520pt;}
.ls4b{letter-spacing:73.871360pt;}
.ls36{letter-spacing:101.072640pt;}
.ls37{letter-spacing:177.232640pt;}
.ls4c{letter-spacing:463.738027pt;}
.ls41{letter-spacing:1199.258027pt;}
.ws39{word-spacing:-53.120000pt;}
.ws3{word-spacing:-21.597237pt;}
.ws0{word-spacing:-21.357237pt;}
.ws5{word-spacing:-20.717237pt;}
.ws6{word-spacing:-20.423904pt;}
.ws2{word-spacing:-20.317237pt;}
.ws1{word-spacing:-20.077237pt;}
.ws8{word-spacing:-18.048000pt;}
.wsc{word-spacing:-17.920000pt;}
.ws7{word-spacing:-17.893333pt;}
.ws40{word-spacing:-16.640107pt;}
.ws41{word-spacing:-16.601707pt;}
.ws43{word-spacing:-16.496640pt;}
.ws46{word-spacing:-16.368640pt;}
.ws34{word-spacing:-16.271573pt;}
.ws3d{word-spacing:-16.097173pt;}
.ws44{word-spacing:-16.000107pt;}
.ws45{word-spacing:-15.775360pt;}
.ws48{word-spacing:-15.728640pt;}
.ws42{word-spacing:-15.632640pt;}
.ws49{word-spacing:-15.493973pt;}
.ws29{word-spacing:-15.359360pt;}
.ws47{word-spacing:-15.323307pt;}
.ws31{word-spacing:-15.311360pt;}
.ws32{word-spacing:-15.134827pt;}
.ws16{word-spacing:-15.087360pt;}
.ws1c{word-spacing:-15.039893pt;}
.ws19{word-spacing:-14.814720pt;}
.ws15{word-spacing:-14.767360pt;}
.ws17{word-spacing:-14.720000pt;}
.ws1b{word-spacing:-14.672427pt;}
.ws33{word-spacing:-14.536427pt;}
.ws2a{word-spacing:-14.494827pt;}
.ws3a{word-spacing:-14.465493pt;}
.ws2b{word-spacing:-13.344000pt;}
.ws2d{word-spacing:-13.248000pt;}
.ws24{word-spacing:-12.011733pt;}
.ws1e{word-spacing:-11.859733pt;}
.ws23{word-spacing:-11.697920pt;}
.ws2e{word-spacing:-11.686400pt;}
.ws25{word-spacing:-11.650560pt;}
.ws27{word-spacing:-11.558933pt;}
.ws3e{word-spacing:-10.319360pt;}
.ws18{word-spacing:-9.607680pt;}
.wsa{word-spacing:-1.514667pt;}
.wsd{word-spacing:-1.386667pt;}
.ws4{word-spacing:-1.034235pt;}
.ws11{word-spacing:-0.768000pt;}
.wsb{word-spacing:-0.480000pt;}
.ws14{word-spacing:-0.128000pt;}
.wsf{word-spacing:-0.080000pt;}
.ws3f{word-spacing:-0.058880pt;}
.ws10{word-spacing:-0.053333pt;}
.ws1d{word-spacing:-0.053120pt;}
.ws2f{word-spacing:-0.007040pt;}
.ws26{word-spacing:-0.000320pt;}
.ws1a{word-spacing:0.000000pt;}
.wse{word-spacing:0.064000pt;}
.ws9{word-spacing:0.154667pt;}
.ws12{word-spacing:0.282667pt;}
.ws13{word-spacing:0.320000pt;}
.ws21{word-spacing:0.472960pt;}
.ws20{word-spacing:0.715200pt;}
.ws22{word-spacing:3.032960pt;}
.ws1f{word-spacing:3.319040pt;}
.ws28{word-spacing:3.672960pt;}
.ws30{word-spacing:3.915200pt;}
.ws2c{word-spacing:129.866667pt;}
.ws3b{word-spacing:157.909973pt;}
.ws38{word-spacing:176.693333pt;}
.ws36{word-spacing:205.745280pt;}
.ws3c{word-spacing:205.754667pt;}
.ws35{word-spacing:323.164587pt;}
.ws37{word-spacing:353.511253pt;}
._1f{margin-left:-3.761253pt;}
._11{margin-left:-2.845440pt;}
._2{margin-left:-1.920000pt;}
._0{margin-left:-1.024000pt;}
._3{width:1.261989pt;}
._4{width:2.375509pt;}
._f{width:3.293440pt;}
._d{width:4.302720pt;}
._e{width:5.286491pt;}
._13{width:6.448091pt;}
._19{width:7.864123pt;}
._18{width:9.104736pt;}
._10{width:10.214581pt;}
._b{width:11.904731pt;}
._c{width:12.796587pt;}
._21{width:13.836859pt;}
._7{width:15.104000pt;}
._6{width:16.000000pt;}
._5{width:17.024000pt;}
._8{width:18.688000pt;}
._2a{width:19.706027pt;}
._28{width:20.725760pt;}
._2b{width:21.712944pt;}
._29{width:23.351984pt;}
._12{width:37.248427pt;}
._1d{width:39.988907pt;}
._1e{width:44.566613pt;}
._23{width:54.693333pt;}
._2c{width:89.783040pt;}
._25{width:102.688000pt;}
._24{width:109.312000pt;}
._17{width:110.527269pt;}
._16{width:138.395488pt;}
._14{width:146.906635pt;}
._1a{width:147.935147pt;}
._26{width:155.621333pt;}
._15{width:177.232640pt;}
._20{width:180.750933pt;}
._22{width:182.816000pt;}
._27{width:186.465493pt;}
._1b{width:193.552000pt;}
._a{width:196.654080pt;}
._1c{width:214.352000pt;}
._1{width:1166.202667pt;}
._9{width:1215.898027pt;}
.fs4{font-size:34.560000pt;}
.fs7{font-size:35.840000pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.234667pt;}
.y0{bottom:0.000000pt;}
.y1ef{bottom:3.200000pt;}
.y202{bottom:3.240000pt;}
.y1fa{bottom:3.360000pt;}
.y15{bottom:3.520000pt;}
.yf{bottom:3.521333pt;}
.yd{bottom:4.161333pt;}
.ya{bottom:4.481333pt;}
.y14a{bottom:4.773333pt;}
.y169{bottom:7.106667pt;}
.y1a6{bottom:7.293333pt;}
.y183{bottom:12.133333pt;}
.y6c{bottom:12.666667pt;}
.y13a{bottom:14.653333pt;}
.ye7{bottom:14.973333pt;}
.y112{bottom:15.520000pt;}
.y1ee{bottom:20.000000pt;}
.y1f7{bottom:20.040000pt;}
.y226{bottom:20.154667pt;}
.y1f1{bottom:20.160000pt;}
.y1a5{bottom:22.626667pt;}
.y148{bottom:22.746667pt;}
.y182{bottom:25.920000pt;}
.y167{bottom:26.493333pt;}
.y6b{bottom:33.466667pt;}
.y110{bottom:34.906667pt;}
.y225{bottom:36.954667pt;}
.y1f4{bottom:36.960000pt;}
.y21f{bottom:36.986667pt;}
.y1f6{bottom:37.000000pt;}
.y1f9{bottom:37.120000pt;}
.ye6{bottom:37.946667pt;}
.y195{bottom:38.533333pt;}
.y13f{bottom:38.653333pt;}
.y139{bottom:39.173333pt;}
.y17a{bottom:40.226667pt;}
.y15e{bottom:42.400000pt;}
.y138{bottom:48.773333pt;}
.y149{bottom:50.053333pt;}
.y108{bottom:50.813333pt;}
.y168{bottom:51.680000pt;}
.y224{bottom:53.754667pt;}
.y20b{bottom:53.800000pt;}
.y209{bottom:53.920000pt;}
.ye4{bottom:57.346667pt;}
.y136{bottom:58.173333pt;}
.y185{bottom:58.266667pt;}
.y6a{bottom:58.560000pt;}
.y137{bottom:61.573333pt;}
.y140{bottom:62.493333pt;}
.y19d{bottom:67.173333pt;}
.y15f{bottom:68.666667pt;}
.y7{bottom:69.761333pt;}
.y223{bottom:70.714667pt;}
.y1a8{bottom:71.680000pt;}
.y129{bottom:72.480000pt;}
.y17b{bottom:72.866667pt;}
.ydc{bottom:73.253333pt;}
.y196{bottom:75.360000pt;}
.y68{bottom:77.573333pt;}
.y184{bottom:81.946667pt;}
.y109{bottom:83.426667pt;}
.y141{bottom:86.373333pt;}
.y118{bottom:86.720000pt;}
.y5d{bottom:91.840000pt;}
.y130{bottom:92.093333pt;}
.y6{bottom:92.161333pt;}
.y111{bottom:94.013333pt;}
.y160{bottom:94.946667pt;}
.y19e{bottom:95.840000pt;}
.y1a7{bottom:96.640000pt;}
.ye5{bottom:97.893333pt;}
.y193{bottom:100.192000pt;}
.ydd{bottom:100.546667pt;}
.y12a{bottom:101.893333pt;}
.y1e3{bottom:102.112000pt;}
.yc0{bottom:104.192000pt;}
.y117{bottom:104.773333pt;}
.y17c{bottom:105.466667pt;}
.y142{bottom:110.213333pt;}
.y4b{bottom:110.272000pt;}
.y5b{bottom:111.392000pt;}
.y131{bottom:111.706667pt;}
.y5e{bottom:111.773333pt;}
.y197{bottom:112.226667pt;}
.y82{bottom:112.992000pt;}
.y106{bottom:113.312000pt;}
.yda{bottom:115.552000pt;}
.y33{bottom:115.872000pt;}
.y10a{bottom:116.026667pt;}
.y222{bottom:119.712000pt;}
.yf6{bottom:119.872000pt;}
.y15c{bottom:120.032000pt;}
.y161{bottom:121.253333pt;}
.y116{bottom:122.813333pt;}
.y99{bottom:123.232000pt;}
.y19f{bottom:124.506667pt;}
.yde{bottom:127.840000pt;}
.y192{bottom:130.912000pt;}
.y1b5{bottom:131.072000pt;}
.y12b{bottom:131.333333pt;}
.y5f{bottom:131.746667pt;}
.y1e2{bottom:132.832000pt;}
.y188{bottom:133.280000pt;}
.y143{bottom:134.080000pt;}
.y1e8{bottom:134.906667pt;}
.ybf{bottom:135.226667pt;}
.y1d6{bottom:136.026667pt;}
.y217{bottom:136.506667pt;}
.y17d{bottom:138.106667pt;}
.y115{bottom:140.866667pt;}
.y4a{bottom:140.986667pt;}
.y5a{bottom:141.626667pt;}
.y32{bottom:143.226667pt;}
.y105{bottom:143.866667pt;}
.y81{bottom:144.186667pt;}
.yd0{bottom:144.346667pt;}
.y204{bottom:145.786667pt;}
.yd9{bottom:146.266667pt;}
.y162{bottom:147.520000pt;}
.y1b4{bottom:148.026667pt;}
.y10b{bottom:148.640000pt;}
.y198{bottom:149.093333pt;}
.y15b{bottom:150.586667pt;}
.y187{bottom:150.786667pt;}
.y132{bottom:150.946667pt;}
.y60{bottom:151.680000pt;}
.y127{bottom:152.666667pt;}
.y1a0{bottom:153.146667pt;}
.yf5{bottom:153.466667pt;}
.y98{bottom:153.626667pt;}
.ydf{bottom:155.106667pt;}
.y144{bottom:157.920000pt;}
.y114{bottom:158.906667pt;}
.y12c{bottom:160.773333pt;}
.y191{bottom:161.626667pt;}
.y69{bottom:161.853333pt;}
.y1e1{bottom:163.546667pt;}
.ybe{bottom:165.626667pt;}
.y186{bottom:168.320000pt;}
.y1d5{bottom:169.626667pt;}
.y216{bottom:170.266667pt;}
.y133{bottom:170.586667pt;}
.y17e{bottom:170.746667pt;}
.y49{bottom:171.546667pt;}
.y61{bottom:171.613333pt;}
.y59{bottom:172.346667pt;}
.y1b3{bottom:173.466667pt;}
.y163{bottom:173.786667pt;}
.y104{bottom:174.586667pt;}
.y1ab{bottom:175.333333pt;}
.yd8{bottom:176.826667pt;}
.y113{bottom:176.960000pt;}
.y10c{bottom:181.253333pt;}
.y15a{bottom:181.306667pt;}
.y145{bottom:181.760000pt;}
.y1a1{bottom:181.826667pt;}
.ye0{bottom:182.400000pt;}
.y126{bottom:183.226667pt;}
.y178{bottom:183.866667pt;}
.y97{bottom:184.346667pt;}
.y31{bottom:184.506667pt;}
.ycf{bottom:185.626667pt;}
.y199{bottom:185.920000pt;}
.yad{bottom:187.066667pt;}
.y12d{bottom:190.213333pt;}
.y80{bottom:190.906667pt;}
.y62{bottom:191.546667pt;}
.y190{bottom:192.186667pt;}
.y1aa{bottom:195.493333pt;}
.ybd{bottom:196.186667pt;}
.y203{bottom:196.346667pt;}
.yf4{bottom:196.506667pt;}
.y164{bottom:200.093333pt;}
.y48{bottom:202.266667pt;}
.y1c5{bottom:202.746667pt;}
.y58{bottom:203.066667pt;}
.y17f{bottom:203.386667pt;}
.y221{bottom:204.026667pt;}
.y1e0{bottom:204.986667pt;}
.y103{bottom:205.626667pt;}
.yd7{bottom:207.546667pt;}
.ye1{bottom:209.693333pt;}
.y134{bottom:209.826667pt;}
.y1a2{bottom:210.493333pt;}
.y63{bottom:211.493333pt;}
.y159{bottom:212.026667pt;}
.y10d{bottom:213.853333pt;}
.y125{bottom:213.946667pt;}
.y30{bottom:214.906667pt;}
.y96{bottom:215.066667pt;}
.y1a9{bottom:215.653333pt;}
.yac{bottom:217.626667pt;}
.y12e{bottom:219.653333pt;}
.y215{bottom:220.826667pt;}
.y19a{bottom:222.786667pt;}
.y18f{bottom:222.906667pt;}
.y177{bottom:225.146667pt;}
.y165{bottom:226.373333pt;}
.yce{bottom:226.746667pt;}
.yf3{bottom:226.906667pt;}
.y11{bottom:227.840000pt;}
.y135{bottom:229.440000pt;}
.y146{bottom:229.466667pt;}
.y64{bottom:231.426667pt;}
.y57{bottom:233.626667pt;}
.y1df{bottom:235.546667pt;}
.y180{bottom:236.000000pt;}
.y102{bottom:236.026667pt;}
.y1c4{bottom:236.346667pt;}
.ye2{bottom:236.986667pt;}
.y1d4{bottom:237.466667pt;}
.ybc{bottom:237.786667pt;}
.y7f{bottom:237.946667pt;}
.yd6{bottom:238.266667pt;}
.y1a3{bottom:239.173333pt;}
.y47{bottom:244.186667pt;}
.y95{bottom:246.106667pt;}
.y10e{bottom:246.466667pt;}
.y10{bottom:247.040000pt;}
.y201{bottom:247.066667pt;}
.yab{bottom:248.346667pt;}
.y12f{bottom:249.053333pt;}
.y65{bottom:251.360000pt;}
.y166{bottom:252.640000pt;}
.y147{bottom:253.346667pt;}
.y158{bottom:253.506667pt;}
.y214{bottom:254.626667pt;}
.y124{bottom:255.426667pt;}
.y176{bottom:255.586667pt;}
.y2f{bottom:256.706667pt;}
.yf2{bottom:257.506667pt;}
.ycd{bottom:257.666667pt;}
.y19b{bottom:259.613333pt;}
.ye{bottom:262.718667pt;}
.ye3{bottom:264.293333pt;}
.y1de{bottom:266.146667pt;}
.y101{bottom:266.626667pt;}
.y18e{bottom:266.946667pt;}
.y1a4{bottom:267.813333pt;}
.y7e{bottom:268.226667pt;}
.y1e7{bottom:268.386667pt;}
.y181{bottom:268.640000pt;}
.yd5{bottom:268.866667pt;}
.y1c3{bottom:270.146667pt;}
.y1d3{bottom:270.946667pt;}
.y66{bottom:271.293333pt;}
.y94{bottom:276.386667pt;}
.y56{bottom:277.666667pt;}
.yaa{bottom:278.946667pt;}
.y10f{bottom:279.106667pt;}
.y157{bottom:283.906667pt;}
.y123{bottom:285.986667pt;}
.y46{bottom:286.306667pt;}
.ycc{bottom:288.066667pt;}
.yf1{bottom:288.226667pt;}
.y67{bottom:291.226667pt;}
.y19c{bottom:296.480000pt;}
.y1dd{bottom:296.866667pt;}
.y3{bottom:297.598667pt;}
.y18d{bottom:297.666667pt;}
.y2e{bottom:297.826667pt;}
.y7d{bottom:298.946667pt;}
.yd4{bottom:299.586667pt;}
.y1c2{bottom:303.906667pt;}
.y1d2{bottom:304.706667pt;}
.y213{bottom:305.186667pt;}
.y93{bottom:307.106667pt;}
.y55{bottom:308.386667pt;}
.ya9{bottom:309.666667pt;}
.y156{bottom:314.626667pt;}
.y122{bottom:316.706667pt;}
.y175{bottom:317.026667pt;}
.ycb{bottom:318.786667pt;}
.yf0{bottom:318.946667pt;}
.y1dc{bottom:327.586667pt;}
.y45{bottom:328.226667pt;}
.y2d{bottom:328.386667pt;}
.ybb{bottom:329.666667pt;}
.y7c{bottom:329.986667pt;}
.y1c1{bottom:337.666667pt;}
.y92{bottom:338.146667pt;}
.y1d1{bottom:338.466667pt;}
.y54{bottom:339.266667pt;}
.ya8{bottom:340.386667pt;}
.yd3{bottom:343.906667pt;}
.y155{bottom:345.186667pt;}
.y121{bottom:347.266667pt;}
.y174{bottom:347.586667pt;}
.y200{bottom:348.226667pt;}
.yca{bottom:349.346667pt;}
.yef{bottom:349.506667pt;}
.y100{bottom:352.386667pt;}
.y212{bottom:355.746667pt;}
.y2c{bottom:358.946667pt;}
.y18c{bottom:359.106667pt;}
.yba{bottom:360.226667pt;}
.y7b{bottom:360.386667pt;}
.y13d{bottom:360.706667pt;}
.y5{bottom:367.680000pt;}
.y17{bottom:368.000000pt;}
.y91{bottom:368.546667pt;}
.y1db{bottom:369.186667pt;}
.y44{bottom:369.826667pt;}
.ya7{bottom:371.106667pt;}
.y1c0{bottom:371.266667pt;}
.yd2{bottom:374.466667pt;}
.y154{bottom:375.906667pt;}
.y120{bottom:377.986667pt;}
.y173{bottom:378.306667pt;}
.y53{bottom:379.106667pt;}
.y5c{bottom:379.200000pt;}
.yee{bottom:380.226667pt;}
.yc9{bottom:380.386667pt;}
.y18b{bottom:382.146667pt;}
.y194{bottom:382.720000pt;}
.yff{bottom:382.786667pt;}
.y1d0{bottom:382.946667pt;}
.y211{bottom:389.506667pt;}
.y2b{bottom:389.666667pt;}
.y7a{bottom:390.946667pt;}
.y13c{bottom:391.426667pt;}
.yd1{bottom:397.506667pt;}
.y1da{bottom:398.146667pt;}
.ydb{bottom:398.560000pt;}
.y1ff{bottom:398.786667pt;}
.y90{bottom:399.106667pt;}
.ya6{bottom:401.666667pt;}
.y1bf{bottom:405.026667pt;}
.y220{bottom:406.466667pt;}
.y153{bottom:406.626667pt;}
.y11f{bottom:408.706667pt;}
.y172{bottom:409.026667pt;}
.yc8{bottom:410.786667pt;}
.yed{bottom:410.946667pt;}
.y43{bottom:411.266667pt;}
.yfe{bottom:413.506667pt;}
.y13b{bottom:414.466667pt;}
.y13e{bottom:414.560000pt;}
.y1d9{bottom:414.946667pt;}
.y16{bottom:416.000000pt;}
.y1cf{bottom:416.546667pt;}
.y4{bottom:416.638667pt;}
.y2a{bottom:420.386667pt;}
.yb9{bottom:421.506667pt;}
.y79{bottom:421.666667pt;}
.y8f{bottom:429.826667pt;}
.ya5{bottom:432.386667pt;}
.yfd{bottom:436.546667pt;}
.y107{bottom:436.640000pt;}
.y1be{bottom:438.786667pt;}
.y171{bottom:439.586667pt;}
.y210{bottom:440.226667pt;}
.yec{bottom:441.506667pt;}
.y42{bottom:441.666667pt;}
.yc7{bottom:441.826667pt;}
.y152{bottom:448.066667pt;}
.y1fe{bottom:449.346667pt;}
.y11e{bottom:450.146667pt;}
.y1ce{bottom:450.306667pt;}
.y29{bottom:450.946667pt;}
.y1e6{bottom:452.226667pt;}
.y78{bottom:452.386667pt;}
.yb8{bottom:452.706667pt;}
.y1d8{bottom:455.906667pt;}
.y21e{bottom:457.026667pt;}
.ya4{bottom:462.946667pt;}
.y170{bottom:470.306667pt;}
.y8e{bottom:471.266667pt;}
.y41{bottom:472.386667pt;}
.y1bd{bottom:472.546667pt;}
.y151{bottom:478.626667pt;}
.y11d{bottom:480.733333pt;}
.y28{bottom:481.693333pt;}
.y77{bottom:482.973333pt;}
.yb4{bottom:483.133333pt;}
.yeb{bottom:483.293333pt;}
.y14{bottom:483.518667pt;}
.y1cd{bottom:484.093333pt;}
.y2{bottom:487.678667pt;}
.y20f{bottom:490.813333pt;}
.ya3{bottom:493.693333pt;}
.y1e5{bottom:493.853333pt;}
.y16f{bottom:501.053333pt;}
.y8d{bottom:501.853333pt;}
.y40{bottom:502.973333pt;}
.y21d{bottom:507.613333pt;}
.y150{bottom:509.213333pt;}
.y11c{bottom:511.293333pt;}
.y27{bottom:512.413333pt;}
.yc6{bottom:513.533333pt;}
.yb3{bottom:513.693333pt;}
.yb7{bottom:513.853333pt;}
.y1fd{bottom:516.893333pt;}
.y1bc{bottom:517.053333pt;}
.y1cc{bottom:517.853333pt;}
.y13{bottom:523.840000pt;}
.y8{bottom:524.480000pt;}
.y76{bottom:524.573333pt;}
.y1e4{bottom:524.733333pt;}
.y1b2{bottom:524.893333pt;}
.y16e{bottom:531.613333pt;}
.y8c{bottom:532.413333pt;}
.ya2{bottom:535.133333pt;}
.y14f{bottom:539.933333pt;}
.y20e{bottom:541.373333pt;}
.y26{bottom:542.973333pt;}
.yb2{bottom:544.253333pt;}
.y3f{bottom:544.573333pt;}
.yea{bottom:544.733333pt;}
.y1bb{bottom:550.653333pt;}
.y22a{bottom:550.813333pt;}
.y1cb{bottom:551.453333pt;}
.y75{bottom:554.973333pt;}
.y11b{bottom:555.293333pt;}
.yb6{bottom:557.853333pt;}
.y21c{bottom:558.173333pt;}
.y1b1{bottom:558.333333pt;}
.y1{bottom:559.358667pt;}
.y12{bottom:560.000000pt;}
.y16d{bottom:562.333333pt;}
.y8b{bottom:563.133333pt;}
.ya1{bottom:565.693333pt;}
.y1fc{bottom:567.453333pt;}
.y25{bottom:573.693333pt;}
.y3e{bottom:574.973333pt;}
.y229{bottom:578.333333pt;}
.y1ca{bottom:580.573333pt;}
.yb5{bottom:580.893333pt;}
.y14e{bottom:581.533333pt;}
.y1ba{bottom:584.413333pt;}
.y74{bottom:585.693333pt;}
.y11a{bottom:586.173333pt;}
.y20d{bottom:591.933333pt;}
.y1b0{bottom:592.093333pt;}
.y8a{bottom:593.853333pt;}
.ya0{bottom:596.413333pt;}
.y1fb{bottom:601.213333pt;}
.y24{bottom:604.413333pt;}
.y3d{bottom:605.693333pt;}
.yb1{bottom:606.013333pt;}
.y16c{bottom:606.333333pt;}
.y119{bottom:609.213333pt;}
.y128{bottom:609.280000pt;}
.y1c9{bottom:610.973333pt;}
.y73{bottom:616.413333pt;}
.y1b9{bottom:618.173333pt;}
.y89{bottom:624.413333pt;}
.y14d{bottom:625.693333pt;}
.y1af{bottom:625.853333pt;}
.y9f{bottom:626.973333pt;}
.y1c8{bottom:627.613333pt;}
.y23{bottom:634.973333pt;}
.y3c{bottom:636.413333pt;}
.y16b{bottom:637.213333pt;}
.y20c{bottom:642.493333pt;}
.y1c7{bottom:644.733333pt;}
.y72{bottom:646.973333pt;}
.ye9{bottom:647.133333pt;}
.y1f8{bottom:651.773333pt;}
.y1b8{bottom:651.933333pt;}
.y88{bottom:655.133333pt;}
.y14c{bottom:656.093333pt;}
.y9e{bottom:657.693333pt;}
.y21b{bottom:659.453333pt;}
.y1ae{bottom:659.613333pt;}
.y16a{bottom:660.253333pt;}
.y179{bottom:660.800000pt;}
.y22{bottom:665.693333pt;}
.y3b{bottom:666.973333pt;}
.yc5{bottom:677.533333pt;}
.y71{bottom:677.693333pt;}
.y14b{bottom:681.853333pt;}
.y15d{bottom:681.920000pt;}
.y1c6{bottom:684.253333pt;}
.y87{bottom:685.853333pt;}
.y9d{bottom:688.413333pt;}
.y20a{bottom:693.213333pt;}
.y1ad{bottom:693.373333pt;}
.y21{bottom:696.413333pt;}
.yb0{bottom:697.693333pt;}
.y1f5{bottom:702.493333pt;}
.yc4{bottom:708.253333pt;}
.y70{bottom:708.413333pt;}
.y3a{bottom:708.573333pt;}
.y21a{bottom:710.053333pt;}
.yc{bottom:715.838667pt;}
.y86{bottom:716.453333pt;}
.y9c{bottom:719.013333pt;}
.y52{bottom:719.173333pt;}
.y228{bottom:726.853333pt;}
.yaf{bottom:728.453333pt;}
.y1ec{bottom:728.613333pt;}
.y1b7{bottom:730.053333pt;}
.y20{bottom:738.053333pt;}
.yc3{bottom:738.853333pt;}
.y39{bottom:739.013333pt;}
.y18a{bottom:739.173333pt;}
.y51{bottom:749.573333pt;}
.y9b{bottom:749.733333pt;}
.y1f3{bottom:753.093333pt;}
.y1eb{bottom:759.013333pt;}
.y208{bottom:760.613333pt;}
.y85{bottom:763.653333pt;}
.y1b6{bottom:763.813333pt;}
.yfc{bottom:763.973333pt;}
.yc2{bottom:769.573333pt;}
.y38{bottom:769.733333pt;}
.yae{bottom:769.893333pt;}
.y1f{bottom:779.333333pt;}
.y50{bottom:780.293333pt;}
.y9a{bottom:780.453333pt;}
.y1ac{bottom:780.613333pt;}
.y1ea{bottom:789.733333pt;}
.y227{bottom:794.373333pt;}
.yfb{bottom:797.573333pt;}
.y37{bottom:800.293333pt;}
.y1f2{bottom:803.653333pt;}
.y84{bottom:810.533333pt;}
.y4f{bottom:811.013333pt;}
.y6f{bottom:811.173333pt;}
.y219{bottom:811.333333pt;}
.yb{bottom:817.600000pt;}
.y1e{bottom:820.613333pt;}
.y207{bottom:828.133333pt;}
.y36{bottom:831.013333pt;}
.yfa{bottom:831.173333pt;}
.y189{bottom:831.333333pt;}
.y9{bottom:835.518667pt;}
.y1f0{bottom:837.413333pt;}
.y83{bottom:841.093333pt;}
.y4e{bottom:841.573333pt;}
.y6e{bottom:841.733333pt;}
.y218{bottom:844.933333pt;}
.y1d{bottom:851.173333pt;}
.y35{bottom:861.733333pt;}
.y206{bottom:861.893333pt;}
.yf9{bottom:864.933333pt;}
.y1ed{bottom:871.173333pt;}
.y4d{bottom:872.293333pt;}
.y1e9{bottom:872.453333pt;}
.y34{bottom:892.293333pt;}
.y1c{bottom:892.453333pt;}
.y205{bottom:895.653333pt;}
.yf8{bottom:898.693333pt;}
.y1d7{bottom:898.853333pt;}
.y4c{bottom:903.013333pt;}
.ye8{bottom:903.173333pt;}
.yc1{bottom:903.333333pt;}
.yf7{bottom:932.453333pt;}
.y6d{bottom:933.733333pt;}
.y1b{bottom:934.053333pt;}
.y1a{bottom:961.440000pt;}
.y19{bottom:978.400000pt;}
.y18{bottom:995.200000pt;}
.h7{height:16.320000pt;}
.h1d{height:16.800000pt;}
.h6{height:19.198667pt;}
.h5{height:19.518667pt;}
.h15{height:33.600000pt;}
.h16{height:33.760000pt;}
.h1a{height:33.792000pt;}
.hc{height:50.062500pt;}
.h17{height:50.560000pt;}
.h18{height:50.592000pt;}
.h19{height:50.720000pt;}
.ha{height:55.402500pt;}
.h9{height:61.410000pt;}
.h3{height:66.750000pt;}
.h1c{height:67.392000pt;}
.h1b{height:67.520000pt;}
.h2{height:68.030000pt;}
.h4{height:77.424437pt;}
.h1e{height:84.320000pt;}
.h12{height:105.209167pt;}
.h14{height:116.735833pt;}
.h10{height:264.320000pt;}
.hf{height:264.960000pt;}
.hd{height:280.960000pt;}
.h11{height:285.440000pt;}
.he{height:296.480000pt;}
.hb{height:311.040000pt;}
.h13{height:327.520000pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.558667pt;}
.h1{height:1122.666667pt;}
.w1e{width:24.958667pt;}
.w19{width:25.918667pt;}
.w6{width:27.518667pt;}
.w17{width:31.040000pt;}
.w13{width:32.000000pt;}
.w15{width:32.958667pt;}
.w9{width:37.758667pt;}
.w2c{width:38.912000pt;}
.w1f{width:39.998667pt;}
.wf{width:50.560000pt;}
.w16{width:51.518667pt;}
.we{width:53.438667pt;}
.wb{width:56.320000pt;}
.w8{width:57.600000pt;}
.w1a{width:62.080000pt;}
.w1b{width:64.958667pt;}
.w11{width:74.240000pt;}
.w1c{width:74.560000pt;}
.w20{width:76.478667pt;}
.wd{width:77.118667pt;}
.w1d{width:78.400000pt;}
.w2{width:79.360000pt;}
.w18{width:80.000000pt;}
.w10{width:80.320000pt;}
.w12{width:83.520000pt;}
.wa{width:84.480000pt;}
.w3{width:90.558667pt;}
.w5{width:91.838667pt;}
.w14{width:93.438667pt;}
.w4{width:93.760000pt;}
.wc{width:96.958667pt;}
.w7{width:101.118667pt;}
.w28{width:329.440000pt;}
.w27{width:336.000000pt;}
.w29{width:349.600000pt;}
.w24{width:350.400000pt;}
.w25{width:352.960000pt;}
.w26{width:366.720000pt;}
.w2b{width:492.960000pt;}
.w2a{width:551.520000pt;}
.w2d{width:633.213333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.w23{width:815.999976pt;}
.w22{width:815.999988pt;}
.w21{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5c{left:7.200000pt;}
.x46{left:15.648000pt;}
.x32{left:16.864000pt;}
.x3c{left:19.840000pt;}
.x4a{left:20.960000pt;}
.x45{left:22.496000pt;}
.x31{left:23.712000pt;}
.x3a{left:26.688000pt;}
.x48{left:27.808000pt;}
.x44{left:29.920000pt;}
.x2c{left:31.679976pt;}
.x30{left:33.728000pt;}
.x47{left:35.232000pt;}
.x39{left:37.792000pt;}
.x2a{left:39.839976pt;}
.x36{left:42.048000pt;}
.x49{left:46.720000pt;}
.x2b{left:47.999988pt;}
.x2{left:49.918667pt;}
.x1{left:51.840000pt;}
.x3b{left:52.992000pt;}
.x37{left:57.248000pt;}
.x5{left:58.238667pt;}
.x42{left:62.973333pt;}
.x29{left:71.999988pt;}
.x23{left:75.838667pt;}
.x55{left:91.653333pt;}
.x40{left:93.346667pt;}
.x43{left:96.000000pt;}
.x27{left:99.838667pt;}
.x33{left:105.506667pt;}
.x5d{left:110.912000pt;}
.x58{left:115.133333pt;}
.x34{left:119.391988pt;}
.x3{left:124.797333pt;}
.x10{left:125.758667pt;}
.x18{left:128.318667pt;}
.x6{left:131.838667pt;}
.x24{left:132.798667pt;}
.x51{left:136.800000pt;}
.x4c{left:137.760000pt;}
.x4{left:140.797333pt;}
.x22{left:147.837333pt;}
.x25{left:150.398667pt;}
.x19{left:152.958667pt;}
.x3d{left:154.373333pt;}
.x53{left:161.440000pt;}
.x2f{left:168.026655pt;}
.x26{left:187.838667pt;}
.x11{left:209.598667pt;}
.x2d{left:216.026655pt;}
.x7{left:223.358667pt;}
.x1a{left:239.358667pt;}
.x4d{left:254.493333pt;}
.x12{left:260.478667pt;}
.x1b{left:264.958667pt;}
.x3f{left:282.306667pt;}
.x1c{left:309.438667pt;}
.x8{left:311.358667pt;}
.x41{left:323.706667pt;}
.x56{left:333.053333pt;}
.xf{left:334.080000pt;}
.x4e{left:336.866667pt;}
.x28{left:339.838667pt;}
.x5b{left:346.146655pt;}
.x13{left:355.838667pt;}
.x5a{left:380.066655pt;}
.x59{left:392.546655pt;}
.x9{left:402.560000pt;}
.x1d{left:406.400000pt;}
.x3e{left:408.066655pt;}
.x4f{left:420.893333pt;}
.x2e{left:422.466655pt;}
.x1e{left:425.278667pt;}
.x14{left:427.518667pt;}
.x54{left:433.306667pt;}
.x38{left:438.786655pt;}
.x15{left:473.918667pt;}
.x57{left:475.746667pt;}
.x1f{left:480.320000pt;}
.xa{left:495.038667pt;}
.x16{left:518.718667pt;}
.xb{left:521.918667pt;}
.x50{left:528.733333pt;}
.x20{left:537.278667pt;}
.x35{left:590.813321pt;}
.x17{left:598.718667pt;}
.x21{left:609.278667pt;}
.xc{left:623.678667pt;}
.xd{left:646.398667pt;}
.x52{left:654.533321pt;}
.x4b{left:684.133321pt;}
.xe{left:700.480000pt;}
}




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